aboutsummaryrefslogtreecommitdiffstats
path: root/libsummarylogger/SummaryLogger.cc
blob: 9cadb55aa614d212135f0fd64b30c6cd74640538 (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
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
/******************************************************************************
 * Copyright (c) 2018 sysmocom - s.f.m.c. GmbH
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Neels Hofmeyr
 *
 ******************************************************************************/
#include "SummaryLogger.hh"

#include <unistd.h>
#include <sys/types.h>

#include <sys/time.h>

extern "C" {
	ILoggerPlugin *create_plugin() { return new SummaryLogger(); }
	void destroy_plugin(ILoggerPlugin *plugin) { delete plugin; }
}


TestCase::TestCase()
{
	reset();
}

void TestCase::reset()
{
	verdict = Unbound;
	expected_verdict = Skipped;
	tc_name = "";
	module_name = "";
}

TestSuite::~TestSuite()
{
	for (TestCases::const_iterator it = testcases.begin(); it != testcases.end(); ++it) {
		delete (*it);
	}
}

SummaryLogger::SummaryLogger()
	: filename_stem_(NULL), testsuite_name_(mcopystr("Titan")), out_filename_(NULL), file_stream_(NULL)
{
	major_version_ = 1;
	minor_version_ = 0;
	name_ = mcopystr("SummaryLogger");
	help_ = mcopystr("SummaryLogger writes a brief summary, keeping track of expected-to-fail items");
}

SummaryLogger::~SummaryLogger()
{
	close_file();

	Free(name_);
	Free(help_);
	Free(out_filename_);
	Free(testsuite_name_);
	Free(filename_stem_);
	name_ = help_ = out_filename_ = filename_stem_ = NULL;
	file_stream_ = NULL;
}

void SummaryLogger::init(const char *)
{
	fprintf(stderr, "Initializing `%s' (v%u.%u): %s\n", name_, major_version_, minor_version_, help_);
}

void SummaryLogger::fini()
{
}

void SummaryLogger::set_parameter(const char *parameter_name, const char *parameter_value)
{
	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 (filename_stem_ != NULL)
			Free(testsuite_name_);
		testsuite_name_ = mcopystr(parameter_value);
	} else {
		fprintf(stderr, "Unsupported parameter: `%s' with value: `%s'\n",
			parameter_name, parameter_value);
	}
}

void SummaryLogger::open_file(bool is_first) {
	if (is_first) {
		if (filename_stem_ == NULL) {
			filename_stem_ = mcopystr("summary");
		}
	}

	if (file_stream_ != NULL)
		return;

	if (!TTCN_Runtime::is_single() && !TTCN_Runtime::is_mtc())
		return; // don't bother, only MTC has testcases

	out_filename_ = mprintf("%s-%lu.log", filename_stem_, (unsigned long)getpid());

	file_stream_ = fopen(out_filename_, "w");
	if (!file_stream_) {
		fprintf(stderr, "%s was unable to open log file `%s', reinitialization "
			"may help\n", plugin_name(), out_filename_);
		return;
	}

	is_configured_ = true;
	testsuite.ts_name = testsuite_name_;
}

void SummaryLogger::close_file() {
	if (file_stream_ != NULL) {
		testsuite.write(file_stream_);
		fclose(file_stream_);
		file_stream_ = NULL;
	}
	if (out_filename_) {
		Free(out_filename_);
		out_filename_ = NULL;
	}
}

void SummaryLogger::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.verdict = TestCase::Unbound;
				break;

			case TitanLoggerApi::TestcaseEvent_choice::ALT_testcaseFinished:
				{
					const TitanLoggerApi::TestcaseType& tct = tcev.testcaseFinished();
					testcase.module_name = tct.name().module__name();

					testcase.setTCVerdict(event);
					testsuite.addTestCase(testcase);
					testcase.reset();
					break;
				}

			case TitanLoggerApi::TestcaseEvent_choice::UNBOUND_VALUE:
				testcase.verdict = TestCase::Unbound;
				break;
			}

			break;
		}

	default:
		break;
	}

	fflush(file_stream_);
}

void TestCase::writeTestCase(FILE* file_stream_) const{
	fprintf(file_stream_, "%s.%s: %s\n", module_name.data(), tc_name.data(), verdict);
	fflush(file_stream_);
}

void TestSuite::addTestCase(const TestCase& testcase) {
	testcases.push_back(new TestCase(testcase));
	all++;

	if (testcase.verdict == TestCase::Fail) failed++;
	else if (testcase.verdict == TestCase::Skipped) skipped++;
	else if (testcase.verdict == TestCase::Error) error++;
	else if (testcase.verdict == TestCase::Inconc) inconc++;
}

void TestSuite::write(FILE* file_stream_) {
	for (TestCases::const_iterator it = testcases.begin(); it != testcases.end(); ++it) {
		(*it)->writeTestCase(file_stream_);
	}
	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:
		verdict = TestCase::Unbound;
		break;

	case TitanLoggerApi::Verdict::v0none:
		verdict = TestCase::Skipped;
		break;

	case TitanLoggerApi::Verdict::v1pass:
		verdict = TestCase::Pass;
		break;

	case TitanLoggerApi::Verdict::v2inconc:
		verdict = TestCase::Inconc;
		break;

	case TitanLoggerApi::Verdict::v3fail:
		verdict = TestCase::Fail;
		break;

	case TitanLoggerApi::Verdict::v4error:
		verdict = TestCase::Error;
		break;
	}
}