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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// 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/crt.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
// test.cpp: 5: error: Failure in MyTestClass: t.value() == 99
// group1: file name
// group2: line number
static wxRegEx reError (wxT("(^[a-zA-Z:]{0,2}[a-zA-Z\\.0-9_/\\+\\-]+)\\(([0-9]+)\\): error:"));
static wxRegEx reError2(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 ( reError.Matches(line) || reError2.Matches(line) ) {
ErrorLineInfo info;
wxString lineNumber, filename;
if ( reError.Matches(line) ) {
info.file = reError.GetMatch(line, 1);
info.line = reError.GetMatch(line, 2);
info.description = line;
summary->errorLines.Add(info);
summary->errorCount++;
} else if ( reError2.Matches(line) ) {
info.file = reError2.GetMatch(line, 1);
info.line = reError2.GetMatch(line, 2);
info.description = line;
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: %u\n"), (unsigned int)errorLines.size());
}
|