summaryrefslogtreecommitdiff
path: root/src/lc-compliance/results.cpp
blob: f149f7859e286b8fa8f519eca62002ef5cf06fd9 (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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2020, Google Inc.
 *
 * results.cpp - Test result aggregator
 */

#include "results.h"

#include <iostream>

void Results::add(const Result &result)
{
	if (result.first == Pass)
		passed_++;
	else if (result.first == Fail)
		failed_++;
	else if (result.first == Skip)
		skipped_++;

	printResult(result);
}

void Results::add(Status status, const std::string &message)
{
	add({ status, message });
}

void Results::fail(const std::string &message)
{
	add(Fail, message);
}

void Results::pass(const std::string &message)
{
	add(Pass, message);
}

void Results::skip(const std::string &message)
{
	add(Skip, message);
}

int Results::summary() const
{
	if (failed_ + passed_ + skipped_ != planned_) {
		std::cout << "Planned and executed number of tests differ "
			  << failed_ + passed_ + skipped_ << " executed "
			  << planned_ << " planned" << std::endl;

		return -EINVAL;
	}

	std::cout << planned_ << " tests executed, "
		  << passed_ << " tests passed, "
		  << skipped_ << " tests skipped and "
		  << failed_ << " tests failed " << std::endl;

	return 0;
}

void Results::printResult(const Result &result)
{
	std::string prefix;

	/* \todo Make parsable as TAP. */
	if (result.first == Pass)
		prefix = "PASS";
	else if (result.first == Fail)
		prefix = "FAIL";
	else if (result.first == Skip)
		prefix = "SKIP";

	std::cout << "- " << prefix << ": " << result.second << std::endl;
}