0ad/source/ps/tests/test_CLogger.h
Ykkrosh 5c8861adf4 Remove redundant -L linker arguments on non-Windows.
Fix some compiler warnings.
Fix missing non-PCH headers.

This was SVN commit r7083.
2009-08-07 17:22:05 +00:00

111 lines
2.9 KiB
C++

/* Copyright (C) 2009 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* 0 A.D. is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
*/
#include "lib/self_test.h"
#include "ps/CLogger.h"
class TestCLogger : public CxxTest::TestSuite
{
public:
void test_basic()
{
logger->Log(CLogger::Normal, "", "Test 1");
logger->Log(CLogger::Normal, "", "Test 2");
ParseOutput();
TS_ASSERT_EQUALS((int)lines.size(), 2);
TS_ASSERT_EQUALS(lines[0], "Test 1");
TS_ASSERT_EQUALS(lines[1], "Test 2");
}
void test_overflow()
{
const int buflen = 512;
std::string msg0 (buflen-2, '*');
std::string msg1 (buflen-1, '*');
std::string msg2 (buflen, '*');
std::string msg3 (buflen+1, '*');
std::string clipped (buflen-4, '*');
clipped += "...";
logger->Log(CLogger::Normal, "", "%s", msg0.c_str());
logger->Log(CLogger::Normal, "", "%s", msg1.c_str());
logger->Log(CLogger::Normal, "", "%s", msg2.c_str());
logger->Log(CLogger::Normal, "", "%s", msg3.c_str());
logger->LogOnce(CLogger::Normal, "", "%s", msg0.c_str());
logger->LogOnce(CLogger::Normal, "", "%s", msg1.c_str());
logger->LogOnce(CLogger::Normal, "", "%s", msg2.c_str());
logger->LogOnce(CLogger::Normal, "", "%s", msg3.c_str());
ParseOutput();
TS_ASSERT_EQUALS((int)lines.size(), 7);
TS_ASSERT_EQUALS(lines[0], msg0);
TS_ASSERT_EQUALS(lines[1], msg1);
TS_ASSERT_EQUALS(lines[2], clipped);
TS_ASSERT_EQUALS(lines[3], clipped);
TS_ASSERT_EQUALS(lines[4], msg0);
TS_ASSERT_EQUALS(lines[5], msg1);
TS_ASSERT_EQUALS(lines[6], clipped);
}
//////////////////////////////////////////////////////////////////////////
CLogger* logger;
std::stringstream* mainlog;
std::stringstream* interestinglog;
std::vector<std::string> lines;
void setUp()
{
mainlog = new std::stringstream();
interestinglog = new std::stringstream();
logger = new CLogger(mainlog, interestinglog, true, true);
lines.clear();
}
void tearDown()
{
delete logger;
logger = NULL;
}
void ParseOutput()
{
const std::string header_end = "</h2>\n";
std::string s = mainlog->str();
size_t start = s.find(header_end);
TS_ASSERT_DIFFERS(start, s.npos);
s = s.substr(start + header_end.length());
size_t n = 0, m;
while (s.npos != (m = s.find('\n', n)))
{
lines.push_back(s.substr(n+3, m-n-7)); // strip the <p> and </p>
n = m+1;
}
}
};