|
@@ -0,0 +1,114 @@
|
|
|
+/* Copyright (c) 2016 the Civetweb developers
|
|
|
+ *
|
|
|
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
+ * of this software and associated documentation files (the "Software"), to deal
|
|
|
+ * in the Software without restriction, including without limitation the rights
|
|
|
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
+ * copies of the Software, and to permit persons to whom the Software is
|
|
|
+ * furnished to do so, subject to the following conditions:
|
|
|
+ *
|
|
|
+ * The above copyright notice and this permission notice shall be included in
|
|
|
+ * all copies or substantial portions of the Software.
|
|
|
+ *
|
|
|
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
+ * THE SOFTWARE.
|
|
|
+ */
|
|
|
+
|
|
|
+/**
|
|
|
+ * We include the source file so that we have access to the internal private
|
|
|
+ * static functions
|
|
|
+ */
|
|
|
+#ifdef _MSC_VER
|
|
|
+#ifndef _CRT_SECURE_NO_WARNINGS
|
|
|
+#define _CRT_SECURE_NO_WARNINGS
|
|
|
+#endif
|
|
|
+#define CIVETWEB_API static
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+#define USE_TIMERS
|
|
|
+#include "../src/civetweb.c"
|
|
|
+
|
|
|
+#include "timertest.h"
|
|
|
+
|
|
|
+
|
|
|
+int
|
|
|
+action(void *arg)
|
|
|
+{
|
|
|
+ int *p = (int *)arg;
|
|
|
+ (*p)--;
|
|
|
+ return 1;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+START_TEST(test_timer1)
|
|
|
+{
|
|
|
+ struct mg_context ctx;
|
|
|
+ int c[10];
|
|
|
+ memset(&ctx, 0, sizeof(ctx));
|
|
|
+ memset(c, 0, sizeof(c));
|
|
|
+
|
|
|
+ mark_point();
|
|
|
+ timers_init(&ctx);
|
|
|
+ mg_sleep(100);
|
|
|
+ mark_point();
|
|
|
+
|
|
|
+ c[0] = 10;
|
|
|
+ timer_add(&ctx, 0, 0.1, 1, action, c + 0);
|
|
|
+ c[2] = 2;
|
|
|
+ timer_add(&ctx, 0, 0.5, 1, action, c + 2);
|
|
|
+ c[1] = 5;
|
|
|
+ timer_add(&ctx, 0, 0.2, 1, action, c + 1);
|
|
|
+
|
|
|
+ mg_sleep(1000);
|
|
|
+
|
|
|
+ ctx.stop_flag = 99;
|
|
|
+ mg_sleep(100);
|
|
|
+ timers_exit(&ctx);
|
|
|
+
|
|
|
+ ck_assert_int_eq(c[0], 0);
|
|
|
+ ck_assert_int_eq(c[1], 0);
|
|
|
+ ck_assert_int_eq(c[2], 0);
|
|
|
+}
|
|
|
+END_TEST
|
|
|
+
|
|
|
+
|
|
|
+Suite *
|
|
|
+make_timertest_suite(void)
|
|
|
+{
|
|
|
+ Suite *const suite = suite_create("Timer");
|
|
|
+
|
|
|
+ TCase *const tcase_timer1 = tcase_create("Timer1");
|
|
|
+
|
|
|
+ tcase_add_test(tcase_timer1, test_timer1);
|
|
|
+ tcase_set_timeout(tcase_timer1, civetweb_min_test_timeout);
|
|
|
+ suite_add_tcase(suite, tcase_timer1);
|
|
|
+
|
|
|
+ return suite;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+#ifdef REPLACE_CHECK_FOR_LOCAL_DEBUGGING
|
|
|
+/* Used to debug test cases without using the check framework */
|
|
|
+
|
|
|
+void
|
|
|
+TIMER_PRIVATE(void)
|
|
|
+{
|
|
|
+#if defined(_WIN32)
|
|
|
+ WSADATA data;
|
|
|
+ WSAStartup(MAKEWORD(2, 2), &data);
|
|
|
+#endif
|
|
|
+
|
|
|
+ test_timer1(0);
|
|
|
+
|
|
|
+#if defined(_WIN32)
|
|
|
+ WSACleanup();
|
|
|
+#endif
|
|
|
+}
|
|
|
+
|
|
|
+#endif
|