Files
poco/Foundation/testsuite/src/ActivityTest.cpp
Roger Meier b0581433a7 LICENSE: add info about SPDX-License-Identifier usage and use it
fix: remove executable flag and change back to 100644 (was 100755)

Signed-off-by: Roger Meier <r.meier@siemens.com>
2014-05-14 08:38:09 +02:00

105 lines
1.6 KiB
C++

//
// ActivityTest.cpp
//
// $Id: //poco/1.4/Foundation/testsuite/src/ActivityTest.cpp#2 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "ActivityTest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Poco/Activity.h"
#include "Poco/Thread.h"
using Poco::Activity;
using Poco::Thread;
namespace
{
class ActiveObject
{
public:
ActiveObject():
_activity(this, &ActiveObject::run),
_count(0)
{
}
~ActiveObject()
{
}
Activity<ActiveObject>& activity()
{
return _activity;
}
Poco::UInt64 count() const
{
return _count;
}
protected:
void run()
{
while (!_activity.isStopped())
++_count;
}
private:
Activity<ActiveObject> _activity;
Poco::UInt64 _count;
};
}
ActivityTest::ActivityTest(const std::string& name): CppUnit::TestCase(name)
{
}
ActivityTest::~ActivityTest()
{
}
void ActivityTest::testActivity()
{
ActiveObject activeObj;
assert (activeObj.activity().isStopped());
activeObj.activity().start();
assert (!activeObj.activity().isStopped());
Thread::sleep(1000);
assert (activeObj.activity().isRunning());
activeObj.activity().stop();
activeObj.activity().wait();
assert (activeObj.count() > 0);
}
void ActivityTest::setUp()
{
}
void ActivityTest::tearDown()
{
}
CppUnit::Test* ActivityTest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("ActivityTest");
CppUnit_addTest(pSuite, ActivityTest, testActivity);
return pSuite;
}