/* ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include "hal.h" #include "rt_test_root.h" /** * @file rt_test_sequence_008.c * @brief Test Sequence 008 code. * * @page rt_test_sequence_008 [8] Event Sources and Event Flags * * File: @ref rt_test_sequence_008.c * *

Description

* This module implements the test sequence for the Events subsystem. * *

Conditions

* This sequence is only executed if the following preprocessor condition * evaluates to true: * - CH_CFG_USE_EVENTS * . * *

Test Cases

* - @subpage rt_test_008_001 * - @subpage rt_test_008_002 * - @subpage rt_test_008_003 * - @subpage rt_test_008_004 * - @subpage rt_test_008_005 * - @subpage rt_test_008_006 * - @subpage rt_test_008_007 * . */ #if (CH_CFG_USE_EVENTS) || defined(__DOXYGEN__) /**************************************************************************** * Shared code. ****************************************************************************/ static EVENTSOURCE_DECL(es1); static EVENTSOURCE_DECL(es2); static void h1(eventid_t id) {(void)id;test_emit_token('A');} static void h2(eventid_t id) {(void)id;test_emit_token('B');} static void h3(eventid_t id) {(void)id;test_emit_token('C');} static ROMCONST evhandler_t evhndl[] = {h1, h2, h3}; static THD_FUNCTION(evt_thread3, p) { chThdSleepMilliseconds(50); chEvtSignal((thread_t *)p, 1); } static THD_FUNCTION(evt_thread7, p) { (void)p; chEvtBroadcast(&es1); chThdSleepMilliseconds(50); chEvtBroadcast(&es2); } /**************************************************************************** * Test cases. ****************************************************************************/ /** * @page rt_test_008_001 [8.1] Events registration * *

Description

* Two event listeners are registered on an event source and then * unregistered in the same order.
The test expects that the even * source has listeners after the registrations and after the first * unregistration, then, after the second unegistration, the test * expects no more listeners. * *

Test Steps

