1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
/*
-------------------------------------------------------------------------
CxxTest: A lightweight C++ unit testing library.
Copyright (c) 2008 Sandia Corporation.
This software is distributed under the LGPL License v3
For more information, see the COPYING file in the top CxxTest directory.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
*/
#ifndef __CXXTEST__GUI_H
#define __CXXTEST__GUI_H
//
// GuiListener is a simple base class for the differes GUIs
// GuiTuiRunner<GuiT, TuiT> combines a GUI with a text-mode error formatter
//
#include <cxxtest/TeeListener.h>
namespace CxxTest
{
class GuiListener : public TestListener
{
public:
GuiListener() : _state(GREEN_BAR) {}
virtual ~GuiListener() {}
virtual void runGui(int &argc, char **argv, TestListener &listener)
{
enterGui(argc, argv);
TestRunner::runAllTests(listener);
leaveGui();
}
virtual void enterGui(int & /*argc*/, char ** /*argv*/) {}
virtual void leaveGui() {}
//
// The easy way is to implement these functions:
//
virtual void guiEnterWorld(unsigned /*numTotalTests*/) {}
virtual void guiEnterSuite(const char * /*suiteName*/) {}
virtual void guiEnterTest(const char * /*suiteName*/, const char * /*testName*/) {}
virtual void yellowBar() {}
virtual void redBar() {}
//
// The hard way is this:
//
void enterWorld(const WorldDescription &d) { guiEnterWorld(d.numTotalTests()); }
void enterSuite(const SuiteDescription &d) { guiEnterSuite(d.suiteName()); }
void enterTest(const TestDescription &d) { guiEnterTest(d.suiteName(), d.testName()); }
void leaveTest(const TestDescription &) {}
void leaveSuite(const SuiteDescription &) {}
void leaveWorld(const WorldDescription &) {}
void warning(const char * /*file*/, int /*line*/, const char * /*expression*/)
{
yellowBarSafe();
}
void skippedTest(const char * /*file*/, int /*line*/, const char * /*expression*/)
{
yellowBarSafe();
}
void failedTest(const char * /*file*/, int /*line*/, const char * /*expression*/)
{
redBarSafe();
}
void failedAssert(const char * /*file*/, int /*line*/, const char * /*expression*/)
{
redBarSafe();
}
void failedAssertEquals(const char * /*file*/, int /*line*/,
const char * /*xStr*/, const char * /*yStr*/,
const char * /*x*/, const char * /*y*/)
{
redBarSafe();
}
void failedAssertSameData(const char * /*file*/, int /*line*/,
const char * /*xStr*/, const char * /*yStr*/,
const char * /*sizeStr*/, const void * /*x*/,
const void * /*y*/, unsigned /*size*/)
{
redBarSafe();
}
void failedAssertDelta(const char * /*file*/, int /*line*/,
const char * /*xStr*/, const char * /*yStr*/, const char * /*dStr*/,
const char * /*x*/, const char * /*y*/, const char * /*d*/)
{
redBarSafe();
}
void failedAssertDiffers(const char * /*file*/, int /*line*/,
const char * /*xStr*/, const char * /*yStr*/,
const char * /*value*/)
{
redBarSafe();
}
void failedAssertLessThan(const char * /*file*/, int /*line*/,
const char * /*xStr*/, const char * /*yStr*/,
const char * /*x*/, const char * /*y*/)
{
redBarSafe();
}
void failedAssertLessThanEquals(const char * /*file*/, int /*line*/,
const char * /*xStr*/, const char * /*yStr*/,
const char * /*x*/, const char * /*y*/)
{
redBarSafe();
}
void failedAssertPredicate(const char * /*file*/, int /*line*/,
const char * /*predicate*/, const char * /*xStr*/, const char * /*x*/)
{
redBarSafe();
}
void failedAssertRelation(const char * /*file*/, int /*line*/,
const char * /*relation*/, const char * /*xStr*/, const char * /*yStr*/,
const char * /*x*/, const char * /*y*/)
{
redBarSafe();
}
void failedAssertThrows(const char * /*file*/, int /*line*/,
const char * /*expression*/, const char * /*type*/,
bool /*otherThrown*/)
{
redBarSafe();
}
void failedAssertThrowsNot(const char * /*file*/, int /*line*/,
const char * /*expression*/)
{
redBarSafe();
}
protected:
void yellowBarSafe()
{
if (_state < YELLOW_BAR)
{
yellowBar();
_state = YELLOW_BAR;
}
}
void redBarSafe()
{
if (_state < RED_BAR)
{
redBar();
_state = RED_BAR;
}
}
private:
enum { GREEN_BAR, YELLOW_BAR, RED_BAR } _state;
};
template<class GuiT, class TuiT>
class GuiTuiRunner : public TeeListener
{
int* _argc;
char **_argv;
GuiT _gui;
TuiT _tui;
public:
GuiTuiRunner() : _argc(0), _argv(0) {}
void process_commandline(int& argc, char** argv)
{
_argc = &argc;
_argv = argv;
setFirst(_gui);
setSecond(_tui);
}
int run()
{
_gui.runGui(*_argc, _argv, *this);
return tracker().failedTests();
}
};
}
#endif //__CXXTEST__GUI_H
|