2023-06-05 01:16:05 +02:00
|
|
|
/* SPDX-License-Identifier: MPL-2.0 */
|
2015-12-18 11:12:18 +01:00
|
|
|
|
2017-10-17 14:36:34 +02:00
|
|
|
#define __STDC_LIMIT_MACROS // to define SIZE_MAX with older compilers
|
2016-02-06 14:11:21 +01:00
|
|
|
#include "testutil.hpp"
|
2018-08-23 16:55:17 +02:00
|
|
|
#include "testutil_unity.hpp"
|
|
|
|
|
|
|
|
void setUp ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tearDown ()
|
|
|
|
{
|
|
|
|
}
|
2015-12-18 11:12:18 +01:00
|
|
|
|
2018-05-27 13:01:36 +02:00
|
|
|
void handler (int timer_id_, void *arg_)
|
2015-12-18 11:12:18 +01:00
|
|
|
{
|
2018-05-27 13:01:36 +02:00
|
|
|
(void) timer_id_; // Stop 'unused' compiler warnings
|
2019-12-08 14:26:57 +01:00
|
|
|
*(static_cast<bool *> (arg_)) = true;
|
2015-12-18 11:12:18 +01:00
|
|
|
}
|
|
|
|
|
2016-05-05 13:17:35 +02:00
|
|
|
int sleep_and_execute (void *timers_)
|
|
|
|
{
|
|
|
|
int timeout = zmq_timers_timeout (timers_);
|
|
|
|
|
|
|
|
// Sleep methods are inaccurate, so we sleep in a loop until time arrived
|
|
|
|
while (timeout > 0) {
|
2017-08-23 09:05:10 +02:00
|
|
|
msleep (timeout);
|
2016-05-05 13:17:35 +02:00
|
|
|
timeout = zmq_timers_timeout (timers_);
|
|
|
|
}
|
|
|
|
|
|
|
|
return zmq_timers_execute (timers_);
|
|
|
|
}
|
|
|
|
|
2017-08-23 09:13:07 +02:00
|
|
|
void test_null_timer_pointers ()
|
|
|
|
{
|
|
|
|
void *timers = NULL;
|
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT, zmq_timers_destroy (&timers));
|
2017-08-23 09:13:07 +02:00
|
|
|
|
|
|
|
// TODO this currently triggers an access violation
|
|
|
|
#if 0
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO(EFAULT, zmq_timers_destroy (NULL));
|
2017-08-23 09:13:07 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
const size_t dummy_interval = 100;
|
|
|
|
const int dummy_timer_id = 1;
|
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (
|
|
|
|
EFAULT, zmq_timers_add (timers, dummy_interval, &handler, NULL));
|
|
|
|
TEST_ASSERT_FAILURE_ERRNO (
|
|
|
|
EFAULT, zmq_timers_add (&timers, dummy_interval, &handler, NULL));
|
2017-08-23 09:13:07 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT,
|
|
|
|
zmq_timers_cancel (timers, dummy_timer_id));
|
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT,
|
|
|
|
zmq_timers_cancel (&timers, dummy_timer_id));
|
2017-08-23 09:13:07 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (
|
|
|
|
EFAULT, zmq_timers_set_interval (timers, dummy_timer_id, dummy_interval));
|
|
|
|
TEST_ASSERT_FAILURE_ERRNO (
|
|
|
|
EFAULT,
|
|
|
|
zmq_timers_set_interval (&timers, dummy_timer_id, dummy_interval));
|
2017-08-23 09:13:07 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT,
|
|
|
|
zmq_timers_reset (timers, dummy_timer_id));
|
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT,
|
|
|
|
zmq_timers_reset (&timers, dummy_timer_id));
|
2017-08-23 09:13:07 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT, zmq_timers_timeout (timers));
|
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT, zmq_timers_timeout (&timers));
|
2017-08-23 09:13:07 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT, zmq_timers_execute (timers));
|
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EFAULT, zmq_timers_execute (&timers));
|
2017-08-23 09:13:07 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 09:39:51 +02:00
|
|
|
void test_corner_cases ()
|
|
|
|
{
|
|
|
|
void *timers = zmq_timers_new ();
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_NOT_NULL (timers);
|
2017-08-23 09:39:51 +02:00
|
|
|
|
|
|
|
const size_t dummy_interval = SIZE_MAX;
|
|
|
|
const int dummy_timer_id = 1;
|
|
|
|
|
|
|
|
// attempt to cancel non-existent timer
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EINVAL,
|
|
|
|
zmq_timers_cancel (timers, dummy_timer_id));
|
2017-08-23 09:39:51 +02:00
|
|
|
|
|
|
|
// attempt to set interval of non-existent timer
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (
|
|
|
|
EINVAL, zmq_timers_set_interval (timers, dummy_timer_id, dummy_interval));
|
2017-08-23 09:39:51 +02:00
|
|
|
|
|
|
|
// attempt to reset non-existent timer
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EINVAL,
|
|
|
|
zmq_timers_reset (timers, dummy_timer_id));
|
2017-08-23 09:39:51 +02:00
|
|
|
|
|
|
|
// attempt to add NULL handler
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (
|
|
|
|
EFAULT, zmq_timers_add (timers, dummy_interval, NULL, NULL));
|
2017-08-23 09:39:51 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
const int timer_id = TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_timers_add (timers, dummy_interval, handler, NULL));
|
2017-08-23 09:39:51 +02:00
|
|
|
|
|
|
|
// attempt to cancel timer twice
|
|
|
|
// TODO should this case really be an error? canceling twice could be allowed
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_cancel (timers, timer_id));
|
2017-08-23 09:39:51 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EINVAL, zmq_timers_cancel (timers, timer_id));
|
2017-08-23 09:39:51 +02:00
|
|
|
|
2017-08-23 10:31:44 +02:00
|
|
|
// timeout without any timers active
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FAILURE_ERRNO (EINVAL, zmq_timers_timeout (timers));
|
2017-08-23 10:31:44 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
// cleanup
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_destroy (&timers));
|
2017-08-23 09:39:51 +02:00
|
|
|
}
|
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
void test_timers ()
|
2015-12-18 11:12:18 +01:00
|
|
|
{
|
|
|
|
void *timers = zmq_timers_new ();
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_NOT_NULL (timers);
|
2015-12-18 11:12:18 +01:00
|
|
|
|
|
|
|
bool timer_invoked = false;
|
|
|
|
|
2018-02-10 18:08:01 +01:00
|
|
|
const unsigned long full_timeout = 100;
|
2018-02-03 12:31:39 +01:00
|
|
|
void *const stopwatch = zmq_stopwatch_start ();
|
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
const int timer_id = TEST_ASSERT_SUCCESS_ERRNO (
|
|
|
|
zmq_timers_add (timers, full_timeout, handler, &timer_invoked));
|
2015-12-18 11:12:18 +01:00
|
|
|
|
2018-02-03 12:31:39 +01:00
|
|
|
// Timer should not have been invoked yet
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_execute (timers));
|
2018-02-03 12:31:39 +01:00
|
|
|
|
|
|
|
if (zmq_stopwatch_intermediate (stopwatch) < full_timeout) {
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FALSE (timer_invoked);
|
2018-02-03 12:31:39 +01:00
|
|
|
}
|
2015-12-18 11:12:18 +01:00
|
|
|
|
|
|
|
// Wait half the time and check again
|
2018-08-23 16:55:17 +02:00
|
|
|
long timeout = TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_timeout (timers));
|
2017-08-23 09:39:51 +02:00
|
|
|
msleep (timeout / 2);
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_execute (timers));
|
2018-02-03 12:31:39 +01:00
|
|
|
if (zmq_stopwatch_intermediate (stopwatch) < full_timeout) {
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FALSE (timer_invoked);
|
2018-02-03 12:31:39 +01:00
|
|
|
}
|
2015-12-18 11:12:18 +01:00
|
|
|
|
2016-05-05 13:17:35 +02:00
|
|
|
// Wait until the end
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (sleep_and_execute (timers));
|
|
|
|
TEST_ASSERT_TRUE (timer_invoked);
|
2015-12-18 11:12:18 +01:00
|
|
|
timer_invoked = false;
|
|
|
|
|
|
|
|
// Wait half the time and check again
|
2018-08-23 16:55:17 +02:00
|
|
|
timeout = TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_timeout (timers));
|
2017-08-23 09:05:10 +02:00
|
|
|
msleep (timeout / 2);
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_execute (timers));
|
2018-02-03 12:31:39 +01:00
|
|
|
if (zmq_stopwatch_intermediate (stopwatch) < 2 * full_timeout) {
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FALSE (timer_invoked);
|
2018-02-03 12:31:39 +01:00
|
|
|
}
|
2015-12-18 11:12:18 +01:00
|
|
|
|
|
|
|
// Reset timer and wait half of the time left
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_reset (timers, timer_id));
|
2017-08-23 09:05:10 +02:00
|
|
|
msleep (timeout / 2);
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_execute (timers));
|
2018-02-03 12:31:39 +01:00
|
|
|
if (zmq_stopwatch_stop (stopwatch) < 2 * full_timeout) {
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_FALSE (timer_invoked);
|
2018-02-03 12:31:39 +01:00
|
|
|
}
|
2015-12-18 11:12:18 +01:00
|
|
|
|
|
|
|
// Wait until the end
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (sleep_and_execute (timers));
|
|
|
|
TEST_ASSERT_TRUE (timer_invoked);
|
2015-12-18 11:12:18 +01:00
|
|
|
timer_invoked = false;
|
|
|
|
|
|
|
|
// reschedule
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_set_interval (timers, timer_id, 50));
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (sleep_and_execute (timers));
|
|
|
|
TEST_ASSERT_TRUE (timer_invoked);
|
2015-12-18 11:12:18 +01:00
|
|
|
timer_invoked = false;
|
|
|
|
|
|
|
|
// cancel timer
|
2018-08-23 16:55:17 +02:00
|
|
|
timeout = TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_timeout (timers));
|
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_cancel (timers, timer_id));
|
2017-08-23 09:05:10 +02:00
|
|
|
msleep (timeout * 2);
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_execute (timers));
|
|
|
|
TEST_ASSERT_FALSE (timer_invoked);
|
2015-12-18 11:12:18 +01:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
TEST_ASSERT_SUCCESS_ERRNO (zmq_timers_destroy (&timers));
|
|
|
|
}
|
2015-12-18 11:12:18 +01:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
int main ()
|
|
|
|
{
|
|
|
|
setup_test_environment ();
|
2017-08-23 09:13:07 +02:00
|
|
|
|
2018-08-23 16:55:17 +02:00
|
|
|
UNITY_BEGIN ();
|
|
|
|
RUN_TEST (test_timers);
|
|
|
|
RUN_TEST (test_null_timer_pointers);
|
|
|
|
RUN_TEST (test_corner_cases);
|
|
|
|
return UNITY_END ();
|
2015-12-18 11:12:18 +01:00
|
|
|
}
|