mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-17 23:55:04 +00:00
- Moved test projects to the parent project they belong to - Improved test stability/corectness - Improved recursive directory deletion by safely ignoring current- and parent-directory entries. - Update docs
440 lines
18 KiB
C++
440 lines
18 KiB
C++
#include "doctest.h"
|
|
|
|
#include <tactility/concurrent/thread.h>
|
|
#include <tactility/delay.h>
|
|
#include <tactility/system_event.h>
|
|
#include <tactility/time.h>
|
|
|
|
#include <vector>
|
|
|
|
// system_event_emit() snapshots matching subscriptions under the lock, then invokes them
|
|
// after unlocking (see the @warning on system_event_callback_add() in system_event.h), so a
|
|
// callback calling system_event_callback_add()/_unsubscribe()/_emit() must not deadlock -
|
|
// covered below, mirroring DeviceListenerTest.cpp's reentrancy test.
|
|
|
|
struct RecordedCall {
|
|
void* context;
|
|
SystemEventType type;
|
|
// Copied out of event->data during the callback - event->data is only valid for the
|
|
// duration of the callback (it lives in system_event_emit()'s own stack frame), so a bare
|
|
// pointer/length pair recorded here would dangle by the time a TEST_CASE inspects it.
|
|
std::vector<uint8_t> data;
|
|
uint64_t timestamp;
|
|
};
|
|
|
|
static std::vector<RecordedCall> calls_a;
|
|
static std::vector<RecordedCall> calls_b;
|
|
|
|
static void listener_a(SystemEvent* event, void* context) {
|
|
calls_a.push_back({ context, event->type, std::vector<uint8_t>(event->data, event->data + event->data_len), event->timestamp });
|
|
}
|
|
|
|
static void listener_b(SystemEvent* event, void* context) {
|
|
calls_b.push_back({ context, event->type, std::vector<uint8_t>(event->data, event->data + event->data_len), event->timestamp });
|
|
}
|
|
|
|
static void reset_calls() {
|
|
calls_a.clear();
|
|
calls_b.clear();
|
|
}
|
|
|
|
TEST_CASE("system_event_emit invokes every subscriber registered for that type") {
|
|
reset_calls();
|
|
int context_a = 1;
|
|
int context_b = 2;
|
|
|
|
CHECK_EQ(system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_a, &context_a), ERROR_NONE);
|
|
CHECK_EQ(system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_b, &context_b), ERROR_NONE);
|
|
|
|
CHECK_EQ(system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0), ERROR_NONE);
|
|
|
|
REQUIRE_EQ(calls_a.size(), 1);
|
|
CHECK_EQ(calls_a[0].context, &context_a);
|
|
CHECK_EQ(calls_a[0].type, KERNEL_EVENT_BOOT_COMPLETED);
|
|
|
|
REQUIRE_EQ(calls_b.size(), 1);
|
|
CHECK_EQ(calls_b[0].context, &context_b);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_a);
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_b);
|
|
}
|
|
|
|
TEST_CASE("system_event_emit only invokes subscribers registered for the emitted type") {
|
|
reset_calls();
|
|
int context_a = 1;
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_a, &context_a);
|
|
|
|
system_event_emit(KERNEL_EVENT_TIME_CHANGED, nullptr, 0);
|
|
CHECK_EQ(calls_a.size(), 0);
|
|
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
CHECK_EQ(calls_a.size(), 1);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_a);
|
|
}
|
|
|
|
TEST_CASE("system_event_emit copies the data into the delivered event") {
|
|
reset_calls();
|
|
int context_a = 1;
|
|
struct Payload { int value; } payload { 42 };
|
|
|
|
system_event_callback_add(KERNEL_EVENT_TIME_CHANGED, listener_a, &context_a);
|
|
system_event_emit(KERNEL_EVENT_TIME_CHANGED, &payload, sizeof(payload));
|
|
|
|
REQUIRE_EQ(calls_a.size(), 1);
|
|
REQUIRE_EQ(calls_a[0].data.size(), sizeof(payload));
|
|
CHECK_EQ(reinterpret_cast<const Payload*>(calls_a[0].data.data())->value, 42);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_TIME_CHANGED, listener_a);
|
|
}
|
|
|
|
TEST_CASE("system_event_emit with no data delivers an empty payload") {
|
|
reset_calls();
|
|
int context_a = 1;
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_a, &context_a);
|
|
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
|
|
REQUIRE_EQ(calls_a.size(), 1);
|
|
CHECK(calls_a[0].data.empty());
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_a);
|
|
}
|
|
|
|
TEST_CASE("system_event_callback_remove stops further notifications for that callback only") {
|
|
reset_calls();
|
|
int context_a = 1;
|
|
int context_b = 2;
|
|
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_a, &context_a);
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_b, &context_b);
|
|
|
|
CHECK_EQ(system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_a), ERROR_NONE);
|
|
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
|
|
CHECK_EQ(calls_a.size(), 0);
|
|
CHECK_EQ(calls_b.size(), 1);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_b);
|
|
}
|
|
|
|
TEST_CASE("system_event_callback_remove on an unregistered callback returns ERROR_NOT_FOUND and is a no-op") {
|
|
reset_calls();
|
|
int context_b = 2;
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_b, &context_b);
|
|
|
|
// listener_a was never added for this type, so removing it must not disturb listener_b.
|
|
CHECK_EQ(system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_a), ERROR_NOT_FOUND);
|
|
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
CHECK_EQ(calls_b.size(), 1);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_b);
|
|
}
|
|
|
|
TEST_CASE("system_event_callback_remove matches on (type, callback), not the callback alone") {
|
|
reset_calls();
|
|
int context_a = 1;
|
|
|
|
// Same callback subscribed for two different event types.
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_a, &context_a);
|
|
system_event_callback_add(KERNEL_EVENT_TIME_CHANGED, listener_a, &context_a);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_a);
|
|
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
CHECK_EQ(calls_a.size(), 0);
|
|
|
|
system_event_emit(KERNEL_EVENT_TIME_CHANGED, nullptr, 0);
|
|
CHECK_EQ(calls_a.size(), 1);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_TIME_CHANGED, listener_a);
|
|
}
|
|
|
|
TEST_CASE("system_event_emit with no subscribers for that type returns ERROR_NONE") {
|
|
CHECK_EQ(system_event_emit(KERNEL_EVENT_SERVICE_STOPPED, nullptr, 0), ERROR_NONE);
|
|
}
|
|
|
|
TEST_CASE("system_event_emit stamps the event with the current boot-relative time") {
|
|
reset_calls();
|
|
int context_a = 1;
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_a, &context_a);
|
|
|
|
auto before = static_cast<uint64_t>(get_micros_since_boot());
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
auto after = static_cast<uint64_t>(get_micros_since_boot());
|
|
|
|
REQUIRE_EQ(calls_a.size(), 1);
|
|
CHECK_GE(calls_a[0].timestamp, before);
|
|
CHECK_LE(calls_a[0].timestamp, after);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_a);
|
|
}
|
|
|
|
static bool reentrant_add_triggered = false;
|
|
|
|
static void reentrant_listener(SystemEvent* event, void* context) {
|
|
calls_a.push_back({ context, event->type, std::vector<uint8_t>(event->data, event->data + event->data_len), event->timestamp });
|
|
if (!reentrant_add_triggered) {
|
|
reentrant_add_triggered = true;
|
|
// Subscribing from within a notification must not deadlock: emit() releases the
|
|
// lock before invoking callbacks, so this only blocks briefly on the (already
|
|
// unlocked) mutex.
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, listener_b, context);
|
|
// Also exercise unsubscribe() and a nested emit() of a different type from within
|
|
// a callback - all must complete without deadlocking.
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, reentrant_listener);
|
|
system_event_emit(KERNEL_EVENT_TIME_CHANGED, nullptr, 0);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("system_event_emit is safe when a callback subscribes, unsubscribes and emits during notification") {
|
|
reset_calls();
|
|
reentrant_add_triggered = false;
|
|
int context_a = 1;
|
|
|
|
system_event_callback_add(KERNEL_EVENT_BOOT_COMPLETED, reentrant_listener, &context_a);
|
|
system_event_callback_add(KERNEL_EVENT_TIME_CHANGED, listener_b, &context_a);
|
|
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
|
|
// reentrant_listener unsubscribed itself and triggered a nested TIME_CHANGED emit,
|
|
// which the pre-existing listener_b subscription picks up. The listener_b
|
|
// subscription added *during* this round wasn't part of this round's snapshot, so it
|
|
// wasn't invoked for BOOT_COMPLETED yet.
|
|
CHECK_EQ(calls_a.size(), 1);
|
|
CHECK_EQ(calls_b.size(), 1);
|
|
|
|
// A second BOOT_COMPLETED emit must not reach reentrant_listener again (it
|
|
// unsubscribed itself), but must reach the listener_b subscription added last round.
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
CHECK_EQ(calls_a.size(), 1);
|
|
CHECK_EQ(calls_b.size(), 2);
|
|
|
|
system_event_callback_remove(KERNEL_EVENT_BOOT_COMPLETED, listener_b);
|
|
system_event_callback_remove(KERNEL_EVENT_TIME_CHANGED, listener_b);
|
|
}
|
|
|
|
// gps.h-style poll subscription: system_event_subscribe()/_await()/_unsubscribe().
|
|
//
|
|
// system_event_await() only detects sequence increments that happen *after* it starts
|
|
// waiting (same as gps_api_event_await()), so the emit must be started from another task
|
|
// while this one is already blocked in await() - emitting first and awaiting after would
|
|
// race the notification the same way it would with any FreeRTOS task-notify consumer.
|
|
|
|
TEST_CASE("system_event_subscribe/_await deliver the event payload by value") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_NETWORK_CONNECTED;
|
|
CHECK_EQ(system_event_subscribe(&sub), ERROR_NONE);
|
|
|
|
NetworkConnectedEvent connected { .device = nullptr, .ipv4_addr = 0x0A000001, .gateway = 0x0A0000FE };
|
|
auto* thread = thread_alloc_full(
|
|
"system-event-emitter",
|
|
4096,
|
|
[](void* context) {
|
|
delay_millis(20);
|
|
auto* connected_ptr = static_cast<NetworkConnectedEvent*>(context);
|
|
system_event_emit(KERNEL_EVENT_NETWORK_CONNECTED, connected_ptr, sizeof(*connected_ptr));
|
|
return 0;
|
|
},
|
|
&connected,
|
|
-1
|
|
);
|
|
CHECK_EQ(thread_start(thread), ERROR_NONE);
|
|
|
|
CHECK_EQ(system_event_await(&sub, pdMS_TO_TICKS(2000)), ERROR_NONE);
|
|
|
|
NetworkConnectedEvent received {};
|
|
CHECK_EQ(system_event_get_data(&sub, reinterpret_cast<uint8_t*>(&received), sizeof(received)), ERROR_NONE);
|
|
CHECK_EQ(received.ipv4_addr, connected.ipv4_addr);
|
|
CHECK_EQ(received.gateway, connected.gateway);
|
|
|
|
CHECK_EQ(thread_join(thread, pdMS_TO_TICKS(2000), pdMS_TO_TICKS(1)), ERROR_NONE);
|
|
thread_free(thread);
|
|
|
|
CHECK_EQ(system_event_unsubscribe(&sub), ERROR_NONE);
|
|
CHECK_EQ(system_event_unsubscribe(&sub), ERROR_NOT_FOUND);
|
|
}
|
|
|
|
TEST_CASE("system_event_await returns a matching event that arrived before it started waiting") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_NETWORK_CONNECTED;
|
|
CHECK_EQ(system_event_subscribe(&sub), ERROR_NONE);
|
|
|
|
// Same-thread emit, no background thread needed: unlike the "detects a change after it
|
|
// starts waiting" tests above, this is exactly the case system_event_await() must handle -
|
|
// sequence already moved ahead of consumed_sequence before await() is even called.
|
|
NetworkConnectedEvent connected { .device = nullptr, .ipv4_addr = 0x0A000001, .gateway = 0x0A0000FE };
|
|
CHECK_EQ(system_event_emit(KERNEL_EVENT_NETWORK_CONNECTED, &connected, sizeof(connected)), ERROR_NONE);
|
|
|
|
CHECK_EQ(system_event_await(&sub, 0), ERROR_NONE);
|
|
|
|
NetworkConnectedEvent received {};
|
|
CHECK_EQ(system_event_get_data(&sub, reinterpret_cast<uint8_t*>(&received), sizeof(received)), ERROR_NONE);
|
|
CHECK_EQ(received.ipv4_addr, connected.ipv4_addr);
|
|
CHECK_EQ(received.gateway, connected.gateway);
|
|
|
|
// The pending event was consumed by the call above - a second await() with no further
|
|
// emit must time out rather than returning the same event again.
|
|
CHECK_EQ(system_event_await(&sub, 0), ERROR_TIMEOUT);
|
|
|
|
system_event_unsubscribe(&sub);
|
|
}
|
|
|
|
TEST_CASE("system_event_await times out when no matching event has arrived") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_TIME_CHANGED;
|
|
system_event_subscribe(&sub);
|
|
|
|
CHECK_EQ(system_event_await(&sub, 0), ERROR_TIMEOUT);
|
|
|
|
system_event_unsubscribe(&sub);
|
|
}
|
|
|
|
TEST_CASE("system_event_emit does not notify a poll subscriber of a different type") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_BOOT_COMPLETED;
|
|
system_event_subscribe(&sub);
|
|
|
|
system_event_emit(KERNEL_EVENT_TIME_CHANGED, nullptr, 0);
|
|
CHECK_EQ(system_event_await(&sub, 0), ERROR_TIMEOUT);
|
|
|
|
system_event_unsubscribe(&sub);
|
|
}
|
|
|
|
TEST_CASE("system_event_get_data reports ERROR_BUFFER_OVERFLOW and leaves the buffer untouched") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_NETWORK_DISCONNECTED;
|
|
CHECK_EQ(system_event_subscribe(&sub), ERROR_NONE);
|
|
|
|
// system_event_await() only detects sequence increments that happen *after* it starts
|
|
// waiting (see the comment above), so the emit must come from another task while this one
|
|
// is already blocked in await() - same pattern as the payload-delivery test above.
|
|
NetworkDisconnectedEvent disconnected { .device = nullptr };
|
|
auto* thread = thread_alloc_full(
|
|
"system-event-emitter",
|
|
4096,
|
|
[](void* context) {
|
|
delay_millis(20);
|
|
auto* disconnected_ptr = static_cast<NetworkDisconnectedEvent*>(context);
|
|
system_event_emit(KERNEL_EVENT_NETWORK_DISCONNECTED, disconnected_ptr, sizeof(*disconnected_ptr));
|
|
return 0;
|
|
},
|
|
&disconnected,
|
|
-1
|
|
);
|
|
CHECK_EQ(thread_start(thread), ERROR_NONE);
|
|
CHECK_EQ(system_event_await(&sub, pdMS_TO_TICKS(2000)), ERROR_NONE);
|
|
CHECK_EQ(thread_join(thread, pdMS_TO_TICKS(2000), pdMS_TO_TICKS(1)), ERROR_NONE);
|
|
thread_free(thread);
|
|
|
|
uint8_t tiny[1] = { 0xAA };
|
|
CHECK_EQ(system_event_get_data(&sub, tiny, sizeof(tiny)), ERROR_BUFFER_OVERFLOW);
|
|
CHECK_EQ(tiny[0], 0xAA);
|
|
|
|
uint8_t exact[sizeof(NetworkDisconnectedEvent)];
|
|
CHECK_EQ(system_event_get_data(&sub, exact, sizeof(exact)), ERROR_NONE);
|
|
|
|
system_event_unsubscribe(&sub);
|
|
}
|
|
|
|
TEST_CASE("system_event_get_data on a subscription with no payload copies nothing and succeeds") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_BOOT_COMPLETED;
|
|
CHECK_EQ(system_event_subscribe(&sub), ERROR_NONE);
|
|
|
|
auto* thread = thread_alloc_full(
|
|
"system-event-emitter",
|
|
4096,
|
|
[](void*) {
|
|
delay_millis(20);
|
|
system_event_emit(KERNEL_EVENT_BOOT_COMPLETED, nullptr, 0);
|
|
return 0;
|
|
},
|
|
nullptr,
|
|
-1
|
|
);
|
|
CHECK_EQ(thread_start(thread), ERROR_NONE);
|
|
CHECK_EQ(system_event_await(&sub, pdMS_TO_TICKS(2000)), ERROR_NONE);
|
|
CHECK_EQ(thread_join(thread, pdMS_TO_TICKS(2000), pdMS_TO_TICKS(1)), ERROR_NONE);
|
|
thread_free(thread);
|
|
|
|
uint8_t buffer[1] = { 0x42 };
|
|
CHECK_EQ(system_event_get_data(&sub, buffer, 0), ERROR_NONE);
|
|
CHECK_EQ(buffer[0], 0x42); // untouched - nothing to copy
|
|
|
|
system_event_unsubscribe(&sub);
|
|
}
|
|
|
|
// Regression coverage for system_event_unsubscribe() racing a task blocked in
|
|
// system_event_await() on the same subscription, and for reusing a subscription node after
|
|
// unsubscribing it - see the @warning on system_event_unsubscribe() in system_event.h.
|
|
|
|
TEST_CASE("system_event_unsubscribe wakes a task blocked in system_event_await with ERROR_INVALID_STATE") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_SERVICE_STARTED;
|
|
CHECK_EQ(system_event_subscribe(&sub), ERROR_NONE);
|
|
|
|
auto* thread = thread_alloc_full(
|
|
"system-event-awaiter",
|
|
4096,
|
|
[](void* context) {
|
|
auto* awaited_sub = static_cast<SystemEventSubscription*>(context);
|
|
// Long timeout - the point is that unsubscribe() wakes this early, not that it
|
|
// eventually times out on its own.
|
|
return static_cast<int32_t>(system_event_await(awaited_sub, pdMS_TO_TICKS(5000)));
|
|
},
|
|
&sub,
|
|
-1
|
|
);
|
|
CHECK_EQ(thread_start(thread), ERROR_NONE);
|
|
|
|
// Give the awaiter task a moment to actually reach xSemaphoreTake() before unsubscribing -
|
|
// otherwise this test wouldn't exercise the "already blocked" race at all.
|
|
delay_millis(20);
|
|
|
|
// Must return promptly (nudging the blocked awaiter awake), not by waiting out its timeout.
|
|
TickType_t before = get_ticks();
|
|
CHECK_EQ(system_event_unsubscribe(&sub), ERROR_NONE);
|
|
CHECK_LT(get_ticks() - before, pdMS_TO_TICKS(1000));
|
|
|
|
CHECK_EQ(thread_join(thread, pdMS_TO_TICKS(2000), pdMS_TO_TICKS(1)), ERROR_NONE);
|
|
CHECK_EQ(thread_get_return_code(thread), ERROR_INVALID_STATE);
|
|
thread_free(thread);
|
|
|
|
// A second unsubscribe() has nothing left to do.
|
|
CHECK_EQ(system_event_unsubscribe(&sub), ERROR_NOT_FOUND);
|
|
}
|
|
|
|
TEST_CASE("a subscription node can be re-subscribed after system_event_unsubscribe") {
|
|
SystemEventSubscription sub {};
|
|
sub.event.type = KERNEL_EVENT_SERVICE_STOPPED;
|
|
|
|
CHECK_EQ(system_event_subscribe(&sub), ERROR_NONE);
|
|
CHECK_EQ(system_event_unsubscribe(&sub), ERROR_NONE);
|
|
|
|
// Re-registering the same node (same storage, not a fresh SystemEventSubscription) must
|
|
// work as if it were new - a fresh semaphore, and no leftover `cancelled` state from the
|
|
// unsubscribe() above causing an immediate spurious ERROR_INVALID_STATE below.
|
|
CHECK_EQ(system_event_subscribe(&sub), ERROR_NONE);
|
|
|
|
auto* thread = thread_alloc_full(
|
|
"system-event-emitter",
|
|
4096,
|
|
[](void*) {
|
|
delay_millis(20);
|
|
system_event_emit(KERNEL_EVENT_SERVICE_STOPPED, nullptr, 0);
|
|
return 0;
|
|
},
|
|
nullptr,
|
|
-1
|
|
);
|
|
CHECK_EQ(thread_start(thread), ERROR_NONE);
|
|
CHECK_EQ(system_event_await(&sub, pdMS_TO_TICKS(2000)), ERROR_NONE);
|
|
CHECK_EQ(thread_join(thread, pdMS_TO_TICKS(2000), pdMS_TO_TICKS(1)), ERROR_NONE);
|
|
thread_free(thread);
|
|
|
|
CHECK_EQ(system_event_unsubscribe(&sub), ERROR_NONE);
|
|
}
|