* - [8.1.1] An Event Source is initialized. * - [8.1.2] Two Event Listeners are registered on the Event Source, * the Event Source is tested to have listeners. * - [8.1.3] An Event Listener is unregistered, the Event Source must * still have listeners. * - [8.1.4] An Event Listener is unregistered, the Event Source must * not have listeners. * . */ static void rt_test_008_001_execute(void) { event_listener_t el1, el2; /* [8.1.1] An Event Source is initialized.*/ test_set_step(1); { chEvtObjectInit(&es1); } /* [8.1.2] Two Event Listeners are registered on the Event Source, the Event Source is tested to have listeners.*/ test_set_step(2); { chEvtRegisterMask(&es1, &el1, 1); chEvtRegisterMask(&es1, &el2, 2); test_assert_lock(chEvtIsListeningI(&es1), "no listener"); } /* [8.1.3] An Event Listener is unregistered, the Event Source must still have listeners.*/ test_set_step(3); { chEvtUnregister(&es1, &el1); test_assert_lock(chEvtIsListeningI(&es1), "no listener"); } /* [8.1.4] An Event Listener is unregistered, the Event Source must not have listeners.*/ test_set_step(4); { chEvtUnregister(&es1, &el2); test_assert_lock(!chEvtIsListeningI(&es1), "stuck listener"); } } static const testcase_t rt_test_008_001 = { "Events registration", NULL, NULL, rt_test_008_001_execute }; /** * @page rt_test_008_002 [8.2] Event Flags dispatching * *

Description

* The test dispatches three event flags and verifies that the * associated event handlers are invoked in LSb-first order. * *

Test Steps

* - [8.2.1] Three evenf flag bits are raised then chEvtDispatch() is * invoked, the sequence of handlers calls is tested. * . */ static void rt_test_008_002_setup(void) { chEvtGetAndClearEvents(ALL_EVENTS); } static void rt_test_008_002_execute(void) { /* [8.2.1] Three evenf flag bits are raised then chEvtDispatch() is invoked, the sequence of handlers calls is tested.*/ test_set_step(1); { chEvtDispatch(evhndl, 7); test_assert_sequence("ABC", "invalid sequence"); } } static const testcase_t rt_test_008_002 = { "Event Flags dispatching", rt_test_008_002_setup, NULL, rt_test_008_002_execute }; /** * @page rt_test_008_003 [8.3] Events Flags wait using chEvtWaitOne() * *

Description

* Functionality of chEvtWaitOne() is tested under various scenarios. * *

Test Steps

* - [8.3.1] Setting three event flags. * - [8.3.2] Calling chEvtWaitOne() three times, each time a single * flag must be returned in order of priority. * - [8.3.3] Getting current time and starting a signaler thread, the * thread will set an event flag after 50mS. * - [8.3.4] Calling chEvtWaitOne() then verifying that the event has * been received after 50mS and that the event flags mask has been * emptied. * . */ static void rt_test_008_003_setup(void) { chEvtGetAndClearEvents(ALL_EVENTS); } static void rt_test_008_003_execute(void) { eventmask_t m; systime_t target_time; /* [8.3.1] Setting three event flags.*/ test_set_step(1); { chEvtAddEvents(7); } /* [8.3.2] Calling chEvtWaitOne() three times, each time a single flag must be returned in order of priority.*/ test_set_step(2); { m = chEvtWaitOne(ALL_EVENTS); test_assert(m == 1, "single event error"); m = chEvtWaitOne(ALL_EVENTS); test_assert(m == 2, "single event error"); m = chEvtWaitOne(ALL_EVENTS); test_assert(m == 4, "single event error"); m = chEvtGetAndClearEvents(ALL_EVENTS); test_assert(m == 0, "stuck event"); } /* [8.3.3] Getting current time and starting a signaler thread, the thread will set an event flag after 50mS.*/ test_set_step(3); { target_time = chTimeAddX(test_wait_tick(), TIME_MS2I(50)); threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriorityX() - 1, evt_thread3, chThdGetSelfX()); } /* [8.3.4] Calling chEvtWaitOne() then verifying that the event has been received after 50mS and that the event flags mask has been emptied.*/ test_set_step(4); { m = chEvtWaitOne(ALL_EVENTS); test_assert_time_window(target_time, chTimeAddX(target_time, ALLOWED_DELAY), "out of time window"); test_assert(m == 1, "event flag error"); m = chEvtGetAndClearEvents(ALL_EVENTS); test_assert(m == 0, "stuck event"); test_wait_threads(); } } static const testcase_t rt_test_008_003 = { "Events Flags wait using chEvtWaitOne()", rt_test_008_003_setup, NULL, rt_test_008_003_execute }; /** * @page rt_test_008_004 [8.4] Events Flags wait using chEvtWaitAny() * *

Description

* Functionality of chEvtWaitAny() is tested under various scenarios. * *

Test Steps

* - [8.4.1] Setting two, non contiguous, event flags. * - [8.4.2] Calling chEvtWaitAny() one time, the two flags must be * returned. * - [8.4.3] Getting current time and starting a signaler thread, the * thread will set an event flag after 50mS. * - [8.4.4] Calling chEvtWaitAny() then verifying that the event has * been received after 50mS and that the event flags mask has been * emptied. * . */ static void rt_test_008_004_setup(void) { chEvtGetAndClearEvents(ALL_EVENTS); } static void rt_test_008_004_execute(void) { eventmask_t m; systime_t target_time; /* [8.4.1] Setting two, non contiguous, event flags.*/ test_set_step(1); { chEvtAddEvents(5); } /* [8.4.2] Calling chEvtWaitAny() one time, the two flags must be returned.*/ test_set_step(2); { m = chEvtWaitAny(ALL_EVENTS); test_assert(m == 5, "unexpected pending bit"); m = chEvtGetAndClearEvents(ALL_EVENTS); test_assert(m == 0, "stuck event"); } /* [8.4.3] Getting current time and starting a signaler thread, the thread will set an event flag after 50mS.*/ test_set_step(3); { target_time = chTimeAddX(test_wait_tick(), TIME_MS2I(50)); threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriorityX() - 1, evt_thread3, chThdGetSelfX()); } /* [8.4.4] Calling chEvtWaitAny() then verifying that the event has been received after 50mS and that the event flags mask has been emptied.*/ test_set_step(4); { m = chEvtWaitAny(ALL_EVENTS); test_assert_time_window(target_time, chTimeAddX(target_time, ALLOWED_DELAY), "out of time window"); test_assert(m == 1, "event flag error"); m = chEvtGetAndClearEvents(ALL_EVENTS); test_assert(m == 0, "stuck event"); test_wait_threads(); } } static const testcase_t rt_test_008_004 = { "Events Flags wait using chEvtWaitAny()", rt_test_008_004_setup, NULL, rt_test_008_004_execute }; /** * @page rt_test_008_005 [8.5] Events Flags wait using chEvtWaitAll() * *

Description

* Functionality of chEvtWaitAll() is tested under various scenarios. * *

Test Steps

* - [8.5.1] Setting two, non contiguous, event flags. * - [8.5.2] Calling chEvtWaitAll() one time, the two flags must be * returned. * - [8.5.3] Setting one event flag. * - [8.5.4] Getting current time and starting a signaler thread, the * thread will set another event flag after 50mS. * - [8.5.5] Calling chEvtWaitAll() then verifying that both event * flags have been received after 50mS and that the event flags mask * has been emptied. * . */ static void rt_test_008_005_setup(void) { chEvtGetAndClearEvents(ALL_EVENTS); } static void rt_test_008_005_execute(void) { eventmask_t m; systime_t target_time; /* [8.5.1] Setting two, non contiguous, event flags.*/ test_set_step(1); { chEvtAddEvents(5); } /* [8.5.2] Calling chEvtWaitAll() one time, the two flags must be returned.*/ test_set_step(2); { m = chEvtWaitAll(5); test_assert(m == 5, "unexpected pending bit"); m = chEvtGetAndClearEvents(ALL_EVENTS); test_assert(m == 0, "stuck event"); } /* [8.5.3] Setting one event flag.*/ test_set_step(3); { chEvtAddEvents(4); } /* [8.5.4] Getting current time and starting a signaler thread, the thread will set another event flag after 50mS.*/ test_set_step(4); { target_time = chTimeAddX(test_wait_tick(), TIME_MS2I(50)); threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriorityX() - 1, evt_thread3, chThdGetSelfX()); } /* [8.5.5] Calling chEvtWaitAll() then verifying that both event flags have been received after 50mS and that the event flags mask has been emptied.*/ test_set_step(5); { m = chEvtWaitAll(5); test_assert_time_window(target_time, chTimeAddX(target_time, ALLOWED_DELAY), "out of time window"); test_assert(m == 5, "event flags error"); m = chEvtGetAndClearEvents(ALL_EVENTS); test_assert(m == 0, "stuck event"); test_wait_threads(); } } static const testcase_t rt_test_008_005 = { "Events Flags wait using chEvtWaitAll()", rt_test_008_005_setup, NULL, rt_test_008_005_execute }; #if (CH_CFG_USE_EVENTS_TIMEOUT) || defined(__DOXYGEN__) /** * @page rt_test_008_006 [8.6] Events Flags wait timeouts * *

