2016-08-28 19:24:16 +00:00
|
|
|
#ifndef TEST_OUTPUT_TEST_H
|
|
|
|
#define TEST_OUTPUT_TEST_H
|
|
|
|
|
|
|
|
#undef NDEBUG
|
|
|
|
#include <initializer_list>
|
|
|
|
#include <memory>
|
2016-10-07 18:04:50 +00:00
|
|
|
#include <string>
|
2016-08-28 19:24:16 +00:00
|
|
|
#include <utility>
|
2016-10-07 18:04:50 +00:00
|
|
|
#include <vector>
|
2017-04-29 19:24:26 +00:00
|
|
|
#include <functional>
|
2017-04-29 19:31:44 +00:00
|
|
|
#include <sstream>
|
2016-10-07 18:04:50 +00:00
|
|
|
|
|
|
|
#include "../src/re.h"
|
|
|
|
#include "benchmark/benchmark.h"
|
2016-08-28 19:24:16 +00:00
|
|
|
|
|
|
|
#define CONCAT2(x, y) x##y
|
|
|
|
#define CONCAT(x, y) CONCAT2(x, y)
|
|
|
|
|
2016-10-07 18:04:50 +00:00
|
|
|
#define ADD_CASES(...) int CONCAT(dummy, __LINE__) = ::AddCases(__VA_ARGS__)
|
2016-08-28 19:24:16 +00:00
|
|
|
|
|
|
|
#define SET_SUBSTITUTIONS(...) \
|
2016-10-07 18:04:50 +00:00
|
|
|
int CONCAT(dummy, __LINE__) = ::SetSubstitutions(__VA_ARGS__)
|
2016-08-28 19:24:16 +00:00
|
|
|
|
|
|
|
enum MatchRules {
|
2016-10-07 18:04:50 +00:00
|
|
|
MR_Default, // Skip non-matching lines until a match is found.
|
|
|
|
MR_Next, // Match must occur on the next line.
|
|
|
|
MR_Not // No line between the current position and the next match matches
|
|
|
|
// the regex
|
2016-08-28 19:24:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct TestCase {
|
|
|
|
TestCase(std::string re, int rule = MR_Default);
|
|
|
|
|
|
|
|
std::string regex_str;
|
|
|
|
int match_rule;
|
|
|
|
std::string substituted_regex;
|
|
|
|
std::shared_ptr<benchmark::Regex> regex;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum TestCaseID {
|
|
|
|
TC_ConsoleOut,
|
|
|
|
TC_ConsoleErr,
|
|
|
|
TC_JSONOut,
|
|
|
|
TC_JSONErr,
|
|
|
|
TC_CSVOut,
|
|
|
|
TC_CSVErr,
|
|
|
|
|
2016-10-07 18:04:50 +00:00
|
|
|
TC_NumID // PRIVATE
|
2016-08-28 19:24:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Add a list of test cases to be run against the output specified by
|
|
|
|
// 'ID'
|
|
|
|
int AddCases(TestCaseID ID, std::initializer_list<TestCase> il);
|
|
|
|
|
|
|
|
// Add or set a list of substitutions to be performed on constructed regex's
|
|
|
|
// See 'output_test_helper.cc' for a list of default substitutions.
|
|
|
|
int SetSubstitutions(
|
|
|
|
std::initializer_list<std::pair<std::string, std::string>> il);
|
|
|
|
|
|
|
|
// Run all output tests.
|
|
|
|
void RunOutputTests(int argc, char* argv[]);
|
|
|
|
|
2017-04-28 14:02:27 +00:00
|
|
|
// ========================================================================= //
|
|
|
|
// ------------------------- Results checking ------------------------------ //
|
|
|
|
// ========================================================================= //
|
|
|
|
|
2017-04-29 19:01:18 +00:00
|
|
|
struct Results;
|
|
|
|
typedef std::function< void(Results const&) > ResultsCheckFn;
|
2017-04-28 14:02:27 +00:00
|
|
|
|
2017-04-29 18:40:39 +00:00
|
|
|
// Add a function to check the (CSV) results of a benchmark. These
|
|
|
|
// functions will be called only after the output was successfully
|
|
|
|
// checked.
|
2017-04-29 19:01:18 +00:00
|
|
|
// bm_name_pattern: a name or a regex which will be matched agains
|
|
|
|
// all the benchmark names. Matching benchmarks
|
|
|
|
// will be the subject of a call to fn
|
|
|
|
size_t AddChecker(const char* bm_name_pattern, ResultsCheckFn fn);
|
|
|
|
|
|
|
|
// Class to hold the (CSV!) results of a benchmark.
|
|
|
|
// It is passed in calls to checker functions.
|
|
|
|
struct Results {
|
|
|
|
std::string name; // the benchmark name
|
2017-04-28 14:02:27 +00:00
|
|
|
std::map< std::string, std::string > values;
|
2017-04-29 18:02:07 +00:00
|
|
|
|
2017-04-29 19:01:18 +00:00
|
|
|
Results(const std::string& n) : name(n) {}
|
2017-04-28 14:02:27 +00:00
|
|
|
|
2017-04-29 18:40:39 +00:00
|
|
|
int NumThreads() const;
|
2017-04-28 19:43:44 +00:00
|
|
|
|
|
|
|
// get the real_time duration of the benchmark in seconds
|
|
|
|
double DurationRealTime() const {
|
|
|
|
return GetAs< double >("iterations") * GetTime("real_time");
|
|
|
|
}
|
|
|
|
// get the cpu_time duration of the benchmark in seconds
|
|
|
|
double DurationCPUTime() const {
|
|
|
|
return GetAs< double >("iterations") * GetTime("cpu_time");
|
|
|
|
}
|
2017-04-28 14:02:27 +00:00
|
|
|
|
|
|
|
// get the string for a result by name, or nullptr if the name
|
|
|
|
// is not found
|
2017-04-28 19:42:28 +00:00
|
|
|
const std::string* Get(const char* entry_name) const {
|
2017-04-28 14:02:27 +00:00
|
|
|
auto it = values.find(entry_name);
|
|
|
|
if(it == values.end()) return nullptr;
|
|
|
|
return &it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get a result by name, parsed as a specific type.
|
2017-04-29 19:01:18 +00:00
|
|
|
// NOTE: for counters, use GetCounterAs instead.
|
|
|
|
template <class T>
|
|
|
|
T GetAs(const char* entry_name) const;
|
2017-04-28 14:02:27 +00:00
|
|
|
|
|
|
|
// counters are written as doubles, so they have to be read first
|
|
|
|
// as a double, and only then converted to the asked type.
|
2017-04-29 19:01:18 +00:00
|
|
|
template <class T>
|
|
|
|
T GetCounterAs(const char* entry_name) const {
|
2017-04-28 14:02:27 +00:00
|
|
|
double dval = GetAs< double >(entry_name);
|
|
|
|
T tval = static_cast< T >(dval);
|
|
|
|
return tval;
|
|
|
|
}
|
2017-04-28 19:43:44 +00:00
|
|
|
|
|
|
|
// get cpu_time or real_time in seconds
|
2017-04-29 18:40:39 +00:00
|
|
|
double GetTime(const char* which) const;
|
2017-04-28 14:02:27 +00:00
|
|
|
};
|
|
|
|
|
2017-04-29 19:01:18 +00:00
|
|
|
template <class T>
|
|
|
|
T Results::GetAs(const char* entry_name) const {
|
|
|
|
auto *sv = Get(entry_name);
|
|
|
|
CHECK(sv != nullptr && !sv->empty());
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << *sv;
|
|
|
|
T out;
|
|
|
|
ss >> out;
|
|
|
|
CHECK(!ss.fail());
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2017-04-29 17:26:30 +00:00
|
|
|
//----------------------------------
|
|
|
|
// Macros to help in result checking. Do not use them with arguments causing
|
|
|
|
// side-effects.
|
|
|
|
|
|
|
|
#define _CHECK_RESULT_VALUE(entry, getfn, var_type, var_name, relationship, value) \
|
|
|
|
CONCAT(CHECK_, relationship) \
|
|
|
|
(entry.getfn< var_type >(var_name), (value)) << "\n" \
|
|
|
|
<< __FILE__ << ":" << __LINE__ << ": " << (entry).name << ":\n" \
|
|
|
|
<< __FILE__ << ":" << __LINE__ << ": " \
|
|
|
|
<< "expected (" << #var_type << ")" << (var_name) \
|
|
|
|
<< "=" << (entry).getfn< var_type >(var_name) \
|
|
|
|
<< " to be " #relationship " to " << (value) << "\n"
|
|
|
|
|
2017-05-01 20:48:13 +00:00
|
|
|
// check with tolerance. eps_factor is the tolerance window, which is
|
|
|
|
// interpreted relative to value (eg, 0.1 means 10% of value).
|
|
|
|
#define _CHECK_FLOAT_RESULT_VALUE(entry, getfn, var_type, var_name, relationship, value, eps_factor) \
|
|
|
|
CONCAT(CHECK_FLOAT_, relationship) \
|
2017-04-29 17:26:30 +00:00
|
|
|
(entry.getfn< var_type >(var_name), (value), (eps_factor) * (value)) << "\n" \
|
|
|
|
<< __FILE__ << ":" << __LINE__ << ": " << (entry).name << ":\n" \
|
|
|
|
<< __FILE__ << ":" << __LINE__ << ": " \
|
|
|
|
<< "expected (" << #var_type << ")" << (var_name) \
|
|
|
|
<< "=" << (entry).getfn< var_type >(var_name) \
|
|
|
|
<< " to be " #relationship " to " << (value) << "\n" \
|
|
|
|
<< __FILE__ << ":" << __LINE__ << ": " \
|
|
|
|
<< "with tolerance of " << (eps_factor) * (value) \
|
|
|
|
<< " (" << (eps_factor)*100. << "%), " \
|
|
|
|
<< "but delta was " << ((entry).getfn< var_type >(var_name) - (value)) \
|
|
|
|
<< " (" << (((entry).getfn< var_type >(var_name) - (value)) \
|
|
|
|
/ \
|
|
|
|
((value) > 1.e-5 || value < -1.e-5 ? value : 1.e-5)*100.) \
|
|
|
|
<< "%)"
|
|
|
|
|
|
|
|
#define CHECK_RESULT_VALUE(entry, var_type, var_name, relationship, value) \
|
|
|
|
_CHECK_RESULT_VALUE(entry, GetAs, var_type, var_name, relationship, value)
|
|
|
|
|
|
|
|
#define CHECK_COUNTER_VALUE(entry, var_type, var_name, relationship, value) \
|
|
|
|
_CHECK_RESULT_VALUE(entry, GetCounterAs, var_type, var_name, relationship, value)
|
|
|
|
|
2017-05-01 20:48:13 +00:00
|
|
|
#define CHECK_FLOAT_RESULT_VALUE(entry, var_name, relationship, value, eps_factor) \
|
|
|
|
_CHECK_FLOAT_RESULT_VALUE(entry, GetAs, double, var_name, relationship, value, eps_factor)
|
2017-04-29 17:26:30 +00:00
|
|
|
|
2017-05-01 20:48:13 +00:00
|
|
|
#define CHECK_FLOAT_COUNTER_VALUE(entry, var_name, relationship, value, eps_factor) \
|
|
|
|
_CHECK_FLOAT_RESULT_VALUE(entry, GetCounterAs, double, var_name, relationship, value, eps_factor)
|
2017-04-29 17:26:30 +00:00
|
|
|
|
2017-04-28 14:02:27 +00:00
|
|
|
#define CHECK_BENCHMARK_RESULTS(bm_name, checker_function) \
|
|
|
|
size_t CONCAT(dummy, __LINE__) = AddChecker(bm_name, checker_function)
|
|
|
|
|
2016-08-28 19:24:16 +00:00
|
|
|
// ========================================================================= //
|
|
|
|
// --------------------------- Misc Utilities ------------------------------ //
|
|
|
|
// ========================================================================= //
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
const char* const dec_re = "[0-9]*[.]?[0-9]+([eE][-+][0-9]+)?";
|
|
|
|
|
2016-10-07 18:04:50 +00:00
|
|
|
} // end namespace
|
2016-08-28 19:24:16 +00:00
|
|
|
|
2016-10-07 18:04:50 +00:00
|
|
|
#endif // TEST_OUTPUT_TEST_H
|