From 83c73c39c5c6b115fc80e6133433b70753499bab Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 23 Jan 2019 10:16:26 +0200 Subject: tests: Test event dispatcher interruption by signal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a test to verify that the event dispatcher correctly restarts event processing when interrupted by a signal. The test currently fails as this feature isn't implemented. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Niklas Söderlund --- test/event-dispatcher.cpp | 73 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 test/event-dispatcher.cpp (limited to 'test/event-dispatcher.cpp') diff --git a/test/event-dispatcher.cpp b/test/event-dispatcher.cpp new file mode 100644 index 00000000..06c2657f --- /dev/null +++ b/test/event-dispatcher.cpp @@ -0,0 +1,73 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2019, Google Inc. + * + * event-dispatcher.cpp - Event dispatcher test + */ + +#include +#include +#include + +#include +#include +#include + +#include "test.h" + +using namespace std; +using namespace libcamera; + +class EventDispatcherTest : public Test +{ +protected: + static void sigAlarmHandler(int) + { + cout << "SIGALARM received" << endl; + } + + int init() + { + struct sigaction sa = {}; + sa.sa_handler = &sigAlarmHandler; + sigaction(SIGALRM, &sa, nullptr); + + return 0; + } + + int run() + { + EventDispatcher *dispatcher = CameraManager::instance()->eventDispatcher(); + Timer timer; + + /* Event processing interruption by signal. */ + struct timespec start; + clock_gettime(CLOCK_MONOTONIC, &start); + + timer.start(1000); + + struct itimerval itimer = {}; + itimer.it_value.tv_usec = 500000; + setitimer(ITIMER_REAL, &itimer, nullptr); + + dispatcher->processEvents(); + + struct timespec stop; + clock_gettime(CLOCK_MONOTONIC, &stop); + int duration = (stop.tv_sec - start.tv_sec) * 1000; + duration += (stop.tv_nsec - start.tv_nsec) / 1000000; + + if (abs(duration - 1000) > 50) { + cout << "Event processing restart test failed" << endl; + return TestFail; + } + + return TestPass; + } + + void cleanup() + { + } +}; + +TEST_REGISTER(EventDispatcherTest) -- cgit v1.2.1