Description

* Timeout functionality is tested for chEvtWaitOneTimeout(), * chEvtWaitAnyTimeout() and chEvtWaitAllTimeout(). * *

Conditions

* This test is only executed if the following preprocessor condition * evaluates to true: * - CH_CFG_USE_EVENTS_TIMEOUT * . * *

Test Steps

* - [8.6.1] The functions are invoked first with TIME_IMMEDIATE * timeout, the timeout condition is tested. * - [8.6.2] The functions are invoked first with a 50mS timeout, the * timeout condition is tested. * . */ static void rt_test_008_006_setup(void) { chEvtGetAndClearEvents(ALL_EVENTS); } static void rt_test_008_006_execute(void) { eventmask_t m; /* [8.6.1] The functions are invoked first with TIME_IMMEDIATE timeout, the timeout condition is tested.*/ test_set_step(1); { m = chEvtWaitOneTimeout(ALL_EVENTS, TIME_IMMEDIATE); test_assert(m == 0, "spurious event"); m = chEvtWaitAnyTimeout(ALL_EVENTS, TIME_IMMEDIATE); test_assert(m == 0, "spurious event"); m = chEvtWaitAllTimeout(ALL_EVENTS, TIME_IMMEDIATE); test_assert(m == 0, "spurious event"); } /* [8.6.2] The functions are invoked first with a 50mS timeout, the timeout condition is tested.*/ test_set_step(2); { m = chEvtWaitOneTimeout(ALL_EVENTS, TIME_MS2I(50)); test_assert(m == 0, "spurious event"); m = chEvtWaitAnyTimeout(ALL_EVENTS, TIME_MS2I(50)); test_assert(m == 0, "spurious event"); m = chEvtWaitAllTimeout(ALL_EVENTS, TIME_MS2I(50)); test_assert(m == 0, "spurious event"); } } static const testcase_t rt_test_008_006 = { "Events Flags wait timeouts", rt_test_008_006_setup, NULL, rt_test_008_006_execute }; #endif /* CH_CFG_USE_EVENTS_TIMEOUT */ /** * @page rt_test_008_007 [8.7] Broadcasting using chEvtBroadcast() * *

