123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- /* Copyright (c) 2016-2017 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
- #endif
- #if defined(__GNUC__)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wunused-function"
- #endif
- #define CIVETWEB_API static
- #define USE_TIMERS
- #include "../src/civetweb.c"
- #include <stdlib.h>
- #include <time.h>
- #include "timertest.h"
- static int action_dec_ret;
- static int
- action_dec(void *arg)
- {
- int *p = (int *)arg;
- (*p)--;
- if (*p < -1) {
- ck_abort_msg("Periodic timer called too often");
- /* return 0 here would be unreachable code */
- }
- return (*p >= -3) ? action_dec_ret : 0;
- }
- static int
- action_dec_to_0(void *arg)
- {
- int *p = (int *)arg;
- (*p)--;
- if (*p <= -1) {
- ck_abort_msg("Periodic timer called too often");
- /* return 0 here would be unreachable code */
- }
- return (*p > 0);
- }
- START_TEST(test_timer_cyclic)
- {
- struct mg_context ctx;
- int c[10];
- memset(&ctx, 0, sizeof(ctx));
- memset(c, 0, sizeof(c));
- action_dec_ret = 1;
- mark_point();
- timers_init(&ctx);
- mg_sleep(100);
- mark_point();
- c[0] = 100;
- timer_add(&ctx, 0.05, 0.1, 1, action_dec, c + 0);
- c[2] = 20;
- timer_add(&ctx, 0.25, 0.5, 1, action_dec, c + 2);
- c[1] = 50;
- timer_add(&ctx, 0.1, 0.2, 1, action_dec, c + 1);
- mark_point();
- mg_sleep(10000); /* Sleep 10 second - timers will run */
- mark_point();
- ctx.stop_flag = 99; /* End timer thread */
- mark_point();
- mg_sleep(2000); /* Sleep 2 second - timers will not run */
- mark_point();
- timers_exit(&ctx);
- mark_point();
- /* If this test runs in a virtual environment, like the CI unit test
- * containers, there might be some timing deviations, so check the
- * counter with some tolerance. */
- #if 0 //defined(__MINGW32__)
- /* For unknown reasons, the MinGW build on AppVeyor will cause a SegFault
- * when calling ck_assert_int_ge / ck_assert_int_le, while it works for
- * other compilers. See
- https://ci.appveyor.com/project/civetweb/civetweb/build/job/epsqi8perbca1jd6
- https://github.com/civetweb/civetweb/issues/366#issuecomment-269383810
- */
- {
- /* The three conditions -1 <= c[n] <= +1 (n=0..2) are fulfilled,
- * if the sum(n=0..2) of (c[n])^2 is <= 3. */
- int d = (c[0] * c[0]) + (c[1] * c[1]) + (c[2] * c[2]);
- /* ck_assert_int_le(d, 3); <-- will crash */
- if (d > 3) {
- ck_abort_msg("Timer must be zero: (%i, %i, %i)", c[0], c[1], c[2]);
- }
- }
- #else
- ck_assert_int_ge(c[0], -1);
- ck_assert_int_le(c[0], +1);
- ck_assert_int_ge(c[1], -1);
- ck_assert_int_le(c[1], +1);
- ck_assert_int_ge(c[2], -1);
- ck_assert_int_le(c[2], +1);
- #endif
- }
- END_TEST
- START_TEST(test_timer_oneshot_by_callback_retval)
- {
- struct mg_context ctx;
- int c[10];
- memset(&ctx, 0, sizeof(ctx));
- memset(c, 0, sizeof(c));
- action_dec_ret = 0;
- mark_point();
- timers_init(&ctx);
- mg_sleep(100);
- mark_point();
- c[0] = 10;
- timer_add(&ctx, 0, 0.1, 1, action_dec, c + 0);
- c[2] = 2;
- timer_add(&ctx, 0, 0.5, 1, action_dec, c + 2);
- c[1] = 5;
- timer_add(&ctx, 0, 0.2, 1, action_dec, c + 1);
- mark_point();
- mg_sleep(1000); /* Sleep 1 second - timer will run */
- mark_point();
- ctx.stop_flag = 99; /* End timer thread */
- mark_point();
- mg_sleep(1000); /* Sleep 1 second - timer will not run */
- mark_point();
- timers_exit(&ctx);
- mark_point();
- mg_sleep(100);
- ck_assert_int_eq(c[0], 9);
- ck_assert_int_eq(c[1], 4);
- ck_assert_int_eq(c[2], 1);
- }
- END_TEST
- START_TEST(test_timer_oneshot_by_timer_add)
- {
- struct mg_context ctx;
- int c[10];
- memset(&ctx, 0, sizeof(ctx));
- memset(c, 0, sizeof(c));
- action_dec_ret = 1;
- mark_point();
- timers_init(&ctx);
- mg_sleep(100);
- mark_point();
- c[0] = 10;
- timer_add(&ctx, 0, 0, 1, action_dec, c + 0);
- c[2] = 2;
- timer_add(&ctx, 0, 0, 1, action_dec, c + 2);
- c[1] = 5;
- timer_add(&ctx, 0, 0, 1, action_dec, c + 1);
- mark_point();
- mg_sleep(1000); /* Sleep 1 second - timer will run */
- mark_point();
- ctx.stop_flag = 99; /* End timer thread */
- mark_point();
- mg_sleep(1000); /* Sleep 1 second - timer will not run */
- mark_point();
- timers_exit(&ctx);
- mark_point();
- mg_sleep(100);
- ck_assert_int_eq(c[0], 9);
- ck_assert_int_eq(c[1], 4);
- ck_assert_int_eq(c[2], 1);
- }
- END_TEST
- START_TEST(test_timer_mixed)
- {
- 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();
- /* 3 --> 2, because it is a single shot timer */
- c[0] = 3;
- timer_add(&ctx, 0, 0, 1, action_dec_to_0, &c[0]);
- /* 3 --> 0, because it will run until c[1] = 0 and then stop */
- c[1] = 3;
- timer_add(&ctx, 0, 0.2, 1, action_dec_to_0, &c[1]);
- /* 3 --> 1, with 750 ms period, it will run once at start,
- * then once 750 ms later, but not 1500 ms later, since the
- * timer is already stopped then. */
- c[2] = 3;
- timer_add(&ctx, 0, 0.75, 1, action_dec_to_0, &c[2]);
- /* 3 --> 2, will run at start, but no cyclic in 1 second */
- c[3] = 3;
- timer_add(&ctx, 0, 2.5, 1, action_dec_to_0, &c[3]);
- /* 3 --> 3, will not run at start */
- c[4] = 3;
- timer_add(&ctx, 2.5, 0.1, 1, action_dec_to_0, &c[4]);
- /* 3 --> 2, an absolute timer in the past (-123.456) will still
- * run once at start, and then with the period */
- c[5] = 3;
- timer_add(&ctx, -123.456, 2.5, 0, action_dec_to_0, &c[5]);
- /* 3 --> 1, an absolute timer in the past (-123.456) will still
- * run once at start, and then with the period */
- c[6] = 3;
- timer_add(&ctx, -123.456, 0.75, 0, action_dec_to_0, &c[6]);
- mark_point();
- mg_sleep(1000); /* Sleep 1 second - timer will run */
- mark_point();
- ctx.stop_flag = 99; /* End timer thread */
- mark_point();
- mg_sleep(1000); /* Sleep 1 second - timer will not run */
- mark_point();
- timers_exit(&ctx);
- mark_point();
- mg_sleep(100);
- #if 0 //defined(__MINGW32__)
- /* For unknown reasons, the MinGW build on AppVeyor will cause a SegFault
- * when calling ck_assert_int_ge / ck_assert_int_le, while it works for
- * other compilers. See
- https://ci.appveyor.com/project/civetweb/civetweb/build/job/epsqi8perbca1jd6
- https://github.com/civetweb/civetweb/issues/366#issuecomment-269383810
- */
- {
- char errbuf[256] = {0};
- if (c[0] != 2) {
- sprintf(errbuf + strlen(errbuf), "0: (%i != 2)\r\n", c[0]);
- }
- if (c[1] != 0) {
- sprintf(errbuf + strlen(errbuf), "1: (%i != 0)\r\n", c[1]);
- }
- if (c[2] != 1) {
- sprintf(errbuf + strlen(errbuf), "2: (%i != 1)\r\n", c[2]);
- }
- if (c[3] != 2) {
- sprintf(errbuf + strlen(errbuf), "3: (%i != 2)\r\n", c[3]);
- }
- if (c[4] != 3) {
- sprintf(errbuf + strlen(errbuf), "4: (%i != 3)\r\n", c[4]);
- }
- if (c[5] != 2) {
- sprintf(errbuf + strlen(errbuf), "5: (%i != 2)\r\n", c[5]);
- }
- if (c[6] != 1) {
- sprintf(errbuf + strlen(errbuf), "6: (%i != 1)\r\n", c[6]);
- }
- if (errbuf[0]) {
- ck_abort_msg("Timer error:\r\n%s", errbuf);
- }
- }
- #else
- ck_assert_int_eq(c[0], 2);
- ck_assert_int_eq(c[1], 0);
- ck_assert_int_eq(c[2], 1);
- ck_assert_int_eq(c[3], 2);
- ck_assert_int_eq(c[4], 3);
- ck_assert_int_eq(c[5], 2);
- ck_assert_int_eq(c[6], 1);
- #endif
- }
- END_TEST
- Suite *
- make_timertest_suite(void)
- {
- Suite *const suite = suite_create("Timer");
- TCase *const tcase_timer_cyclic = tcase_create("Timer Periodic");
- TCase *const tcase_timer_oneshot = tcase_create("Timer Single Shot");
- TCase *const tcase_timer_mixed = tcase_create("Timer Mixed");
- tcase_add_test(tcase_timer_cyclic, test_timer_cyclic);
- tcase_set_timeout(tcase_timer_cyclic, 30);
- suite_add_tcase(suite, tcase_timer_cyclic);
- tcase_add_test(tcase_timer_oneshot, test_timer_oneshot_by_timer_add);
- tcase_add_test(tcase_timer_oneshot, test_timer_oneshot_by_callback_retval);
- tcase_set_timeout(tcase_timer_oneshot, 30);
- suite_add_tcase(suite, tcase_timer_oneshot);
- tcase_add_test(tcase_timer_mixed, test_timer_mixed);
- tcase_set_timeout(tcase_timer_mixed, 30);
- suite_add_tcase(suite, tcase_timer_mixed);
- return suite;
- }
- #ifdef REPLACE_CHECK_FOR_LOCAL_DEBUGGING
- /* Used to debug test cases without using the check framework */
- void
- TIMER_PRIVATE(void)
- {
- unsigned f_avail;
- unsigned f_ret;
- #if defined(_WIN32)
- WSADATA data;
- WSAStartup(MAKEWORD(2, 2), &data);
- #endif
- f_avail = mg_check_feature(0xFF);
- f_ret = mg_init_library(f_avail);
- ck_assert_uint_eq(f_ret, f_avail);
- test_timer_cyclic(0);
- test_timer_oneshot_by_timer_add(0);
- test_timer_oneshot_by_callback_retval(0);
- test_timer_mixed(0);
- mg_exit_library();
- #if defined(_WIN32)
- WSACleanup();
- #endif
- }
- #endif
|