-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxf_simple_test.h
160 lines (123 loc) · 4.49 KB
/
xf_simple_test.h
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
/*
A simple C++ testing framework
version 1.0.1
https://github.com/xf-bnb/SimpleTest
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
SPDX - License - Identifier : MIT
Copyright(c) 2019 Frank Xiong <https://github.com/xf-bnb>.
*/
#pragma once
#include <map>
#include <vector>
#include <chrono>
#include <functional>
#include <iostream>
namespace xf::test
{
inline const char* version() { return "1.0.1"; }
class TestInfo final
{
private:
using _func_type = std::function<void(const std::string&)>;
using _func_map_t = std::map<std::string, _func_type>;
_func_map_t _FuncMap;
std::pair<unsigned int, unsigned int> _result{ 0, 0 };
TestInfo() = default;
TestInfo(const TestInfo&) = delete;
TestInfo& operator = (const TestInfo&) = delete;
bool _run(const std::string& name, const _func_type& f) const
{
f(name);
return true;
}
public:
auto Size() const { return _FuncMap.size(); }
const auto& Result() const { return _result; }
unsigned int Run() const
{
for (const auto& [name, func] : _FuncMap)
_run(name, func);
return (unsigned int)(_FuncMap.size());
}
bool Run(const std::string& key) const
{
if (auto iter = _FuncMap.find(key); iter != _FuncMap.end())
{
_run(iter->first, iter->second);
return true;
}
return false;
}
unsigned int Run(const std::vector<std::string>& keys)
{
unsigned int n(0);
for (const auto& key : keys)
{
if (auto iter = _FuncMap.find(key); iter != _FuncMap.end())
{
_run(iter->first, iter->second);
++n;
}
}
return n;
}
bool Add(const std::string& key, _func_type func)
{
auto iter = _FuncMap.emplace(key, func);
return iter.second;
}
void Counting(bool value)
{
if (value) ++_result.first; else ++_result.second;
}
static TestInfo& Instance()
{
static TestInfo _Inst_;
return (_Inst_);
}
}; // class TestInfo
inline void Show(std::size_t n, std::size_t success, std::size_t failed, std::uint64_t ms)
{
std::cout << std::endl;
std::cout << "==> Ran " << (success + failed) << " tests from " << n << " test case: "
<< success << " successes, " << failed << " failures, spend " << ms << " ms." << std::endl;
std::cout << "==> Test Result: " << (0 == failed ? "SUCCESS." : "FAIL.") << std::endl << std::endl;
}
inline bool Assert(bool result, const std::string& name, const std::string& file, unsigned int line)
{
TestInfo::Instance().Counting(result);
if (!result)
{
std::cout << "--> test failed in " << name << ":" << std::endl;
std::cout << "at " << file << ":" << line << std::endl << std::endl;
}
return result;
}
template<typename _FuncType>
unsigned int _test(_FuncType func)
{
auto t1 = std::chrono::system_clock::now();
unsigned int n = func();
auto t2 = std::chrono::system_clock::now();
const auto& [success, failed] = TestInfo::Instance().Result();
Show(n, success, failed, std::chrono::duration_cast<std::chrono::milliseconds>(t2 - t1).count());
return failed;
}
inline unsigned int Test()
{
return _test([]() { return TestInfo::Instance().Run(); });
}
inline unsigned int Test(const std::vector<std::string>& names)
{
return _test([&names]() { return TestInfo::Instance().Run(names); });
}
} // namespace xf::test
#define _xfConcatenateName(a, b) a##b
#define _xfDeclareTestFunc(key) void _xfConcatenateName(_test_function_name_, key)(const std::string& name)
#define _xfAddTest(key, func) xf::test::TestInfo::Instance().Add(key, func)
#define _xfTest(key) _xfDeclareTestFunc(key); \
auto _xfConcatenateName(_test_variable_name_, key) = \
_xfAddTest(#key, _xfConcatenateName(_test_function_name_, key)); \
_xfDeclareTestFunc(key)
#define _xfExpect(expr) xf::test::Assert(expr, name, __FILE__, __LINE__)
#define _xfAssert(expr) if (!xf::test::Assert(expr, name, __FILE__, __LINE__)) return