2013-02-15 03:54:20 +00:00
|
|
|
/* Copyright (c) 2008-2011, Avian Contributors
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
|
|
for any purpose with or without fee is hereby granted, provided
|
|
|
|
that the above copyright notice and this permission notice appear
|
|
|
|
in all copies.
|
|
|
|
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
|
|
details. */
|
|
|
|
|
2013-02-15 16:54:05 +00:00
|
|
|
#ifndef TEST_HARNESS_H
|
|
|
|
#define TEST_HARNESS_H
|
2013-02-15 03:54:20 +00:00
|
|
|
|
2013-02-17 19:10:18 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2013-02-15 03:54:20 +00:00
|
|
|
class Test {
|
|
|
|
private:
|
|
|
|
Test* next;
|
|
|
|
static Test* first;
|
|
|
|
static Test** last;
|
|
|
|
|
|
|
|
friend int main(int argc, char** argv);
|
|
|
|
|
2013-02-15 16:54:05 +00:00
|
|
|
|
|
|
|
void print(uint64_t value) {
|
2013-02-15 03:54:20 +00:00
|
|
|
fprintf(stderr, "%p", reinterpret_cast<void*>(value));
|
|
|
|
}
|
|
|
|
|
2013-02-15 16:54:05 +00:00
|
|
|
void print(uint32_t value) {
|
|
|
|
fprintf(stderr, "%p", reinterpret_cast<void*>(value));
|
2013-02-15 03:54:20 +00:00
|
|
|
}
|
2013-02-15 16:54:05 +00:00
|
|
|
|
2013-02-15 03:54:20 +00:00
|
|
|
|
2013-02-15 14:35:17 +00:00
|
|
|
void print(uint8_t value) {
|
2013-02-15 16:54:05 +00:00
|
|
|
print(static_cast<uint32_t>(value));
|
2013-02-15 14:35:17 +00:00
|
|
|
}
|
|
|
|
|
2013-02-15 16:54:05 +00:00
|
|
|
void print(bool value) {
|
|
|
|
fprintf(stderr, "%s", value ? "true" : "false");
|
2013-02-15 14:35:17 +00:00
|
|
|
}
|
|
|
|
|
2013-02-15 03:54:20 +00:00
|
|
|
int failures;
|
|
|
|
int runs;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
template<class T>
|
2013-02-15 14:35:17 +00:00
|
|
|
void assertEqual(T expected, T actual) {
|
2013-02-15 03:54:20 +00:00
|
|
|
if(expected != actual) {
|
|
|
|
fprintf(stderr, "assertion failure, expected: ");
|
|
|
|
print(expected);
|
|
|
|
fprintf(stderr, ", actual: ");
|
|
|
|
print(actual);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
failures++;
|
|
|
|
}
|
|
|
|
runs++;
|
|
|
|
}
|
2013-02-17 19:10:18 +00:00
|
|
|
|
|
|
|
void assertEqual(const char* expected, const char* actual) {
|
|
|
|
if((expected == 0 && actual != 0) || (expected != 0 && actual == 0) || strcmp(expected, actual) != 0) {
|
|
|
|
fprintf(stderr, "assertion failure, expected: \"%s\", actual: \"%s\"\n", expected, actual);
|
|
|
|
failures++;
|
|
|
|
}
|
|
|
|
runs++;
|
|
|
|
}
|
2013-02-15 14:35:17 +00:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void assertNotEqual(T expected, T actual) {
|
|
|
|
if(expected == actual) {
|
|
|
|
fprintf(stderr, "assertion failure, expected: not ");
|
|
|
|
print(expected);
|
|
|
|
fprintf(stderr, ", actual: ");
|
|
|
|
print(actual);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
failures++;
|
|
|
|
}
|
|
|
|
runs++;
|
|
|
|
}
|
2013-02-15 03:54:20 +00:00
|
|
|
|
|
|
|
void assertTrue(bool value) {
|
2013-02-15 14:35:17 +00:00
|
|
|
assertEqual(true, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void assertFalse(bool value) {
|
|
|
|
assertEqual(false, value);
|
2013-02-15 03:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
const char* const name;
|
|
|
|
Test(const char* name);
|
|
|
|
|
|
|
|
virtual void run() = 0;
|
|
|
|
|
|
|
|
static bool runAll();
|
|
|
|
};
|
|
|
|
|
2013-02-15 16:54:05 +00:00
|
|
|
#endif // TEST_HARNESS_H
|