aboutsummaryrefslogtreecommitdiffstats
path: root/test/testbench.cpp
blob: eb09a82d2fba1d585ee9d94c7b77a3824c0ef84d (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
/* ----------------------------------------------------------------------------
 * testbench.cpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
 * See file LICENSE for more details
 * ----------------------------------------------------------------------------
 */

#include "testbench.hpp"

#include <algorithm>
#include <stdexcept>

void TestBench::startTest(const std::string &test_name)
{
	incrementer++;

	Test test(test_name, false);

	tests_.push_back(test);
}

void TestBench::endTest(bool pass)
{
	incrementer--;

	if(incrementer!=0)
		throw std::runtime_error("Start and End don't match");

	if(pass) 
		passed++;
	else 
		failed++;

	tests_[passed+failed-1].passed=pass;
}

void TestBench::printResults()
{
	std::sort(tests_.begin(), tests_.end(), [] (const Test &a, const Test &b) {
			if(a.name<b.name)
				return true;
			return false;
		});
	
	printf("Results:\n");
	printf("+---------------------------+---------+\n");
	printf("| Test Name                 | Result  |\n");
	printf("+---------------------------+---------+\n");
	for(auto test : tests_)
	{
		std::string result;
		if(test.passed)
			result="PASS";
		else
			result="FAIL";

		char test_name[25];
		
		for(std::size_t i=0; i<25; ++i)
		{
			if(i<test.name.size())
				test_name[i]=test.name[i];
			else
				test_name[i]=' ';
		}
		
		printf("| %25.25s | %6s  |\n", test_name, result.c_str());
	}
	printf("+---------------------------+---------+\n");
	printf("\nSummary:\n");
	printf("+--------+--------+\n");
	printf("| Passed | %6d |\n", passed);
	printf("| Failed | %6d |\n", failed);
	printf("| Ratio  | %5.1f%% |\n", (float)passed/(float)(failed+passed) * 100.f);
	printf("+--------+--------+\n");
}