summaryrefslogtreecommitdiffstats
blob: f1186cc6a2a970a8fbbd2828b2b597cb45a08212 (plain)
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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <string>

#include <cppunit/BriefTestProgressListener.h>
#include <cppunit/TextOutputter.h>
#include <cppunit/TextTestProgressListener.h>
#include <cppunit/TextTestResult.h>
#include <cppunit/XmlOutputter.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>

#include <Swiften/Base/Log.h>

int main(int argc, char* argv[]) {
    bool verbose = false;
    bool outputXML = false;

    Swift::Log::setLogLevel(Swift::Log::error);

    // Parse parameters
    std::vector<std::string> testsToRun;
    for (int i = 1; i < argc; ++i) {
        std::string param(argv[i]);
        if (param == "--verbose") {
            verbose = true;
        }
        else if (param == "--xml") {
            outputXML = true;
        }
        else if (param == "--debug") {
            Swift::Log::setLogLevel(Swift::Log::debug);
        }
        else {
            testsToRun.push_back(param);
        }
    }
    if (testsToRun.empty()) {
        testsToRun.push_back("");
    }

    // Set up the listeners
    CppUnit::TestResult controller;

    CppUnit::TestResultCollector result;
    controller.addListener(&result);

    CppUnit::TextTestProgressListener progressListener;
    CppUnit::BriefTestProgressListener verboseListener;
    if (!outputXML) {
        if (verbose) {
            controller.addListener(&verboseListener);
        }
        else {
            controller.addListener(&progressListener);
        }
    }

    // Run the tests
    CppUnit::TestRunner runner;
    runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest());
    for (std::vector<std::string>::const_iterator i = testsToRun.begin(); i != testsToRun.end(); ++i) {
        try {
            runner.run(controller, *i);
        }
        catch (const std::exception& e) {
            std::cerr << "Error: " << e.what() << std::endl;
            return -1;
        }
    }

    // Output the results
    if (outputXML) {
        CppUnit::XmlOutputter outputter(&result, std::cout);
        outputter.write();
    }
    else {
        CppUnit::TextOutputter outputter(&result, std::cerr);
        outputter.write();
    }

    return result.wasSuccessful() ? 0 : 1;
}