1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-14 03:37:16 +01:00
SqMod/vendor/POCO/Foundation/testsuite/src/TimestampTest.cpp
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface.
Deprecated the external module API. It was creating more problems than solving.
Removed most built-in libraries in favor of system libraries for easier maintenance.
Cleaned and secured code with help from static analyzers.
2021-01-30 08:51:39 +02:00

101 lines
1.8 KiB
C++

//
// TimestampTest.cpp
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "TimestampTest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Poco/Timestamp.h"
#include "Poco/Thread.h"
using Poco::Timestamp;
using Poco::Thread;
TimestampTest::TimestampTest(const std::string& name): CppUnit::TestCase(name)
{
}
TimestampTest::~TimestampTest()
{
}
void TimestampTest::testTimestamp()
{
Timestamp t1;
Thread::sleep(200);
Timestamp t2;
Timestamp t3 = t2;
assertTrue (t1 != t2);
assertTrue (!(t1 == t2));
assertTrue (t2 > t1);
assertTrue (t2 >= t1);
assertTrue (!(t1 > t2));
assertTrue (!(t1 >= t2));
assertTrue (t2 == t3);
assertTrue (!(t2 != t3));
assertTrue (t2 >= t3);
assertTrue (t2 <= t3);
Timestamp::TimeDiff d = (t2 - t1);
assertTrue (d >= 180000 && d <= 300000);
t1.swap(t2);
assertTrue (t1 > t2);
t2.swap(t1);
Timestamp::UtcTimeVal tv = t1.utcTime();
Timestamp t4 = Timestamp::fromUtcTime(tv);
assertTrue (t1 == t4);
Timestamp epoch(0);
tv = epoch.utcTime();
assertTrue (tv >> 32 == 0x01B21DD2);
assertTrue ((tv & 0xFFFFFFFF) == 0x13814000);
Timestamp now;
Thread::sleep(201);
assertTrue (now.elapsed() >= 200000);
assertTrue (now.isElapsed(200000));
assertTrue (!now.isElapsed(2000000));
#if defined(_WIN32)
{
Timestamp now;
Poco::UInt32 low;
Poco::UInt32 high;
now.toFileTimeNP(low, high);
Timestamp ts = Timestamp::fromFileTimeNP(low, high);
assertTrue (now == ts);
}
#endif
}
void TimestampTest::setUp()
{
}
void TimestampTest::tearDown()
{
}
CppUnit::Test* TimestampTest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("TimestampTest");
CppUnit_addTest(pSuite, TimestampTest, testTimestamp);
return pSuite;
}