libcamera/test/timer-thread.cpp
Laurent Pinchart 778f6b1d70 test: Simplify tests with parent-child relationships
Create object instances with a parent to avoid the need for reparenting
objects manually.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2019-08-17 18:47:17 +03:00

72 lines
1.1 KiB
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* timer-thread.cpp - Threaded timer test
*/
#include <chrono>
#include <iostream>
#include <libcamera/timer.h>
#include "test.h"
#include "thread.h"
using namespace std;
using namespace libcamera;
class TimeoutHandler : public Object
{
public:
TimeoutHandler()
: timer_(this), timeout_(false)
{
timer_.timeout.connect(this, &TimeoutHandler::timeoutHandler);
timer_.start(100);
}
bool timeout() const
{
return timeout_;
}
private:
void timeoutHandler(Timer *timer)
{
timeout_ = true;
}
Timer timer_;
bool timeout_;
};
class TimerThreadTest : public Test
{
protected:
int run()
{
Thread thread;
thread.start();
TimeoutHandler timeout;
timeout.moveToThread(&thread);
this_thread::sleep_for(chrono::milliseconds(100));
/* Must stop thread before destroying timeout. */
thread.exit(0);
thread.wait();
if (!timeout.timeout()) {
cout << "Timer expiration test failed" << endl;
return TestFail;
}
return TestPass;
}
private:
};
TEST_REGISTER(TimerThreadTest)