File: unittestcppoutputparser.cpp

package info (click to toggle)
codelite 2.6.0.4189~dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 30,868 kB
  • ctags: 32,563
  • sloc: cpp: 237,275; ansic: 20,775; lex: 2,114; yacc: 2,007; xml: 1,274; sh: 1,064; makefile: 566; python: 163
file content (153 lines) | stat: -rw-r--r-- 4,559 bytes parent folder | download
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
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright            : (C) 2008 by Eran Ifrah
// file name            : unittestcppoutputparser.cpp
//
// -------------------------------------------------------------------------
// A
//              _____           _      _     _ _
//             /  __ \         | |    | |   (_) |
//             | /  \/ ___   __| | ___| |    _| |_ ___
//             | |    / _ \ / _  |/ _ \ |   | | __/ _ )
//             | \__/\ (_) | (_| |  __/ |___| | ||  __/
//              \____/\___/ \__,_|\___\_____/_|\__\___|
//
//                                                  F i l e
//
//    This program 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////


#include "unittestcppoutputparser.h"
#include <wx/regex.h>
#include "wx/log.h"

#include <wx/arrimpl.cpp> // this is a magic incantation which must be done!
WX_DEFINE_OBJARRAY(ErrorLineInfoArray);

UnitTestCppOutputParser::~UnitTestCppOutputParser()
{
}

UnitTestCppOutputParser::UnitTestCppOutputParser(const wxArrayString& output)
		: m_output(output)
{

}

void UnitTestCppOutputParser::Parse(TestSummary *summary)
{
// define the regexes
// group1: total number of tests
	static wxRegEx reSuccess(wxT("Success: ([0-9]*) tests passed"));

// main.cpp(82): error: Failure in Test4: false
// group1: file name
// group2: line number
	static wxRegEx reError(wxT("(^[a-zA-Z:]{0,2}[a-zA-Z\\.0-9_/\\+\\-]+)\\(([0-9]*)\\): error:"));

// failure summary line:
// FAILURE: 1 out of 6 tests failed (1 failures).
// group1: number of failures
// group2: total number of tests
	static wxRegEx reErrorSummary(wxT("FAILURE: ([0-9]*) out of ([0-9]*) tests failed"));

	for (size_t i=0; i<m_output.GetCount(); i++) {
		wxString line = m_output.Item(i);

		if (reSuccess.IsValid()) {
			// if the Summary line is in the format of: Success! ,,,
			// nothing is left to be checked
			if (reSuccess.Matches(m_output.Item(i))) {
				size_t len(0);
				size_t start(0);
				wxString match;

				reSuccess.GetMatch(&start, &len, 1);
				match = m_output.Item(i).Mid(start, len);
				match.ToLong((long*)&summary->totalTests);
				summary->errorCount = 0;
				summary->errorLines.Clear();
				return;
			}
		}

		// test for error line

		if (line.Contains(wxT(": error: Failure"))) {
			// increase the error count

			int where = line.Find(wxT(": error: Failure"));
			if ( where != wxNOT_FOUND ) {
				ErrorLineInfo info;

#if defined (__WXGTK__) || defined (__WXMSW__)
				// for some reason the output for Mac is different from the one
				// on Windows & GTK
				// main.cpp(82): error: Failure in Test4: false
				info.file = line.BeforeFirst(wxT('('));
				line = line.AfterFirst(wxT('('));

				info.line = line.BeforeFirst(wxT(')'));
				info.description = line.AfterFirst(wxT(')'));
#else
				// Mac output is:
				// main.cpp:82: error: Failure in Test4: false
				info.description = line.Mid((size_t)where);

				// remove the description
				line = line.Mid(0, (size_t)where);
				info.line = line.AfterLast(wxT(':'));
				info.file = line.BeforeLast(wxT(':'));
#endif
				summary->errorLines.Add(info);
				summary->errorCount++;
			}
		}

		// test for error summary line
		if (reErrorSummary.IsValid()) {
			if (reErrorSummary.Matches(m_output.Item(i))) {
				// increase the error count
				size_t len(0);
				size_t start(0);
				wxString match;

				reErrorSummary.GetMatch(&start, &len, 1);
				match = m_output.Item(i).Mid(start, len);
				match.ToLong((long*)&summary->errorCount);

				reErrorSummary.GetMatch(&start, &len, 2);
				match = m_output.Item(i).Mid(start, len);
				match.ToLong((long*)&summary->totalTests);
			}
		}
	}
}

//-----------------------------------------------------------------------------------

TestSummary::TestSummary()
		: errorCount(0)
		, totalTests(0)
{
	errorLines.Clear();
}

TestSummary::~TestSummary()
{
	errorLines.Clear();
}

void TestSummary::PrintSelf()
{
	wxPrintf(wxT("Total tests            : %d\n"), totalTests);
	wxPrintf(wxT("Total errors           : %d\n"), errorCount);
	wxPrintf(wxT("Total error lines found: %d\n"), errorLines.size());
}