blob: 4eedaa302697b929ead314281bb1d2324703f929 (
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
|
/*
* Copyright (C) 2018-2019 Codership Oy <info@codership.com>
*
* This file is part of wsrep-lib.
*
* Wsrep-lib is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Wsrep-lib is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with wsrep-lib. If not, see <https://www.gnu.org/licenses/>.
*/
/** @file wsrep-lib_test.cpp
*
* Run wsrep-lib unit tests.
*
* Commandline arguments:
*
* --wsrep-log-file=<file> Write log from wsrep-lib logging facility
* into <file>. If <file> is left empty, the
* log is written into stdout.
* --wsrep-debug-level=<int> Set debug level
* See wsrep::log::debug_level for valid values
*/
#include "wsrep/logger.hpp"
#include <fstream>
#define BOOST_TEST_ALTERNATIVE_INIT_API
#include <boost/test/included/unit_test.hpp>
// Log file to write messages logged via wsrep-lib logging facility.
static std::string log_file_name("wsrep-lib_test.log");
static std::ofstream log_file;
// Debug log level for wsrep-lib logging
static std::string debug_log_level;
static void log_fn(wsrep::log::level level,
const char* pfx,
const char* msg)
{
log_file << wsrep::log::to_c_string(level) << " " << pfx << msg << std::endl;
}
static bool parse_arg(const std::string& arg)
{
const std::string delim("=");
auto delim_pos(arg.find(delim));
const auto parm(arg.substr(0, delim_pos));
std::string val;
if (delim_pos != std::string::npos)
{
val = arg.substr(delim_pos + 1);
}
if (parm == "--wsrep-log-file")
{
log_file_name = val;
}
else if (parm == "--wsrep-debug-level")
{
debug_log_level = val;
}
else
{
std::cerr << "Error: Unknown argument " << arg << std::endl;
return false;
}
return true;
}
static bool setup_env(int argc, char* argv[])
{
for (int i(1); i < argc; ++i)
{
if (parse_arg(argv[i]) == false)
{
return false;
}
}
if (log_file_name.size())
{
log_file.open(log_file_name);
if (!log_file)
{
int err(errno);
std::cerr << "Failed to open '" << log_file_name
<< "': '" << ::strerror(err) << "'" << std::endl;
return false;
}
std::cout << "Writing wsrep-lib log into '" << log_file_name << "'"
<< std::endl;
wsrep::log::logger_fn(log_fn);
}
if (debug_log_level.size())
{
int level = std::stoi(debug_log_level);
std::cout << "Setting debug level '" << level << "'" << std::endl;
wsrep::log::debug_log_level(level);
}
return true;
}
bool init_unit_test()
{
return setup_env(boost::unit_test::framework::master_test_suite().argc,
boost::unit_test::framework::master_test_suite().argv);
}
|