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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
/******************************************************************************
* Copyright (c) 2000-2021 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* Balasko, Jeno
* Susanszky, Eszter
*
******************************************************************************/
#include "JUnitLogger2.hh"
#include <unistd.h>
#include <sys/types.h>
#include <sys/time.h>
extern "C"
{
// It's a static plug-in, destruction is done in the destructor. We need
// `extern "C"' for some reason.
ILoggerPlugin *create_junit_logger() { return new JUnitLogger2(); }
}
extern "C" {
ILoggerPlugin *create_plugin() { return new JUnitLogger2(); }
void destroy_plugin(ILoggerPlugin *plugin) { delete plugin; }
}
TestSuite::~TestSuite()
{
for (TestCases::const_iterator it = testcases.begin(); it != testcases.end(); ++it) {
delete (*it);
}
}
JUnitLogger2::JUnitLogger2()
: filename_stem_(NULL), testsuite_name_(mcopystr("Titan")), filename_(NULL), file_stream_(NULL)
{
// Overwrite values set by the base class constructor
fprintf(stderr, "construct junitlogger\n");
major_version_ = 2;
minor_version_ = 0;
name_ = mcopystr("JUnitLogger");
help_ = mcopystr("JUnitLogger writes JUnit-compatible XML");
dte_reason = "";
//printf("%5lu:constructed\n", (unsigned long)getpid());
}
JUnitLogger2::~JUnitLogger2()
{
//printf("%5lu:desstructed\n", (unsigned long)getpid());
close_file();
Free(name_);
Free(help_);
Free(filename_);
Free(testsuite_name_);
Free(filename_stem_);
name_ = help_ = filename_ = filename_stem_ = NULL;
file_stream_ = NULL;
}
void JUnitLogger2::init(const char */*options*/)
{
//printf("%5lu:init\n", (unsigned long)getpid());
fprintf(stderr, "Initializing `%s' (v%u.%u): %s\n", name_, major_version_, minor_version_, help_);
}
void JUnitLogger2::fini()
{
//puts("fini");
//fprintf(stderr, "JUnitLogger2 finished logging for PID: `%lu'\n", (unsigned long)getpid());
}
void JUnitLogger2::set_parameter(const char *parameter_name, const char *parameter_value) {
//puts("set_par");
if (!strcmp("filename_stem", parameter_name)) {
if (filename_stem_ != NULL)
Free(filename_stem_);
filename_stem_ = mcopystr(parameter_value);
} else if (!strcmp("testsuite_name", parameter_name)) {
if (testsuite_name_ != NULL)
Free(testsuite_name_);
testsuite_name_ = mcopystr(parameter_value);
} else {
fprintf(stderr, "Unsupported parameter: `%s' with value: `%s'\n",
parameter_name, parameter_value);
}
}
void JUnitLogger2::open_file(bool is_first) {
if (is_first) {
if (filename_stem_ == NULL) {
filename_stem_ = mcopystr("junit-xml");
}
}
if (file_stream_ != NULL) return; // already open
if (!TTCN_Runtime::is_single() && !TTCN_Runtime::is_mtc()) return; // don't bother, only MTC has testcases
filename_ = mprintf("%s-%lu.log", filename_stem_, (unsigned long)getpid());
file_stream_ = fopen(filename_, "w");
if (!file_stream_) {
fprintf(stderr, "%s was unable to open log file `%s', reinitialization "
"may help\n", plugin_name(), filename_);
return;
}
is_configured_ = true;
time(&(testsuite.start_ts));
testsuite.ts_name = testsuite_name_;
}
void JUnitLogger2::close_file() {
if (file_stream_ != NULL) {
time(&(testsuite.end_ts));
testsuite.write(file_stream_);
fclose(file_stream_);
file_stream_ = NULL;
}
if (filename_) {
Free(filename_);
filename_ = NULL;
}
}
void JUnitLogger2::log(const TitanLoggerApi::TitanLogEvent& event,
bool /*log_buffered*/, bool /*separate_file*/,
bool /*use_emergency_mask*/)
{
if (file_stream_ == NULL) return;
const TitanLoggerApi::LogEventType_choice& choice = event.logEvent().choice();
switch (choice.get_selection()) {
case TitanLoggerApi::LogEventType_choice::ALT_testcaseOp: {
const TitanLoggerApi::TestcaseEvent_choice& tcev = choice.testcaseOp().choice();
switch (tcev.get_selection()) {
case TitanLoggerApi::TestcaseEvent_choice::ALT_testcaseStarted: {
testcase.tc_name = tcev.testcaseStarted().testcase__name();
// remember the start time
testcase.tc_start = 1000000LL * (long long)event.timestamp__().seconds() + (long long)event.timestamp__().microSeconds();
break; }
case TitanLoggerApi::TestcaseEvent_choice::ALT_testcaseFinished: {
const TitanLoggerApi::TestcaseType& tct = tcev.testcaseFinished();
testcase.reason = escape_xml_element(tct.reason());
testcase.module_name = tct.name().module__name();
const TitanLoggerApi::TimestampType& ts = event.timestamp__();
long long tc_end = 1000000LL * (long long)ts.seconds() + (long long)ts.microSeconds();
testcase.time = (tc_end - testcase.tc_start) / 1000000.0;
testcase.setTCVerdict(event);
testcase.dte_reason = dte_reason.data();
dte_reason = "";
testsuite.addTestCase(testcase);
testcase.reset();
break; }
case TitanLoggerApi::TestcaseEvent_choice::UNBOUND_VALUE:
testcase.verdict = TestCase::Unbound;
break; } // switch testcaseOp().choice.get_selection()
break; } // testcaseOp
case TitanLoggerApi::LogEventType_choice::ALT_errorLog: {// A DTE is about to be thrown
const TitanLoggerApi::Categorized& cat = choice.errorLog();
dte_reason = escape_xml_element(cat.text());
break; }
default: break;
} // switch event.logEvent().choice().get_selection()
fflush(file_stream_);
}
CHARSTRING JUnitLogger2::escape_xml(const CHARSTRING& xml_str, int escape_chars) {
expstring_t escaped = NULL;
int len = xml_str.lengthof();
for (int i=0; i<len; i++) {
char c = *(((const char*)xml_str)+i);
switch (c) {
case '<':
if (escape_chars<) escaped = mputstr(escaped, "<");
else escaped = mputc(escaped, c);
break;
case '>':
if (escape_chars>) escaped = mputstr(escaped, ">");
else escaped = mputc(escaped, c);
break;
case '"':
if (escape_chars") escaped = mputstr(escaped, """);
else escaped = mputc(escaped, c);
break;
case '\'':
if (escape_chars&APOS) escaped = mputstr(escaped, "'");
else escaped = mputc(escaped, c);
break;
case '&':
if (escape_chars&) escaped = mputstr(escaped, "&");
else escaped = mputc(escaped, c);
break;
default:
escaped = mputc(escaped, c);
}
}
CHARSTRING ret_val(escaped);
Free(escaped);
return ret_val;
}
void TestCase::writeTestCase(FILE* file_stream_) const{
switch(verdict){
case None: {
fprintf(file_stream_, " <testcase classname='%s' name='%s' time='%f'>\n", module_name.data(), tc_name.data(), time);
fprintf(file_stream_, " <skipped>no verdict</skipped>\n");
fprintf(file_stream_, " </testcase>\n");
break; }
case Fail: {
fprintf(file_stream_, " <testcase classname='%s' name='%s' time='%f'>\n", module_name.data(), tc_name.data(), time);
fprintf(file_stream_, " <failure type='fail-verdict'>%s\n", reason.data());
fprintf(file_stream_, "%s\n", stack_trace.data());
fprintf(file_stream_, " </failure>\n");
fprintf(file_stream_, " </testcase>\n");
break; }
case Error: {
fprintf(file_stream_, " <testcase classname='%s' name='%s' time='%f'>\n", module_name.data(), tc_name.data(), time);
fprintf(file_stream_, " <error type='DTE'>%s</error>\n", dte_reason.data());
fprintf(file_stream_, " </testcase>\n");
break; }
default:
fprintf(file_stream_, " <testcase classname='%s' name='%s' time='%f'/>\n", module_name.data(), tc_name.data(), time);
break;
}
fflush(file_stream_);
}
void TestSuite::addTestCase(const TestCase& testcase) {
testcases.push_back(new TestCase(testcase));
all++;
switch(testcase.verdict) {
case TestCase::Fail: failed++; break;
case TestCase::None: skipped++; break;
case TestCase::Error: error++; break;
case TestCase::Inconc: inconc++; break;
default: break;
}
}
void TestSuite::write(FILE* file_stream_) {
double difftime_ = difftime(end_ts, start_ts);
fprintf(file_stream_, "<?xml version=\"1.0\"?>\n"
"<testsuite name='%s' tests='%d' failures='%d' errors='%d' skipped='%d' inconc='%d' time='%.2f'>\n",
ts_name.data(), all, failed, error, skipped, inconc, difftime_);
fflush(file_stream_);
for (TestCases::const_iterator it = testcases.begin(); it != testcases.end(); ++it) {
(*it)->writeTestCase(file_stream_);
}
fprintf(file_stream_, "</testsuite>\n");
fflush(file_stream_);
}
void TestCase::setTCVerdict(const TitanLoggerApi::TitanLogEvent& event){
TitanLoggerApi::Verdict tc_verdict = event.logEvent().choice().testcaseOp().choice().testcaseFinished().verdict();
switch (tc_verdict) {
case TitanLoggerApi::Verdict::UNBOUND_VALUE:
case TitanLoggerApi::Verdict::UNKNOWN_VALUE:
// should not happen
break;
case TitanLoggerApi::Verdict::v0none:
verdict = TestCase::None;
break;
case TitanLoggerApi::Verdict::v1pass:
verdict = TestCase::Pass;
break;
case TitanLoggerApi::Verdict::v2inconc:
verdict = TestCase::Inconc;
break;
case TitanLoggerApi::Verdict::v3fail: {
verdict = TestCase::Fail;
addStackTrace(event);
break; }
case TitanLoggerApi::Verdict::v4error:
verdict = TestCase::Error;
break;
}
}
void TestCase::addStackTrace(const TitanLoggerApi::TitanLogEvent& event){
// Add a stack trace
const TitanLoggerApi::TitanLogEvent_sourceInfo__list& stack = event.sourceInfo__list();
int stack_depth = stack.size_of();
for (int i=0; i < stack_depth; ++i) {
const TitanLoggerApi::LocationInfo& location = stack[i];
stack_trace += " ";
stack_trace += location.filename();
stack_trace += ":";
stack_trace += int2str(location.line());
stack_trace += " ";
stack_trace += location.ent__name();
stack_trace += " ";
// print the location type
switch (location.ent__type()) {
case TitanLoggerApi::LocationInfo_ent__type:: UNKNOWN_VALUE:
case TitanLoggerApi::LocationInfo_ent__type:: UNBOUND_VALUE:
// can't happen
break;
case TitanLoggerApi::LocationInfo_ent__type::unknown:
// do nothing
break;
case TitanLoggerApi::LocationInfo_ent__type::controlpart:
stack_trace += "control part";
break;
case TitanLoggerApi::LocationInfo_ent__type::testcase__:
stack_trace += "testcase";
break;
case TitanLoggerApi::LocationInfo_ent__type::altstep__:
stack_trace += "altstep";
break;
case TitanLoggerApi::LocationInfo_ent__type::function__:
stack_trace += "function";
break;
case TitanLoggerApi::LocationInfo_ent__type::external__function:
stack_trace += "external function";
break;
case TitanLoggerApi::LocationInfo_ent__type::template__:
stack_trace += "template";
break;
}
if(i<stack_depth-1) stack_trace += "\n";
}
}
|