mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
67 lines
1.4 KiB
C++
67 lines
1.4 KiB
C++
|
//
|
||
|
// FileChannelTest.h
|
||
|
//
|
||
|
// $Id: //poco/1.4/Foundation/testsuite/src/FileChannelTest.h#1 $
|
||
|
//
|
||
|
// Definition of the FileChannelTest class.
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef FileChannelTest_INCLUDED
|
||
|
#define FileChannelTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class FileChannelTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
enum TimeRotation
|
||
|
{
|
||
|
DAY_HOUR_MIN = 0,
|
||
|
HOUR_MIN,
|
||
|
MIN
|
||
|
};
|
||
|
|
||
|
FileChannelTest(const std::string& name);
|
||
|
~FileChannelTest();
|
||
|
|
||
|
void testRotateBySize();
|
||
|
void testRotateByAge();
|
||
|
void testRotateAtTimeDayUTC();
|
||
|
void testRotateAtTimeDayLocal();
|
||
|
void testRotateAtTimeHourUTC();
|
||
|
void testRotateAtTimeHourLocal();
|
||
|
void testRotateAtTimeMinUTC();
|
||
|
void testRotateAtTimeMinLocal();
|
||
|
void testArchive();
|
||
|
void testCompress();
|
||
|
void testPurgeAge();
|
||
|
void testPurgeCount();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
template <class D> std::string rotation(TimeRotation rtype) const;
|
||
|
void remove(const std::string& baseName);
|
||
|
std::string filename() const;
|
||
|
|
||
|
void purgeAge(const std::string& purgeAge);
|
||
|
void noPurgeAge(const std::string& purgeAge);
|
||
|
void purgeCount(const std::string& pc);
|
||
|
void noPurgeCount(const std::string& pc);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // FileChannelTest_INCLUDED
|