Description

* Functionality of chEvtBroadcast() is tested. * *

Test Steps

* - [8.7.1] Registering on two event sources associating them with * flags 1 and 4. * - [8.7.2] Getting current time and starting a broadcaster thread, * the thread broadcast the first Event Source immediately and the * other after 50mS. * - [8.7.3] Calling chEvtWaitAll() then verifying that both event * flags have been received after 50mS and that the event flags mask * has been emptied. * - [8.7.4] Unregistering from the Event Sources. * . */ static void rt_test_008_007_setup(void) { chEvtGetAndClearEvents(ALL_EVENTS); chEvtObjectInit(&es1); chEvtObjectInit(&es2); } static void rt_test_008_007_execute(void) { eventmask_t m; event_listener_t el1, el2; systime_t target_time; /* [8.7.1] Registering on two event sources associating them with flags 1 and 4.*/ test_set_step(1); { chEvtRegisterMask(&es1, &el1, 1); chEvtRegisterMask(&es2, &el2, 4); } /* [8.7.2] Getting current time and starting a broadcaster thread, the thread broadcast the first Event Source immediately and the other after 50mS.*/ test_set_step(2); { target_time = chTimeAddX(test_wait_tick(), TIME_MS2I(50)); threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriorityX() - 1, evt_thread7, "A"); } /* [8.7.3] Calling chEvtWaitAll() then verifying that both event flags have been received after 50mS and that the event flags mask has been emptied.*/ test_set_step(3); { m = chEvtWaitAll(5); test_assert_time_window(target_time, chTimeAddX(target_time, ALLOWED_DELAY), "out of time window"); m = chEvtGetAndClearEvents(ALL_EVENTS); test_assert(m == 0, "stuck event"); test_wait_threads(); } /* [8.7.4] Unregistering from the Event Sources.*/ test_set_step(4); { chEvtUnregister(&es1, &el1); chEvtUnregister(&es2, &el2); test_assert(!chEvtIsListeningI(&es1), "stuck listener"); test_assert(!chEvtIsListeningI(&es2), "stuck listener"); } } static const testcase_t rt_test_008_007 = { "Broadcasting using chEvtBroadcast()", rt_test_008_007_setup, NULL, rt_test_008_007_execute }; /**************************************************************************** * Exported data. ****************************************************************************/ /** * @brief Array of test cases. */ const testcase_t * const rt_test_sequence_008_array[] = { &rt_test_008_001, &rt_test_008_002, &rt_test_008_003, &rt_test_008_004, &rt_test_008_005, #if (CH_CFG_USE_EVENTS_TIMEOUT) || defined(__DOXYGEN__) &rt_test_008_006, #endif &rt_test_008_007, NULL }; /** * @brief Event Sources and Event Flags. */ const testsequence_t rt_test_sequence_008 = { "Event Sources and Event Flags", rt_test_sequence_008_array }; #endif /* CH_CFG_USE_EVENTS */