1
0
forked from 0ad/0ad
0ad/source/ps/tests/test_CLogger.h
Ykkrosh 8b7d1fcfb3 * Moved command-line options list from system.cfg into readme.txt. Updated the list to reflect reality. Removed -novbo option because you can use the .cfg file instead.
* Changed log files to trigger standards mode in Firefox (to be
consistent with other browsers), by making it valid HTML5. Changed the
font and some spacing.
 * Made CLogger default to ignoring messages if it hasn't been
initialised yet, instead of crashing.
 * Added leak reporting to the unit tests.
 * Renamed mods/_tests to mods/_test.xero, since it's only used by
Xeromyces and the other tests use mods/_test.otherstuff instead.
 * Fixed Atlas compilation on Windows.
 * Moved Atlas's DLL-loading code into a separate class, so it can be
shared.

This was SVN commit r4707.
2006-12-20 03:09:21 +00:00

94 lines
2.0 KiB
C++

#include "lib/self_test.h"
#include "ps/CLogger.h"
class TestCLogger : public CxxTest::TestSuite
{
public:
void test_basic()
{
logger->Log(NORMAL, "", "Test 1");
logger->Log(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(NORMAL, "", msg0.c_str());
logger->Log(NORMAL, "", msg1.c_str());
logger->Log(NORMAL, "", msg2.c_str());
logger->Log(NORMAL, "", msg3.c_str());
logger->LogOnce(NORMAL, "", msg0.c_str());
logger->LogOnce(NORMAL, "", msg1.c_str());
logger->LogOnce(NORMAL, "", msg2.c_str());
logger->LogOnce(NORMAL, "", 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);
lines.clear();
}
void tearDown()
{
delete logger;
logger = NULL;
}
void ParseOutput()
{
const std::string header_end = "</h1>\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;
}
}
};