Branch data Line data Source code
1 : : // Copyright (c) 2011-present The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <clientversion.h>
6 : : #include <common/signmessage.h> // For MessageSign(), MessageVerify(), MESSAGE_MAGIC
7 : : #include <hash.h> // For Hash()
8 : : #include <key.h> // For CKey
9 : : #include <script/parsing.h>
10 : : #include <span.h>
11 : : #include <sync.h>
12 : : #include <test/util/random.h>
13 : : #include <test/util/setup_common.h>
14 : : #include <uint256.h>
15 : : #include <util/bitdeque.h>
16 : : #include <util/byte_units.h>
17 : : #include <util/fs.h>
18 : : #include <util/fs_helpers.h>
19 : : #include <util/moneystr.h>
20 : : #include <util/overflow.h>
21 : : #include <util/readwritefile.h>
22 : : #include <util/strencodings.h>
23 : : #include <util/string.h>
24 : : #include <util/time.h>
25 : : #include <util/vector.h>
26 : :
27 : : #include <array>
28 : : #include <cmath>
29 : : #include <fstream>
30 : : #include <limits>
31 : : #include <map>
32 : : #include <optional>
33 : : #include <stdint.h>
34 : : #include <string.h>
35 : : #include <thread>
36 : : #include <univalue.h>
37 : : #include <utility>
38 : : #include <vector>
39 : :
40 : : #include <sys/types.h>
41 : :
42 : : #ifndef WIN32
43 : : #include <signal.h>
44 : : #include <sys/wait.h>
45 : : #endif
46 : :
47 : : #include <boost/test/unit_test.hpp>
48 : :
49 : : using namespace std::literals;
50 : : using namespace util::hex_literals;
51 : : using util::ConstevalHexDigit;
52 : : using util::Join;
53 : : using util::RemovePrefix;
54 : : using util::RemovePrefixView;
55 : : using util::ReplaceAll;
56 : : using util::Split;
57 : : using util::SplitString;
58 : : using util::TrimString;
59 : : using util::TrimStringView;
60 : :
61 : : static const std::string STRING_WITH_EMBEDDED_NULL_CHAR{"1"s "\0" "1"s};
62 : :
63 : : /* defined in logging.cpp */
64 : : namespace BCLog {
65 : : std::string LogEscapeMessage(std::string_view str);
66 : : }
67 : :
68 : : BOOST_FIXTURE_TEST_SUITE(util_tests, BasicTestingSetup)
69 : :
70 : : namespace {
71 : : class NoCopyOrMove
72 : : {
73 : : public:
74 : : int i;
75 : 2 : explicit NoCopyOrMove(int i) : i{i} { }
76 : :
77 : : NoCopyOrMove() = delete;
78 : : NoCopyOrMove(const NoCopyOrMove&) = delete;
79 : : NoCopyOrMove(NoCopyOrMove&&) = delete;
80 : : NoCopyOrMove& operator=(const NoCopyOrMove&) = delete;
81 : : NoCopyOrMove& operator=(NoCopyOrMove&&) = delete;
82 : :
83 [ - + ]: 6 : operator bool() const { return i != 0; }
84 : :
85 : 2 : int get_ip1() { return i + 1; }
86 : 4 : bool test()
87 : : {
88 : : // Check that Assume can be used within a lambda and still call methods
89 : 4 : [&]() { Assume(get_ip1()); }();
90 : 4 : return Assume(get_ip1() != 5);
91 : : }
92 : : };
93 : : } // namespace
94 : :
95 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_check)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
96 : : {
97 : : // Check that Assert can forward
98 [ + - ]: 2 : const std::unique_ptr<int> p_two = Assert(std::make_unique<int>(2));
99 : : // Check that Assert works on lvalues and rvalues
100 [ + - + - ]: 2 : const int two = *Assert(p_two);
101 [ + - ]: 2 : Assert(two == 2);
102 [ + - ]: 2 : Assert(true);
103 : : // Check that Assume can be used as unary expression
104 : 2 : const bool result{Assume(two == 2)};
105 [ + - ]: 2 : Assert(result);
106 : :
107 : : // Check that Assert doesn't require copy/move
108 : 2 : NoCopyOrMove x{9};
109 [ + - ]: 2 : Assert(x).i += 3;
110 [ + - ]: 2 : Assert(x).test();
111 : :
112 : : // Check nested Asserts
113 [ + - + - : 2 : BOOST_CHECK_EQUAL(Assert((Assert(x).test() ? 3 : 0)), 3);
- + + - +
- ]
114 : :
115 : : // Check -Wdangling-gsl does not trigger when copying the int. (It would
116 : : // trigger on "const int&")
117 : 2 : const int nine{*Assert(std::optional<int>{9})};
118 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(9, nine);
119 : 2 : }
120 : :
121 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_criticalsection)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
122 : : {
123 : 2 : RecursiveMutex cs;
124 : :
125 : 4 : do {
126 : 2 : LOCK(cs);
127 [ + - ]: 2 : break;
128 : :
129 : : BOOST_ERROR("break was swallowed!");
130 : 2 : } while(0);
131 : :
132 : 2 : do {
133 : 2 : TRY_LOCK(cs, lockTest);
134 [ + - ]: 2 : if (lockTest) {
135 [ + - + - : 4 : BOOST_CHECK(true); // Needed to suppress "Test case [...] did not check any assertions"
+ - ]
136 [ + - ]: 2 : break;
137 : : }
138 : :
139 [ # # # # : 0 : BOOST_ERROR("break was swallowed!");
# # ]
140 : 2 : } while(0);
141 : 2 : }
142 : :
143 : : constexpr char HEX_PARSE_INPUT[] = "04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f";
144 : : constexpr uint8_t HEX_PARSE_OUTPUT[] = {
145 : : 0x04, 0x67, 0x8a, 0xfd, 0xb0, 0xfe, 0x55, 0x48, 0x27, 0x19, 0x67, 0xf1, 0xa6, 0x71, 0x30, 0xb7,
146 : : 0x10, 0x5c, 0xd6, 0xa8, 0x28, 0xe0, 0x39, 0x09, 0xa6, 0x79, 0x62, 0xe0, 0xea, 0x1f, 0x61, 0xde,
147 : : 0xb6, 0x49, 0xf6, 0xbc, 0x3f, 0x4c, 0xef, 0x38, 0xc4, 0xf3, 0x55, 0x04, 0xe5, 0x1e, 0xc1, 0x12,
148 : : 0xde, 0x5c, 0x38, 0x4d, 0xf7, 0xba, 0x0b, 0x8d, 0x57, 0x8a, 0x4c, 0x70, 0x2b, 0x6b, 0xf1, 0x1d,
149 : : 0x5f
150 : : };
151 : : static_assert((sizeof(HEX_PARSE_INPUT) - 1) == 2 * sizeof(HEX_PARSE_OUTPUT));
152 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(parse_hex)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
153 : : {
154 : 2 : std::vector<unsigned char> result;
155 : :
156 : : // Basic test vector
157 [ + - ]: 2 : std::vector<unsigned char> expected(std::begin(HEX_PARSE_OUTPUT), std::end(HEX_PARSE_OUTPUT));
158 : 2 : constexpr std::array<std::byte, 65> hex_literal_array{operator""_hex<util::detail::Hex(HEX_PARSE_INPUT)>()};
159 : 2 : auto hex_literal_span{MakeUCharSpan(hex_literal_array)};
160 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(hex_literal_span.begin(), hex_literal_span.end(), expected.begin(), expected.end());
+ - + - ]
161 : :
162 [ + - ]: 2 : const std::vector<std::byte> hex_literal_vector{operator""_hex_v<util::detail::Hex(HEX_PARSE_INPUT)>()};
163 : 2 : hex_literal_span = MakeUCharSpan(hex_literal_vector);
164 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(hex_literal_span.begin(), hex_literal_span.end(), expected.begin(), expected.end());
+ - + - ]
165 : :
166 : 2 : constexpr std::array<uint8_t, 65> hex_literal_array_uint8{operator""_hex_u8<util::detail::Hex(HEX_PARSE_INPUT)>()};
167 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(hex_literal_array_uint8.begin(), hex_literal_array_uint8.end(), expected.begin(), expected.end());
+ - + - ]
168 : :
169 [ + - ]: 4 : result = operator""_hex_v_u8<util::detail::Hex(HEX_PARSE_INPUT)>();
170 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
171 : :
172 [ + - ]: 4 : result = ParseHex(HEX_PARSE_INPUT);
173 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
174 : :
175 [ + - ]: 4 : result = TryParseHex<uint8_t>(HEX_PARSE_INPUT).value();
176 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
177 : :
178 : : // Spaces between bytes must be supported
179 [ + - ]: 2 : expected = {0x12, 0x34, 0x56, 0x78};
180 [ + - ]: 4 : result = ParseHex("12 34 56 78");
181 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
182 [ + - ]: 4 : result = TryParseHex<uint8_t>("12 34 56 78").value();
183 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
184 : :
185 : : // Leading space must be supported (used in BerkeleyEnvironment::Salvage)
186 [ + - ]: 2 : expected = {0x89, 0x34, 0x56, 0x78};
187 [ + - ]: 4 : result = ParseHex(" 89 34 56 78");
188 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
189 [ + - ]: 4 : result = TryParseHex<uint8_t>(" 89 34 56 78").value();
190 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
191 : :
192 : : // Mixed case and spaces are supported
193 [ + - ]: 2 : expected = {0xff, 0xaa};
194 [ + - ]: 4 : result = ParseHex(" Ff aA ");
195 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
196 [ + - ]: 4 : result = TryParseHex<uint8_t>(" Ff aA ").value();
197 [ + - + - : 4 : BOOST_CHECK_EQUAL_COLLECTIONS(result.begin(), result.end(), expected.begin(), expected.end());
+ - + - ]
198 : :
199 : : // Empty string is supported
200 : 2 : static_assert(""_hex.empty());
201 : 2 : static_assert(""_hex_u8.empty());
202 [ + - + - : 2 : BOOST_CHECK_EQUAL(""_hex_v.size(), 0);
+ - ]
203 [ + - + - : 2 : BOOST_CHECK_EQUAL(""_hex_v_u8.size(), 0);
+ - ]
204 [ + - + - : 2 : BOOST_CHECK_EQUAL(ParseHex("").size(), 0);
+ - ]
205 [ + - + - : 4 : BOOST_CHECK_EQUAL(TryParseHex<uint8_t>("").value().size(), 0);
+ - ]
206 : :
207 : : // Spaces between nibbles is treated as invalid
208 [ + - + - : 2 : BOOST_CHECK_EQUAL(ParseHex("AAF F").size(), 0);
+ - ]
209 [ + - + - : 4 : BOOST_CHECK(!TryParseHex("AAF F").has_value());
+ - + - ]
210 : :
211 : : // Embedded null is treated as invalid
212 [ + - ]: 2 : const std::string with_embedded_null{" 11 "s
213 : : " \0 "
214 : 2 : " 22 "s};
215 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(with_embedded_null.size(), 11);
216 [ + - + - : 2 : BOOST_CHECK_EQUAL(ParseHex(with_embedded_null).size(), 0);
+ - ]
217 [ + - + - : 4 : BOOST_CHECK(!TryParseHex(with_embedded_null).has_value());
+ - + - ]
218 : :
219 : : // Non-hex is treated as invalid
220 [ + - + - : 2 : BOOST_CHECK_EQUAL(ParseHex("1234 invalid 1234").size(), 0);
+ - ]
221 [ + - + - : 4 : BOOST_CHECK(!TryParseHex("1234 invalid 1234").has_value());
+ - + - ]
222 : :
223 : : // Truncated input is treated as invalid
224 [ + - + - : 2 : BOOST_CHECK_EQUAL(ParseHex("12 3").size(), 0);
+ - ]
225 [ + - + - : 4 : BOOST_CHECK(!TryParseHex("12 3").has_value());
+ - ]
226 : 2 : }
227 : :
228 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(consteval_hex_digit)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
229 : : {
230 [ + - ]: 2 : BOOST_CHECK_EQUAL(ConstevalHexDigit('0'), 0);
231 [ + - ]: 2 : BOOST_CHECK_EQUAL(ConstevalHexDigit('9'), 9);
232 [ + - ]: 2 : BOOST_CHECK_EQUAL(ConstevalHexDigit('a'), 0xa);
233 [ + - ]: 2 : BOOST_CHECK_EQUAL(ConstevalHexDigit('f'), 0xf);
234 : 2 : }
235 : :
236 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_HexStr)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
237 : : {
238 [ + - ]: 2 : BOOST_CHECK_EQUAL(HexStr(HEX_PARSE_OUTPUT), HEX_PARSE_INPUT);
239 [ + - ]: 2 : BOOST_CHECK_EQUAL(HexStr(Span{HEX_PARSE_OUTPUT}.last(0)), "");
240 [ + - ]: 2 : BOOST_CHECK_EQUAL(HexStr(Span{HEX_PARSE_OUTPUT}.first(0)), "");
241 : :
242 : 2 : {
243 : 2 : constexpr std::string_view out_exp{"04678afdb0"};
244 : 2 : constexpr std::span in_s{HEX_PARSE_OUTPUT, out_exp.size() / 2};
245 : 2 : const Span<const uint8_t> in_u{MakeUCharSpan(in_s)};
246 : 2 : const Span<const std::byte> in_b{MakeByteSpan(in_s)};
247 : :
248 [ + - ]: 2 : BOOST_CHECK_EQUAL(HexStr(in_u), out_exp);
249 [ + - ]: 2 : BOOST_CHECK_EQUAL(HexStr(in_s), out_exp);
250 [ + - ]: 2 : BOOST_CHECK_EQUAL(HexStr(in_b), out_exp);
251 : : }
252 : :
253 : 2 : {
254 : 2 : auto input = std::string();
255 [ + + ]: 514 : for (size_t i=0; i<256; ++i) {
256 [ + - ]: 512 : input.push_back(static_cast<char>(i));
257 : : }
258 : :
259 [ + - ]: 2 : auto hex = HexStr(input);
260 [ + - + - : 4 : BOOST_TEST_REQUIRE(hex.size() == 512);
+ - ]
261 : 2 : static constexpr auto hexmap = std::string_view("0123456789abcdef");
262 [ + + ]: 514 : for (size_t i = 0; i < 256; ++i) {
263 [ + - ]: 512 : auto upper = hexmap.find(hex[i * 2]);
264 [ + - ]: 512 : auto lower = hexmap.find(hex[i * 2 + 1]);
265 [ + - + - : 1024 : BOOST_TEST_REQUIRE(upper != std::string_view::npos);
+ - + - ]
266 [ + - + - : 1024 : BOOST_TEST_REQUIRE(lower != std::string_view::npos);
+ - + - ]
267 [ + - + - : 1024 : BOOST_TEST_REQUIRE(i == upper*16 + lower);
+ - ]
268 : : }
269 : 2 : }
270 : 2 : }
271 : :
272 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(span_write_bytes)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
273 : : {
274 : 2 : std::array mut_arr{uint8_t{0xaa}, uint8_t{0xbb}};
275 : 2 : const auto mut_bytes{MakeWritableByteSpan(mut_arr)};
276 : 2 : mut_bytes[1] = std::byte{0x11};
277 [ + - ]: 2 : BOOST_CHECK_EQUAL(mut_arr.at(0), 0xaa);
278 [ + - ]: 2 : BOOST_CHECK_EQUAL(mut_arr.at(1), 0x11);
279 : 2 : }
280 : :
281 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_Join)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
282 : : {
283 : : // Normal version
284 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(Join(std::vector<std::string>{}, ", "), "");
285 [ + - + + : 6 : BOOST_CHECK_EQUAL(Join(std::vector<std::string>{"foo"}, ", "), "foo");
+ - + - +
- + + - -
- - ]
286 [ + - + + : 10 : BOOST_CHECK_EQUAL(Join(std::vector<std::string>{"foo", "bar"}, ", "), "foo, bar");
+ - + - +
- + + - -
- - ]
287 : :
288 : : // Version with unary operator
289 : 8 : const auto op_upper = [](const std::string& s) { return ToUpper(s); };
290 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(Join(std::list<std::string>{}, ", ", op_upper), "");
291 [ + - + + : 6 : BOOST_CHECK_EQUAL(Join(std::list<std::string>{"foo"}, ", ", op_upper), "FOO");
+ - + - +
- + + - -
- - ]
292 [ + - + + : 10 : BOOST_CHECK_EQUAL(Join(std::list<std::string>{"foo", "bar"}, ", ", op_upper), "FOO, BAR");
+ - + - +
- + + - -
- - ]
293 : 2 : }
294 : :
295 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_ReplaceAll)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
296 : : {
297 : 2 : const std::string original("A test \"%s\" string '%s'.");
298 : 12 : auto test_replaceall = [&original](const std::string& search, const std::string& substitute, const std::string& expected) {
299 : 10 : auto test = original;
300 [ + - ]: 10 : ReplaceAll(test, search, substitute);
301 [ + - + - ]: 10 : BOOST_CHECK_EQUAL(test, expected);
302 : 12 : };
303 : :
304 [ + - + - : 4 : test_replaceall("", "foo", original);
+ - ]
305 [ + - + - : 4 : test_replaceall(original, "foo", "foo");
+ - ]
306 [ + - + - : 4 : test_replaceall("%s", "foo", "A test \"foo\" string 'foo'.");
+ - + - ]
307 [ + - + - : 4 : test_replaceall("\"", "foo", "A test foo%sfoo string '%s'.");
+ - + - ]
308 [ + - + - : 4 : test_replaceall("'", "foo", "A test \"%s\" string foo%sfoo.");
+ - + - ]
309 : 2 : }
310 : :
311 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_TrimString)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
312 : : {
313 [ + - ]: 2 : BOOST_CHECK_EQUAL(TrimString(" foo bar "), "foo bar");
314 [ + - ]: 2 : BOOST_CHECK_EQUAL(TrimStringView("\t \n \n \f\n\r\t\v\tfoo \n \f\n\r\t\v\tbar\t \n \f\n\r\t\v\t\n "), "foo \n \f\n\r\t\v\tbar");
315 [ + - ]: 2 : BOOST_CHECK_EQUAL(TrimString("\t \n foo \n\tbar\t \n "), "foo \n\tbar");
316 [ + - ]: 2 : BOOST_CHECK_EQUAL(TrimStringView("\t \n foo \n\tbar\t \n ", "fobar"), "\t \n foo \n\tbar\t \n ");
317 [ + - ]: 2 : BOOST_CHECK_EQUAL(TrimString("foo bar"), "foo bar");
318 [ + - ]: 2 : BOOST_CHECK_EQUAL(TrimStringView("foo bar", "fobar"), " ");
319 [ + - + - : 2 : BOOST_CHECK_EQUAL(TrimString(std::string("\0 foo \0 ", 8)), std::string("\0 foo \0", 7));
+ - ]
320 [ + - + - : 2 : BOOST_CHECK_EQUAL(TrimStringView(std::string(" foo ", 5)), std::string("foo", 3));
+ - ]
321 [ + - + - : 2 : BOOST_CHECK_EQUAL(TrimString(std::string("\t\t\0\0\n\n", 6)), std::string("\0\0", 2));
+ - ]
322 [ + - + - : 2 : BOOST_CHECK_EQUAL(TrimStringView(std::string("\x05\x04\x03\x02\x01\x00", 6)), std::string("\x05\x04\x03\x02\x01\x00", 6));
+ - ]
323 [ + - + - : 2 : BOOST_CHECK_EQUAL(TrimString(std::string("\x05\x04\x03\x02\x01\x00", 6), std::string("\x05\x04\x03\x02\x01", 5)), std::string("\0", 1));
+ - + - ]
324 [ + - + - : 2 : BOOST_CHECK_EQUAL(TrimStringView(std::string("\x05\x04\x03\x02\x01\x00", 6), std::string("\x05\x04\x03\x02\x01\x00", 6)), "");
+ - ]
325 : 2 : }
326 : :
327 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_ParseISO8601DateTime)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
328 : : {
329 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("1969-12-31T23:59:59Z").value(), -1);
330 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("1970-01-01T00:00:00Z").value(), 0);
331 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("1970-01-01T00:00:01Z").value(), 1);
332 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("2000-01-01T00:00:01Z").value(), 946684801);
333 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("2011-09-30T23:36:17Z").value(), 1317425777);
334 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("2100-12-31T23:59:59Z").value(), 4133980799);
335 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("9999-12-31T23:59:59Z").value(), 253402300799);
336 : :
337 : : // Accept edge-cases, where the time overflows. They are not produced by
338 : : // FormatISO8601DateTime, so this can be changed in the future, if needed.
339 : : // For now, keep compatibility with the previous implementation.
340 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("2000-01-01T99:00:00Z").value(), 947041200);
341 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("2000-01-01T00:99:00Z").value(), 946690740);
342 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("2000-01-01T00:00:99Z").value(), 946684899);
343 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ParseISO8601DateTime("2000-01-01T99:99:99Z").value(), 947047239);
344 : :
345 : : // Reject date overflows.
346 [ + - + - ]: 4 : BOOST_CHECK(!ParseISO8601DateTime("2000-99-01T00:00:00Z"));
347 [ + - + - ]: 4 : BOOST_CHECK(!ParseISO8601DateTime("2000-01-99T00:00:00Z"));
348 : :
349 : : // Reject out-of-range years
350 [ + - + - ]: 4 : BOOST_CHECK(!ParseISO8601DateTime("32768-12-31T23:59:59Z"));
351 [ + - + - ]: 4 : BOOST_CHECK(!ParseISO8601DateTime("32767-12-31T23:59:59Z"));
352 [ + - + - ]: 4 : BOOST_CHECK(!ParseISO8601DateTime("32767-12-31T00:00:00Z"));
353 [ + - + - ]: 4 : BOOST_CHECK(!ParseISO8601DateTime("999-12-31T00:00:00Z"));
354 : :
355 : : // Reject invalid format
356 : 2 : const std::string valid{"2000-01-01T00:00:01Z"};
357 [ + - + - : 4 : BOOST_CHECK(ParseISO8601DateTime(valid).has_value());
+ - ]
358 [ + + ]: 42 : for (auto mut{0U}; mut < valid.size(); ++mut) {
359 [ + - ]: 40 : std::string invalid{valid};
360 [ + - ]: 40 : invalid[mut] = 'a';
361 [ + - + - : 80 : BOOST_CHECK(!ParseISO8601DateTime(invalid));
+ - ]
362 : 40 : }
363 : 2 : }
364 : :
365 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_FormatISO8601DateTime)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
366 : : {
367 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(971890963199), "32767-12-31T23:59:59Z");
368 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(971890876800), "32767-12-31T00:00:00Z");
369 : :
370 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(-1), "1969-12-31T23:59:59Z");
371 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(0), "1970-01-01T00:00:00Z");
372 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(1), "1970-01-01T00:00:01Z");
373 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(946684801), "2000-01-01T00:00:01Z");
374 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(1317425777), "2011-09-30T23:36:17Z");
375 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(4133980799), "2100-12-31T23:59:59Z");
376 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601DateTime(253402300799), "9999-12-31T23:59:59Z");
377 : 2 : }
378 : :
379 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_FormatISO8601Date)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
380 : : {
381 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601Date(971890963199), "32767-12-31");
382 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601Date(971890876800), "32767-12-31");
383 : :
384 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601Date(0), "1970-01-01");
385 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatISO8601Date(1317425777), "2011-09-30");
386 : 2 : }
387 : :
388 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_FormatMoney)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
389 : : {
390 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(0), "0.00");
391 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney((COIN/10000)*123456789), "12345.6789");
392 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(-COIN), "-1.00");
393 : :
394 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*100000000), "100000000.00");
395 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*10000000), "10000000.00");
396 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*1000000), "1000000.00");
397 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*100000), "100000.00");
398 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*10000), "10000.00");
399 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*1000), "1000.00");
400 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*100), "100.00");
401 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN*10), "10.00");
402 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN), "1.00");
403 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/10), "0.10");
404 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/100), "0.01");
405 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/1000), "0.001");
406 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/10000), "0.0001");
407 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/100000), "0.00001");
408 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/1000000), "0.000001");
409 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/10000000), "0.0000001");
410 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(COIN/100000000), "0.00000001");
411 : :
412 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::max()), "92233720368.54775807");
413 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::max() - 1), "92233720368.54775806");
414 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::max() - 2), "92233720368.54775805");
415 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::max() - 3), "92233720368.54775804");
416 : : // ...
417 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::min() + 3), "-92233720368.54775805");
418 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::min() + 2), "-92233720368.54775806");
419 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::min() + 1), "-92233720368.54775807");
420 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatMoney(std::numeric_limits<CAmount>::min()), "-92233720368.54775808");
421 : 2 : }
422 : :
423 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_ParseMoney)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
424 : : {
425 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.0").value(), 0);
426 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney(".").value(), 0);
427 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.").value(), 0);
428 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney(".0").value(), 0);
429 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney(".6789").value(), 6789'0000);
430 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("12345.").value(), COIN * 12345);
431 : :
432 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("12345.6789").value(), (COIN/10000)*123456789);
433 : :
434 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("10000000.00").value(), COIN*10000000);
435 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("1000000.00").value(), COIN*1000000);
436 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("100000.00").value(), COIN*100000);
437 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("10000.00").value(), COIN*10000);
438 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("1000.00").value(), COIN*1000);
439 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("100.00").value(), COIN*100);
440 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("10.00").value(), COIN*10);
441 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("1.00").value(), COIN);
442 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("1").value(), COIN);
443 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney(" 1").value(), COIN);
444 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("1 ").value(), COIN);
445 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney(" 1 ").value(), COIN);
446 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.1").value(), COIN/10);
447 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.01").value(), COIN/100);
448 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.001").value(), COIN/1000);
449 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.0001").value(), COIN/10000);
450 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.00001").value(), COIN/100000);
451 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.000001").value(), COIN/1000000);
452 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.0000001").value(), COIN/10000000);
453 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.00000001").value(), COIN/100000000);
454 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney(" 0.00000001 ").value(), COIN/100000000);
455 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney("0.00000001 ").value(), COIN/100000000);
456 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(ParseMoney(" 0.00000001").value(), COIN/100000000);
457 : :
458 : : // Parsing amount that cannot be represented should fail
459 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("100000000.00"));
+ - ]
460 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("0.000000001"));
+ - ]
461 : :
462 : : // Parsing empty string should fail
463 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(""));
+ - ]
464 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" "));
+ - ]
465 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" "));
+ - ]
466 : :
467 : : // Parsing two numbers should fail
468 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(".."));
+ - ]
469 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("0..0"));
+ - ]
470 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("1 2"));
+ - ]
471 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" 1 2 "));
+ - ]
472 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" 1.2 3 "));
+ - ]
473 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" 1 2.3 "));
+ - ]
474 : :
475 : : // Embedded whitespace should fail
476 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" -1 .2 "));
+ - ]
477 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" 1 .2 "));
+ - ]
478 [ + - + - : 4 : BOOST_CHECK(!ParseMoney(" +1 .2 "));
+ - ]
479 : :
480 : : // Attempted 63 bit overflow should fail
481 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("92233720368.54775808"));
+ - ]
482 : :
483 : : // Parsing negative amounts must fail
484 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("-1"));
+ - ]
485 : :
486 : : // Parsing strings with embedded NUL characters should fail
487 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("\0-1"s));
+ - ]
488 [ + - + - ]: 4 : BOOST_CHECK(!ParseMoney(STRING_WITH_EMBEDDED_NULL_CHAR));
489 [ + - + - : 4 : BOOST_CHECK(!ParseMoney("1\0"s));
+ - ]
490 : 2 : }
491 : :
492 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_IsHex)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
493 : : {
494 [ + - + - ]: 4 : BOOST_CHECK(IsHex("00"));
495 [ + - + - ]: 4 : BOOST_CHECK(IsHex("00112233445566778899aabbccddeeffAABBCCDDEEFF"));
496 [ + - + - ]: 4 : BOOST_CHECK(IsHex("ff"));
497 [ + - + - ]: 4 : BOOST_CHECK(IsHex("FF"));
498 : :
499 [ + - + - ]: 4 : BOOST_CHECK(!IsHex(""));
500 [ + - + - ]: 4 : BOOST_CHECK(!IsHex("0"));
501 [ + - + - ]: 4 : BOOST_CHECK(!IsHex("a"));
502 [ + - + - ]: 4 : BOOST_CHECK(!IsHex("eleven"));
503 [ + - + - ]: 4 : BOOST_CHECK(!IsHex("00xx00"));
504 [ + - + - ]: 4 : BOOST_CHECK(!IsHex("0x0000"));
505 : 2 : }
506 : :
507 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_seed_insecure_rand)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
508 : : {
509 : 2 : SeedRandomForTest(SeedRand::ZEROS);
510 [ + + ]: 20 : for (int mod=2;mod<11;mod++)
511 : : {
512 : 18 : int mask = 1;
513 : : // Really rough binomial confidence approximation.
514 : 18 : int err = 30*10000./mod*sqrt((1./mod*(1-1./mod))/10000.);
515 : : //mask is 2^ceil(log2(mod))-1
516 [ + + ]: 50 : while(mask<mod-1)mask=(mask<<1)+1;
517 : :
518 : : int count = 0;
519 : : //How often does it get a zero from the uniform range [0,mod)?
520 [ + + ]: 180018 : for (int i = 0; i < 10000; i++) {
521 : 235594 : uint32_t rval;
522 : 235594 : do{
523 : 235594 : rval=m_rng.rand32()&mask;
524 [ + + ]: 235594 : }while(rval>=(uint32_t)mod);
525 : 180000 : count += rval==0;
526 : : }
527 [ + - ]: 36 : BOOST_CHECK(count<=10000/mod+err);
528 [ + - ]: 36 : BOOST_CHECK(count>=10000/mod-err);
529 : : }
530 : 2 : }
531 : :
532 [ + - + - : 24 : BOOST_AUTO_TEST_CASE(util_TimingResistantEqual)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
533 : : {
534 [ + - + - : 4 : BOOST_CHECK(TimingResistantEqual(std::string(""), std::string("")));
+ - ]
535 [ + - + - : 4 : BOOST_CHECK(!TimingResistantEqual(std::string("abc"), std::string("")));
+ - ]
536 [ + - + - : 4 : BOOST_CHECK(!TimingResistantEqual(std::string(""), std::string("abc")));
+ - ]
537 [ + - + - : 4 : BOOST_CHECK(!TimingResistantEqual(std::string("a"), std::string("aa")));
+ - ]
538 [ + - + - : 4 : BOOST_CHECK(!TimingResistantEqual(std::string("aa"), std::string("a")));
+ - ]
539 [ + - + - : 4 : BOOST_CHECK(TimingResistantEqual(std::string("abc"), std::string("abc")));
+ - ]
540 [ + - + - : 4 : BOOST_CHECK(!TimingResistantEqual(std::string("abc"), std::string("aba")));
+ - ]
541 : 2 : }
542 : :
543 : : /* Test strprintf formatting directives.
544 : : * Put a string before and after to ensure sanity of element sizes on stack. */
545 : : #define B "check_prefix"
546 : : #define E "check_postfix"
547 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(strprintf_numbers)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
548 : : {
549 : 2 : int64_t s64t = -9223372036854775807LL; /* signed 64 bit test value */
550 : 2 : uint64_t u64t = 18446744073709551615ULL; /* unsigned 64 bit test value */
551 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %d %s", B, s64t, E) == B" -9223372036854775807 " E);
552 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %u %s", B, u64t, E) == B" 18446744073709551615 " E);
553 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %x %s", B, u64t, E) == B" ffffffffffffffff " E);
554 : :
555 : 2 : size_t st = 12345678; /* unsigned size_t test value */
556 : 2 : ssize_t sst = -12345678; /* signed size_t test value */
557 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %d %s", B, sst, E) == B" -12345678 " E);
558 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %u %s", B, st, E) == B" 12345678 " E);
559 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %x %s", B, st, E) == B" bc614e " E);
560 : :
561 : 2 : ptrdiff_t pt = 87654321; /* positive ptrdiff_t test value */
562 : 2 : ptrdiff_t spt = -87654321; /* negative ptrdiff_t test value */
563 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %d %s", B, spt, E) == B" -87654321 " E);
564 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %u %s", B, pt, E) == B" 87654321 " E);
565 [ + - + - ]: 4 : BOOST_CHECK(strprintf("%s %x %s", B, pt, E) == B" 5397fb1 " E);
566 : 2 : }
567 : : #undef B
568 : : #undef E
569 : :
570 : : /* Check for mingw/wine issue #3494
571 : : * Remove this test before time.ctime(0xffffffff) == 'Sun Feb 7 07:28:15 2106'
572 : : */
573 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(gettime)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
574 : : {
575 [ + - + - ]: 4 : BOOST_CHECK((GetTime() & ~0xFFFFFFFFLL) == 0);
576 : 2 : }
577 : :
578 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_time_GetTime)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
579 : : {
580 : 2 : SetMockTime(111);
581 : : // Check that mock time does not change after a sleep
582 [ + + ]: 6 : for (const auto& num_sleep : {0ms, 1ms}) {
583 : 4 : UninterruptibleSleep(num_sleep);
584 [ + - ]: 4 : BOOST_CHECK_EQUAL(111, GetTime()); // Deprecated time getter
585 [ + - ]: 4 : BOOST_CHECK_EQUAL(111, Now<NodeSeconds>().time_since_epoch().count());
586 [ + - ]: 4 : BOOST_CHECK_EQUAL(111, TicksSinceEpoch<std::chrono::seconds>(NodeClock::now()));
587 [ + - ]: 4 : BOOST_CHECK_EQUAL(111, TicksSinceEpoch<SecondsDouble>(Now<NodeSeconds>()));
588 [ + - ]: 4 : BOOST_CHECK_EQUAL(111, GetTime<std::chrono::seconds>().count());
589 [ + - ]: 4 : BOOST_CHECK_EQUAL(111000, GetTime<std::chrono::milliseconds>().count());
590 [ + - ]: 4 : BOOST_CHECK_EQUAL(111000, TicksSinceEpoch<std::chrono::milliseconds>(NodeClock::now()));
591 [ + - ]: 4 : BOOST_CHECK_EQUAL(111000000, GetTime<std::chrono::microseconds>().count());
592 : : }
593 : :
594 : 2 : SetMockTime(0);
595 : : // Check that steady time and system time changes after a sleep
596 : 2 : const auto steady_ms_0 = Now<SteadyMilliseconds>();
597 : 2 : const auto steady_0 = std::chrono::steady_clock::now();
598 : 2 : const auto ms_0 = GetTime<std::chrono::milliseconds>();
599 : 2 : const auto us_0 = GetTime<std::chrono::microseconds>();
600 : 2 : UninterruptibleSleep(1ms);
601 [ + - ]: 4 : BOOST_CHECK(steady_ms_0 < Now<SteadyMilliseconds>());
602 [ + - ]: 4 : BOOST_CHECK(steady_0 + 1ms <= std::chrono::steady_clock::now());
603 [ + - ]: 4 : BOOST_CHECK(ms_0 < GetTime<std::chrono::milliseconds>());
604 [ + - ]: 4 : BOOST_CHECK(us_0 < GetTime<std::chrono::microseconds>());
605 : 2 : }
606 : :
607 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_IsDigit)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
608 : : {
609 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit('0'), true);
610 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit('1'), true);
611 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit('8'), true);
612 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit('9'), true);
613 : :
614 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit('0' - 1), false);
615 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit('9' + 1), false);
616 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit(0), false);
617 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit(1), false);
618 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit(8), false);
619 [ + - ]: 2 : BOOST_CHECK_EQUAL(IsDigit(9), false);
620 : 2 : }
621 : :
622 : : /* Check for overflow */
623 : : template <typename T>
624 : 4 : static void TestAddMatrixOverflow()
625 : : {
626 : 4 : constexpr T MAXI{std::numeric_limits<T>::max()};
627 [ + - ]: 8 : BOOST_CHECK(!CheckedAdd(T{1}, MAXI));
628 [ + - ]: 8 : BOOST_CHECK(!CheckedAdd(MAXI, MAXI));
629 [ + - ]: 4 : BOOST_CHECK_EQUAL(MAXI, SaturatingAdd(T{1}, MAXI));
630 [ + - ]: 4 : BOOST_CHECK_EQUAL(MAXI, SaturatingAdd(MAXI, MAXI));
631 : :
632 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(0, CheckedAdd(T{0}, T{0}).value());
633 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(MAXI, CheckedAdd(T{0}, MAXI).value());
634 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(MAXI, CheckedAdd(T{1}, MAXI - 1).value());
635 [ + - + - ]: 4 : BOOST_CHECK_EQUAL(MAXI - 1, CheckedAdd(T{1}, MAXI - 2).value());
636 [ + - ]: 4 : BOOST_CHECK_EQUAL(0, SaturatingAdd(T{0}, T{0}));
637 [ + - ]: 4 : BOOST_CHECK_EQUAL(MAXI, SaturatingAdd(T{0}, MAXI));
638 [ + - ]: 4 : BOOST_CHECK_EQUAL(MAXI, SaturatingAdd(T{1}, MAXI - 1));
639 [ + - ]: 4 : BOOST_CHECK_EQUAL(MAXI - 1, SaturatingAdd(T{1}, MAXI - 2));
640 : 4 : }
641 : :
642 : : /* Check for overflow or underflow */
643 : : template <typename T>
644 : 2 : static void TestAddMatrix()
645 : : {
646 : 2 : TestAddMatrixOverflow<T>();
647 : 2 : constexpr T MINI{std::numeric_limits<T>::min()};
648 : 2 : constexpr T MAXI{std::numeric_limits<T>::max()};
649 [ + - ]: 4 : BOOST_CHECK(!CheckedAdd(T{-1}, MINI));
650 [ + - ]: 4 : BOOST_CHECK(!CheckedAdd(MINI, MINI));
651 [ + - ]: 2 : BOOST_CHECK_EQUAL(MINI, SaturatingAdd(T{-1}, MINI));
652 [ + - ]: 2 : BOOST_CHECK_EQUAL(MINI, SaturatingAdd(MINI, MINI));
653 : :
654 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(MINI, CheckedAdd(T{0}, MINI).value());
655 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(MINI, CheckedAdd(T{-1}, MINI + 1).value());
656 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(-1, CheckedAdd(MINI, MAXI).value());
657 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(MINI + 1, CheckedAdd(T{-1}, MINI + 2).value());
658 [ + - ]: 2 : BOOST_CHECK_EQUAL(MINI, SaturatingAdd(T{0}, MINI));
659 [ + - ]: 2 : BOOST_CHECK_EQUAL(MINI, SaturatingAdd(T{-1}, MINI + 1));
660 [ + - ]: 2 : BOOST_CHECK_EQUAL(MINI + 1, SaturatingAdd(T{-1}, MINI + 2));
661 [ + - ]: 2 : BOOST_CHECK_EQUAL(-1, SaturatingAdd(MINI, MAXI));
662 : 2 : }
663 : :
664 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(util_overflow)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
665 : : {
666 : 2 : TestAddMatrixOverflow<unsigned>();
667 : 2 : TestAddMatrix<signed>();
668 : 2 : }
669 : :
670 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ParseInt32)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
671 : : {
672 : 2 : int32_t n;
673 : : // Valid values
674 [ + - + - ]: 4 : BOOST_CHECK(ParseInt32("1234", nullptr));
675 [ + - + - : 4 : BOOST_CHECK(ParseInt32("0", &n) && n == 0);
- + + - ]
676 [ + - + - : 4 : BOOST_CHECK(ParseInt32("1234", &n) && n == 1234);
- + + - ]
677 [ + - + - : 4 : BOOST_CHECK(ParseInt32("01234", &n) && n == 1234); // no octal
- + + - ]
678 [ + - + - : 4 : BOOST_CHECK(ParseInt32("2147483647", &n) && n == 2147483647);
- + + - ]
679 [ + - + - : 4 : BOOST_CHECK(ParseInt32("-2147483648", &n) && n == (-2147483647 - 1)); // (-2147483647 - 1) equals INT_MIN
- + + - ]
680 [ + - + - : 4 : BOOST_CHECK(ParseInt32("-1234", &n) && n == -1234);
- + + - ]
681 [ + - + - : 4 : BOOST_CHECK(ParseInt32("00000000000000001234", &n) && n == 1234);
- + + - ]
682 [ + - + - : 4 : BOOST_CHECK(ParseInt32("-00000000000000001234", &n) && n == -1234);
- + + - ]
683 [ + - + - : 4 : BOOST_CHECK(ParseInt32("00000000000000000000", &n) && n == 0);
- + + - ]
684 [ + - + - : 4 : BOOST_CHECK(ParseInt32("-00000000000000000000", &n) && n == 0);
- + + - ]
685 : : // Invalid values
686 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("", &n));
687 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32(" 1", &n)); // no padding inside
688 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("1 ", &n));
689 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("++1", &n));
690 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("+-1", &n));
691 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("-+1", &n));
692 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("--1", &n));
693 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("1a", &n));
694 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("aap", &n));
695 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("0x1", &n)); // no hex
696 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32(STRING_WITH_EMBEDDED_NULL_CHAR, &n));
697 : : // Overflow and underflow
698 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("-2147483649", nullptr));
699 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("2147483648", nullptr));
700 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("-32482348723847471234", nullptr));
701 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt32("32482348723847471234", nullptr));
702 : 2 : }
703 : :
704 : : template <typename T>
705 : 16 : static void RunToIntegralTests()
706 : : {
707 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>(STRING_WITH_EMBEDDED_NULL_CHAR));
708 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>(" 1"));
709 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("1 "));
710 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("1a"));
711 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("1.1"));
712 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("1.9"));
713 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("+01.9"));
714 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("-"));
715 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("+"));
716 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>(" -1"));
717 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("-1 "));
718 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>(" -1 "));
719 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("+1"));
720 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>(" +1"));
721 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>(" +1 "));
722 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("+-1"));
723 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("-+1"));
724 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("++1"));
725 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("--1"));
726 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>(""));
727 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("aap"));
728 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("0x1"));
729 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("-32482348723847471234"));
730 [ + - ]: 32 : BOOST_CHECK(!ToIntegral<T>("32482348723847471234"));
731 : 16 : }
732 : :
733 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ToIntegral)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
734 : : {
735 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("1234").value(), 1'234);
736 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("0").value(), 0);
737 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("01234").value(), 1'234);
738 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("00000000000000001234").value(), 1'234);
739 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("-00000000000000001234").value(), -1'234);
740 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("00000000000000000000").value(), 0);
741 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("-00000000000000000000").value(), 0);
742 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("-1234").value(), -1'234);
743 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("-1").value(), -1);
744 : :
745 : 2 : RunToIntegralTests<uint64_t>();
746 : 2 : RunToIntegralTests<int64_t>();
747 : 2 : RunToIntegralTests<uint32_t>();
748 : 2 : RunToIntegralTests<int32_t>();
749 : 2 : RunToIntegralTests<uint16_t>();
750 : 2 : RunToIntegralTests<int16_t>();
751 : 2 : RunToIntegralTests<uint8_t>();
752 : 2 : RunToIntegralTests<int8_t>();
753 : :
754 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int64_t>("-9223372036854775809"));
755 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int64_t>("-9223372036854775808").value(), -9'223'372'036'854'775'807LL - 1LL);
756 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int64_t>("9223372036854775807").value(), 9'223'372'036'854'775'807);
757 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int64_t>("9223372036854775808"));
758 : :
759 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint64_t>("-1"));
760 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint64_t>("0").value(), 0U);
761 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint64_t>("18446744073709551615").value(), 18'446'744'073'709'551'615ULL);
762 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint64_t>("18446744073709551616"));
763 : :
764 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int32_t>("-2147483649"));
765 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("-2147483648").value(), -2'147'483'648LL);
766 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int32_t>("2147483647").value(), 2'147'483'647);
767 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int32_t>("2147483648"));
768 : :
769 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint32_t>("-1"));
770 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint32_t>("0").value(), 0U);
771 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint32_t>("4294967295").value(), 4'294'967'295U);
772 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint32_t>("4294967296"));
773 : :
774 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int16_t>("-32769"));
775 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int16_t>("-32768").value(), -32'768);
776 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int16_t>("32767").value(), 32'767);
777 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int16_t>("32768"));
778 : :
779 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint16_t>("-1"));
780 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint16_t>("0").value(), 0U);
781 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint16_t>("65535").value(), 65'535U);
782 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint16_t>("65536"));
783 : :
784 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int8_t>("-129"));
785 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int8_t>("-128").value(), -128);
786 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<int8_t>("127").value(), 127);
787 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<int8_t>("128"));
788 : :
789 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint8_t>("-1"));
790 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint8_t>("0").value(), 0U);
791 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(ToIntegral<uint8_t>("255").value(), 255U);
792 [ + - ]: 4 : BOOST_CHECK(!ToIntegral<uint8_t>("256"));
793 : 2 : }
794 : :
795 : 16 : int64_t atoi64_legacy(const std::string& str)
796 : : {
797 : 16 : return strtoll(str.c_str(), nullptr, 10);
798 : : }
799 : :
800 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_LocaleIndependentAtoi)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
801 : : {
802 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("1234"), 1'234);
803 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("0"), 0);
804 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("01234"), 1'234);
805 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("-1234"), -1'234);
806 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>(" 1"), 1);
807 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("1 "), 1);
808 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("1a"), 1);
809 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("1.1"), 1);
810 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("1.9"), 1);
811 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("+01.9"), 1);
812 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("-1"), -1);
813 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>(" -1"), -1);
814 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("-1 "), -1);
815 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>(" -1 "), -1);
816 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("+1"), 1);
817 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>(" +1"), 1);
818 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>(" +1 "), 1);
819 : :
820 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("+-1"), 0);
821 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("-+1"), 0);
822 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("++1"), 0);
823 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("--1"), 0);
824 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>(""), 0);
825 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("aap"), 0);
826 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("0x1"), 0);
827 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("-32482348723847471234"), -2'147'483'647 - 1);
828 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("32482348723847471234"), 2'147'483'647);
829 : :
830 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int64_t>("-9223372036854775809"), -9'223'372'036'854'775'807LL - 1LL);
831 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int64_t>("-9223372036854775808"), -9'223'372'036'854'775'807LL - 1LL);
832 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int64_t>("9223372036854775807"), 9'223'372'036'854'775'807);
833 [ + - ]: 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int64_t>("9223372036854775808"), 9'223'372'036'854'775'807);
834 : :
835 : 2 : std::map<std::string, int64_t> atoi64_test_pairs = {
836 [ + - ]: 2 : {"-9223372036854775809", std::numeric_limits<int64_t>::min()},
837 : 2 : {"-9223372036854775808", -9'223'372'036'854'775'807LL - 1LL},
838 : 2 : {"9223372036854775807", 9'223'372'036'854'775'807},
839 : 2 : {"9223372036854775808", std::numeric_limits<int64_t>::max()},
840 : 2 : {"+-", 0},
841 : 2 : {"0x1", 0},
842 : 2 : {"ox1", 0},
843 : 2 : {"", 0},
844 [ + + - - ]: 18 : };
845 : :
846 [ + + ]: 18 : for (const auto& pair : atoi64_test_pairs) {
847 [ + - + - : 16 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int64_t>(pair.first), pair.second);
+ - ]
848 : : }
849 : :
850 : : // Ensure legacy compatibility with previous versions of Bitcoin Core's atoi64
851 [ + + ]: 18 : for (const auto& pair : atoi64_test_pairs) {
852 [ + - + - : 16 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int64_t>(pair.first), atoi64_legacy(pair.first));
+ - ]
853 : : }
854 : :
855 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint64_t>("-1"), 0U);
+ - ]
856 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint64_t>("0"), 0U);
+ - ]
857 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint64_t>("18446744073709551615"), 18'446'744'073'709'551'615ULL);
+ - ]
858 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint64_t>("18446744073709551616"), 18'446'744'073'709'551'615ULL);
+ - ]
859 : :
860 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("-2147483649"), -2'147'483'648LL);
+ - ]
861 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("-2147483648"), -2'147'483'648LL);
+ - ]
862 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("2147483647"), 2'147'483'647);
+ - ]
863 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int32_t>("2147483648"), 2'147'483'647);
+ - ]
864 : :
865 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint32_t>("-1"), 0U);
+ - ]
866 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint32_t>("0"), 0U);
+ - ]
867 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint32_t>("4294967295"), 4'294'967'295U);
+ - ]
868 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint32_t>("4294967296"), 4'294'967'295U);
+ - ]
869 : :
870 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int16_t>("-32769"), -32'768);
+ - ]
871 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int16_t>("-32768"), -32'768);
+ - ]
872 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int16_t>("32767"), 32'767);
+ - ]
873 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int16_t>("32768"), 32'767);
+ - ]
874 : :
875 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint16_t>("-1"), 0U);
+ - ]
876 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint16_t>("0"), 0U);
+ - ]
877 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint16_t>("65535"), 65'535U);
+ - ]
878 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint16_t>("65536"), 65'535U);
+ - ]
879 : :
880 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int8_t>("-129"), -128);
+ - ]
881 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int8_t>("-128"), -128);
+ - ]
882 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int8_t>("127"), 127);
+ - ]
883 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<int8_t>("128"), 127);
+ - ]
884 : :
885 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint8_t>("-1"), 0U);
+ - ]
886 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint8_t>("0"), 0U);
+ - ]
887 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint8_t>("255"), 255U);
+ - ]
888 [ + - + - : 2 : BOOST_CHECK_EQUAL(LocaleIndependentAtoi<uint8_t>("256"), 255U);
+ - ]
889 [ + - + - : 4 : }
+ - + - +
- + - + -
- + - - ]
890 : :
891 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ParseInt64)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
892 : : {
893 : 2 : int64_t n;
894 : : // Valid values
895 [ + - + - ]: 4 : BOOST_CHECK(ParseInt64("1234", nullptr));
896 [ + - + - : 4 : BOOST_CHECK(ParseInt64("0", &n) && n == 0LL);
- + + - ]
897 [ + - + - : 4 : BOOST_CHECK(ParseInt64("1234", &n) && n == 1234LL);
- + + - ]
898 [ + - + - : 4 : BOOST_CHECK(ParseInt64("01234", &n) && n == 1234LL); // no octal
- + + - ]
899 [ + - + - : 4 : BOOST_CHECK(ParseInt64("2147483647", &n) && n == 2147483647LL);
- + + - ]
900 [ + - + - : 4 : BOOST_CHECK(ParseInt64("-2147483648", &n) && n == -2147483648LL);
- + + - ]
901 [ + - + - : 4 : BOOST_CHECK(ParseInt64("9223372036854775807", &n) && n == int64_t{9223372036854775807});
- + + - ]
902 [ + - + - : 4 : BOOST_CHECK(ParseInt64("-9223372036854775808", &n) && n == int64_t{-9223372036854775807-1});
- + + - ]
903 [ + - + - : 4 : BOOST_CHECK(ParseInt64("-1234", &n) && n == -1234LL);
- + + - ]
904 : : // Invalid values
905 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("", &n));
906 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64(" 1", &n)); // no padding inside
907 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("1 ", &n));
908 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("1a", &n));
909 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("aap", &n));
910 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("0x1", &n)); // no hex
911 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64(STRING_WITH_EMBEDDED_NULL_CHAR, &n));
912 : : // Overflow and underflow
913 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("-9223372036854775809", nullptr));
914 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("9223372036854775808", nullptr));
915 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("-32482348723847471234", nullptr));
916 [ + - + - ]: 4 : BOOST_CHECK(!ParseInt64("32482348723847471234", nullptr));
917 : 2 : }
918 : :
919 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ParseUInt8)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
920 : : {
921 : 2 : uint8_t n;
922 : : // Valid values
923 [ + - + - ]: 4 : BOOST_CHECK(ParseUInt8("255", nullptr));
924 [ + - + - : 4 : BOOST_CHECK(ParseUInt8("0", &n) && n == 0);
- + + - ]
925 [ + - + - : 4 : BOOST_CHECK(ParseUInt8("255", &n) && n == 255);
- + + - ]
926 [ + - + - : 4 : BOOST_CHECK(ParseUInt8("0255", &n) && n == 255); // no octal
- + + - ]
927 [ + - + - : 4 : BOOST_CHECK(ParseUInt8("255", &n) && n == static_cast<uint8_t>(255));
- + + - ]
928 [ + - + - : 4 : BOOST_CHECK(ParseUInt8("+255", &n) && n == 255);
- + + - ]
929 [ + - + - : 4 : BOOST_CHECK(ParseUInt8("00000000000000000012", &n) && n == 12);
- + + - ]
930 [ + - + - : 4 : BOOST_CHECK(ParseUInt8("00000000000000000000", &n) && n == 0);
- + + - ]
931 : : // Invalid values
932 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("-00000000000000000000", &n));
933 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("", &n));
934 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8(" 1", &n)); // no padding inside
935 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8(" -1", &n));
936 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("++1", &n));
937 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("+-1", &n));
938 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("-+1", &n));
939 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("--1", &n));
940 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("-1", &n));
941 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("1 ", &n));
942 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("1a", &n));
943 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("aap", &n));
944 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("0x1", &n)); // no hex
945 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8(STRING_WITH_EMBEDDED_NULL_CHAR, &n));
946 : : // Overflow and underflow
947 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("-255", &n));
948 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("256", &n));
949 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("-123", &n));
950 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("-123", nullptr));
951 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt8("256", nullptr));
952 : 2 : }
953 : :
954 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ParseUInt16)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
955 : : {
956 : 2 : uint16_t n;
957 : : // Valid values
958 [ + - + - ]: 4 : BOOST_CHECK(ParseUInt16("1234", nullptr));
959 [ + - + - : 4 : BOOST_CHECK(ParseUInt16("0", &n) && n == 0);
- + + - ]
960 [ + - + - : 4 : BOOST_CHECK(ParseUInt16("1234", &n) && n == 1234);
- + + - ]
961 [ + - + - : 4 : BOOST_CHECK(ParseUInt16("01234", &n) && n == 1234); // no octal
- + + - ]
962 [ + - + - : 4 : BOOST_CHECK(ParseUInt16("65535", &n) && n == static_cast<uint16_t>(65535));
- + + - ]
963 [ + - + - : 4 : BOOST_CHECK(ParseUInt16("+65535", &n) && n == 65535);
- + + - ]
964 [ + - + - : 4 : BOOST_CHECK(ParseUInt16("00000000000000000012", &n) && n == 12);
- + + - ]
965 [ + - + - : 4 : BOOST_CHECK(ParseUInt16("00000000000000000000", &n) && n == 0);
- + + - ]
966 : : // Invalid values
967 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("-00000000000000000000", &n));
968 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("", &n));
969 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16(" 1", &n)); // no padding inside
970 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16(" -1", &n));
971 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("++1", &n));
972 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("+-1", &n));
973 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("-+1", &n));
974 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("--1", &n));
975 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("-1", &n));
976 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("1 ", &n));
977 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("1a", &n));
978 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("aap", &n));
979 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("0x1", &n)); // no hex
980 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16(STRING_WITH_EMBEDDED_NULL_CHAR, &n));
981 : : // Overflow and underflow
982 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("-65535", &n));
983 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("65536", &n));
984 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("-123", &n));
985 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("-123", nullptr));
986 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt16("65536", nullptr));
987 : 2 : }
988 : :
989 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ParseUInt32)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
990 : : {
991 : 2 : uint32_t n;
992 : : // Valid values
993 [ + - + - ]: 4 : BOOST_CHECK(ParseUInt32("1234", nullptr));
994 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("0", &n) && n == 0);
- + + - ]
995 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("1234", &n) && n == 1234);
- + + - ]
996 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("01234", &n) && n == 1234); // no octal
- + + - ]
997 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("2147483647", &n) && n == 2147483647);
- + + - ]
998 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("2147483648", &n) && n == uint32_t{2147483648});
- + + - ]
999 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("4294967295", &n) && n == uint32_t{4294967295});
- + + - ]
1000 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("+1234", &n) && n == 1234);
- + + - ]
1001 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("00000000000000001234", &n) && n == 1234);
- + + - ]
1002 [ + - + - : 4 : BOOST_CHECK(ParseUInt32("00000000000000000000", &n) && n == 0);
- + + - ]
1003 : : // Invalid values
1004 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("-00000000000000000000", &n));
1005 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("", &n));
1006 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32(" 1", &n)); // no padding inside
1007 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32(" -1", &n));
1008 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("++1", &n));
1009 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("+-1", &n));
1010 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("-+1", &n));
1011 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("--1", &n));
1012 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("-1", &n));
1013 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("1 ", &n));
1014 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("1a", &n));
1015 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("aap", &n));
1016 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("0x1", &n)); // no hex
1017 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32(STRING_WITH_EMBEDDED_NULL_CHAR, &n));
1018 : : // Overflow and underflow
1019 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("-2147483648", &n));
1020 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("4294967296", &n));
1021 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("-1234", &n));
1022 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("-32482348723847471234", nullptr));
1023 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt32("32482348723847471234", nullptr));
1024 : 2 : }
1025 : :
1026 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ParseUInt64)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1027 : : {
1028 : 2 : uint64_t n;
1029 : : // Valid values
1030 [ + - + - ]: 4 : BOOST_CHECK(ParseUInt64("1234", nullptr));
1031 [ + - + - : 4 : BOOST_CHECK(ParseUInt64("0", &n) && n == 0LL);
- + + - ]
1032 [ + - + - : 4 : BOOST_CHECK(ParseUInt64("1234", &n) && n == 1234LL);
- + + - ]
1033 [ + - + - : 4 : BOOST_CHECK(ParseUInt64("01234", &n) && n == 1234LL); // no octal
- + + - ]
1034 [ + - + - : 4 : BOOST_CHECK(ParseUInt64("2147483647", &n) && n == 2147483647LL);
- + + - ]
1035 [ + - + - : 4 : BOOST_CHECK(ParseUInt64("9223372036854775807", &n) && n == 9223372036854775807ULL);
- + + - ]
1036 [ + - + - : 4 : BOOST_CHECK(ParseUInt64("9223372036854775808", &n) && n == 9223372036854775808ULL);
- + + - ]
1037 [ + - + - : 4 : BOOST_CHECK(ParseUInt64("18446744073709551615", &n) && n == 18446744073709551615ULL);
- + + - ]
1038 : : // Invalid values
1039 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("", &n));
1040 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64(" 1", &n)); // no padding inside
1041 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64(" -1", &n));
1042 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("1 ", &n));
1043 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("1a", &n));
1044 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("aap", &n));
1045 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("0x1", &n)); // no hex
1046 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64(STRING_WITH_EMBEDDED_NULL_CHAR, &n));
1047 : : // Overflow and underflow
1048 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("-9223372036854775809", nullptr));
1049 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("18446744073709551616", nullptr));
1050 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("-32482348723847471234", nullptr));
1051 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("-2147483648", &n));
1052 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("-9223372036854775808", &n));
1053 [ + - + - ]: 4 : BOOST_CHECK(!ParseUInt64("-1234", &n));
1054 : 2 : }
1055 : :
1056 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_FormatParagraph)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1057 : : {
1058 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("", 79, 0), "");
1059 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("test", 79, 0), "test");
1060 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph(" test", 79, 0), " test");
1061 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("test test", 79, 0), "test test");
1062 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("test test", 4, 0), "test\ntest");
1063 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("testerde test", 4, 0), "testerde\ntest");
1064 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("test test", 4, 4), "test\n test");
1065 : :
1066 : : // Make sure we don't indent a fully-new line following a too-long line ending
1067 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("test test\nabc", 4, 4), "test\n test\nabc");
1068 : :
1069 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("This_is_a_very_long_test_string_without_any_spaces_so_it_should_just_get_returned_as_is_despite_the_length until it gets here", 79), "This_is_a_very_long_test_string_without_any_spaces_so_it_should_just_get_returned_as_is_despite_the_length\nuntil it gets here");
1070 : :
1071 : : // Test wrap length is exact
1072 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("a b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 5 6 7 8 9 a b c de f g h i j k l m n o p", 79), "a b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 5 6 7 8 9 a b c de\nf g h i j k l m n o p");
1073 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("x\na b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 5 6 7 8 9 a b c de f g h i j k l m n o p", 79), "x\na b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 5 6 7 8 9 a b c de\nf g h i j k l m n o p");
1074 : : // Indent should be included in length of lines
1075 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("x\na b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 5 6 7 8 9 a b c de f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9 a b c d e fg h i j k", 79, 4), "x\na b c d e f g h i j k l m n o p q r s t u v w x y z 1 2 3 4 5 6 7 8 9 a b c de\n f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9 a b c d e fg\n h i j k");
1076 : :
1077 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("This is a very long test string. This is a second sentence in the very long test string.", 79), "This is a very long test string. This is a second sentence in the very long\ntest string.");
1078 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("This is a very long test string.\nThis is a second sentence in the very long test string. This is a third sentence in the very long test string.", 79), "This is a very long test string.\nThis is a second sentence in the very long test string. This is a third\nsentence in the very long test string.");
1079 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("This is a very long test string.\n\nThis is a second sentence in the very long test string. This is a third sentence in the very long test string.", 79), "This is a very long test string.\n\nThis is a second sentence in the very long test string. This is a third\nsentence in the very long test string.");
1080 [ + - ]: 2 : BOOST_CHECK_EQUAL(FormatParagraph("Testing that normal newlines do not get indented.\nLike here.", 79), "Testing that normal newlines do not get indented.\nLike here.");
1081 : 2 : }
1082 : :
1083 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_FormatSubVersion)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1084 : : {
1085 : 2 : std::vector<std::string> comments;
1086 [ + - ]: 2 : comments.emplace_back("comment1");
1087 : 2 : std::vector<std::string> comments2;
1088 [ + - ]: 2 : comments2.emplace_back("comment1");
1089 [ + - + - ]: 4 : comments2.push_back(SanitizeString(std::string("Comment2; .,_?@-; !\"#$%&'()*+/<=>[]\\^`{|}~"), SAFE_CHARS_UA_COMMENT)); // Semicolon is discouraged but not forbidden by BIP-0014
1090 [ + - + - : 2 : BOOST_CHECK_EQUAL(FormatSubVersion("Test", 99900, std::vector<std::string>()),std::string("/Test:9.99.0/"));
+ - + - +
- ]
1091 [ + - + - : 2 : BOOST_CHECK_EQUAL(FormatSubVersion("Test", 99900, comments),std::string("/Test:9.99.0(comment1)/"));
+ - + - +
- ]
1092 [ + - + - : 2 : BOOST_CHECK_EQUAL(FormatSubVersion("Test", 99900, comments2),std::string("/Test:9.99.0(comment1; Comment2; .,_?@-; )/"));
+ - + - +
- ]
1093 : 2 : }
1094 : :
1095 [ + - + - : 14 : BOOST_AUTO_TEST_CASE(test_ParseFixedPoint)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1096 : : {
1097 : 2 : int64_t amount = 0;
1098 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("0", 8, &amount));
1099 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 0LL);
1100 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("1", 8, &amount));
1101 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 100000000LL);
1102 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("0.0", 8, &amount));
1103 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 0LL);
1104 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("-0.1", 8, &amount));
1105 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, -10000000LL);
1106 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("1.1", 8, &amount));
1107 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 110000000LL);
1108 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("1.10000000000000000", 8, &amount));
1109 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 110000000LL);
1110 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("1.1e1", 8, &amount));
1111 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 1100000000LL);
1112 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("1.1e-1", 8, &amount));
1113 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 11000000LL);
1114 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("1000", 8, &amount));
1115 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 100000000000LL);
1116 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("-1000", 8, &amount));
1117 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, -100000000000LL);
1118 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("0.00000001", 8, &amount));
1119 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 1LL);
1120 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("0.0000000100000000", 8, &amount));
1121 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 1LL);
1122 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("-0.00000001", 8, &amount));
1123 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, -1LL);
1124 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("1000000000.00000001", 8, &amount));
1125 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 100000000000000001LL);
1126 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("9999999999.99999999", 8, &amount));
1127 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, 999999999999999999LL);
1128 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("-9999999999.99999999", 8, &amount));
1129 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, -999999999999999999LL);
1130 : :
1131 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("", 8, &amount));
1132 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-", 8, &amount));
1133 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("a-1000", 8, &amount));
1134 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-a1000", 8, &amount));
1135 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-1000a", 8, &amount));
1136 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-01000", 8, &amount));
1137 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("00.1", 8, &amount));
1138 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint(".1", 8, &amount));
1139 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("--0.1", 8, &amount));
1140 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("0.000000001", 8, &amount));
1141 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-0.000000001", 8, &amount));
1142 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("0.00000001000000001", 8, &amount));
1143 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-10000000000.00000000", 8, &amount));
1144 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("10000000000.00000000", 8, &amount));
1145 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-10000000000.00000001", 8, &amount));
1146 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("10000000000.00000001", 8, &amount));
1147 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-10000000000.00000009", 8, &amount));
1148 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("10000000000.00000009", 8, &amount));
1149 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-99999999999.99999999", 8, &amount));
1150 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("99999909999.09999999", 8, &amount));
1151 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("92233720368.54775807", 8, &amount));
1152 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("92233720368.54775808", 8, &amount));
1153 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-92233720368.54775808", 8, &amount));
1154 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("-92233720368.54775809", 8, &amount));
1155 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("1.1e", 8, &amount));
1156 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("1.1e-", 8, &amount));
1157 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("1.", 8, &amount));
1158 : :
1159 : : // Test with 3 decimal places for fee rates in sat/vB.
1160 [ + - + - ]: 4 : BOOST_CHECK(ParseFixedPoint("0.001", 3, &amount));
1161 [ + - ]: 2 : BOOST_CHECK_EQUAL(amount, CAmount{1});
1162 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("0.0009", 3, &amount));
1163 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("31.00100001", 3, &amount));
1164 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("31.0011", 3, &amount));
1165 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("31.99999999", 3, &amount));
1166 [ + - + - ]: 4 : BOOST_CHECK(!ParseFixedPoint("31.999999999999999999999", 3, &amount));
1167 : 2 : }
1168 : :
1169 : : #ifndef WIN32 // Cannot do this test on WIN32 due to lack of fork()
1170 : : static constexpr char LockCommand = 'L';
1171 : : static constexpr char UnlockCommand = 'U';
1172 : : static constexpr char ExitCommand = 'X';
1173 : : enum : char {
1174 : : ResSuccess = 2, // Start with 2 to avoid accidental collision with common values 0 and 1
1175 : : ResErrorWrite,
1176 : : ResErrorLock,
1177 : : ResUnlockSuccess,
1178 : : };
1179 : :
1180 : 1 : [[noreturn]] static void TestOtherProcess(fs::path dirname, fs::path lockname, int fd)
1181 : : {
1182 : 6 : char ch;
1183 : 6 : while (true) {
1184 : 6 : int rv = read(fd, &ch, 1); // Wait for command
1185 [ - + ]: 6 : assert(rv == 1);
1186 [ + + + - ]: 6 : switch (ch) {
1187 : 4 : case LockCommand:
1188 : 12 : ch = [&] {
1189 [ + + - + ]: 4 : switch (util::LockDirectory(dirname, lockname)) {
1190 : : case util::LockResult::Success: return ResSuccess;
1191 : 1 : case util::LockResult::ErrorWrite: return ResErrorWrite;
1192 : 1 : case util::LockResult::ErrorLock: return ResErrorLock;
1193 : : } // no default case, so the compiler can warn about missing cases
1194 : 0 : assert(false);
1195 : 4 : }();
1196 : 4 : rv = write(fd, &ch, 1);
1197 [ + - ]: 4 : assert(rv == 1);
1198 : : break;
1199 : 1 : case UnlockCommand:
1200 : 1 : ReleaseDirectoryLocks();
1201 : 1 : ch = ResUnlockSuccess; // Always succeeds
1202 : 1 : rv = write(fd, &ch, 1);
1203 [ + - ]: 1 : assert(rv == 1);
1204 : : break;
1205 : 1 : case ExitCommand:
1206 : 1 : close(fd);
1207 : 1 : exit(0);
1208 : 0 : default:
1209 : 0 : assert(0);
1210 : : }
1211 : : }
1212 : : }
1213 : : #endif
1214 : :
1215 [ + - + - : 12 : BOOST_AUTO_TEST_CASE(test_LockDirectory)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1216 : : {
1217 [ + - ]: 4 : fs::path dirname = m_args.GetDataDirBase() / "lock_dir";
1218 [ + - ]: 2 : const fs::path lockname = ".lock";
1219 : : #ifndef WIN32
1220 : : // Revert SIGCHLD to default, otherwise boost.test will catch and fail on
1221 : : // it: there is BOOST_TEST_IGNORE_SIGCHLD but that only works when defined
1222 : : // at build-time of the boost library
1223 : 2 : void (*old_handler)(int) = signal(SIGCHLD, SIG_DFL);
1224 : :
1225 : : // Fork another process for testing before creating the lock, so that we
1226 : : // won't fork while holding the lock (which might be undefined, and is not
1227 : : // relevant as test case as that is avoided with -daemonize).
1228 : 2 : int fd[2];
1229 [ + - + - ]: 2 : BOOST_CHECK_EQUAL(socketpair(AF_UNIX, SOCK_STREAM, 0, fd), 0);
1230 : 2 : pid_t pid = fork();
1231 [ + + ]: 2 : if (!pid) {
1232 [ + - + - : 1 : BOOST_CHECK_EQUAL(close(fd[1]), 0); // Child: close parent end
+ - ]
1233 [ + - + - ]: 1 : TestOtherProcess(dirname, lockname, fd[0]);
1234 : : }
1235 [ + - + - : 1 : BOOST_CHECK_EQUAL(close(fd[0]), 0); // Parent: close child end
+ - ]
1236 : :
1237 : 1 : char ch;
1238 : : // Lock on non-existent directory should fail
1239 [ + - + - : 1 : BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
+ - ]
1240 [ + - + - : 1 : BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
+ - ]
1241 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ch, ResErrorWrite);
1242 : : #endif
1243 : : // Lock on non-existent directory should fail
1244 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname), util::LockResult::ErrorWrite);
+ - ]
1245 : :
1246 [ + - ]: 1 : fs::create_directories(dirname);
1247 : :
1248 : : // Probing lock on new directory should succeed
1249 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname, true), util::LockResult::Success);
+ - ]
1250 : :
1251 : : // Persistent lock on new directory should succeed
1252 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname), util::LockResult::Success);
+ - ]
1253 : :
1254 : : // Another lock on the directory from the same thread should succeed
1255 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname), util::LockResult::Success);
+ - ]
1256 : :
1257 : : // Another lock on the directory from a different thread within the same process should succeed
1258 : 1 : util::LockResult threadresult;
1259 [ + - ]: 2 : std::thread thr([&] { threadresult = util::LockDirectory(dirname, lockname); });
1260 [ + - ]: 1 : thr.join();
1261 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(threadresult, util::LockResult::Success);
1262 : : #ifndef WIN32
1263 : : // Try to acquire lock in child process while we're holding it, this should fail.
1264 [ + - + - : 1 : BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
+ - ]
1265 [ + - + - : 1 : BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
+ - ]
1266 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ch, ResErrorLock);
1267 : :
1268 : : // Give up our lock
1269 [ + - ]: 1 : ReleaseDirectoryLocks();
1270 : : // Probing lock from our side now should succeed, but not hold on to the lock.
1271 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname, true), util::LockResult::Success);
+ - ]
1272 : :
1273 : : // Try to acquire the lock in the child process, this should be successful.
1274 [ + - + - : 1 : BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
+ - ]
1275 [ + - + - : 1 : BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
+ - ]
1276 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ch, ResSuccess);
1277 : :
1278 : : // When we try to probe the lock now, it should fail.
1279 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname, true), util::LockResult::ErrorLock);
+ - ]
1280 : :
1281 : : // Unlock the lock in the child process
1282 [ + - + - : 1 : BOOST_CHECK_EQUAL(write(fd[1], &UnlockCommand, 1), 1);
+ - ]
1283 [ + - + - : 1 : BOOST_CHECK_EQUAL(read(fd[1], &ch, 1), 1);
+ - ]
1284 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ch, ResUnlockSuccess);
1285 : :
1286 : : // When we try to probe the lock now, it should succeed.
1287 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname, true), util::LockResult::Success);
+ - ]
1288 : :
1289 : : // Re-lock the lock in the child process, then wait for it to exit, check
1290 : : // successful return. After that, we check that exiting the process
1291 : : // has released the lock as we would expect by probing it.
1292 : 1 : int processstatus;
1293 [ + - + - : 1 : BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
+ - ]
1294 : : // The following line invokes the ~CNetCleanup dtor without
1295 : : // a paired SetupNetworking call. This is acceptable as long as
1296 : : // ~CNetCleanup is a no-op for non-Windows platforms.
1297 [ + - + - : 1 : BOOST_CHECK_EQUAL(write(fd[1], &ExitCommand, 1), 1);
+ - ]
1298 [ + - + - : 1 : BOOST_CHECK_EQUAL(waitpid(pid, &processstatus, 0), pid);
+ - ]
1299 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(processstatus, 0);
1300 [ + - + - : 1 : BOOST_CHECK_EQUAL(util::LockDirectory(dirname, lockname, true), util::LockResult::Success);
+ - ]
1301 : :
1302 : : // Restore SIGCHLD
1303 : 1 : signal(SIGCHLD, old_handler);
1304 [ + - + - : 1 : BOOST_CHECK_EQUAL(close(fd[1]), 0); // Close our side of the socketpair
+ - ]
1305 : : #endif
1306 : : // Clean up
1307 [ + - ]: 1 : ReleaseDirectoryLocks();
1308 [ + - ]: 1 : fs::remove_all(dirname);
1309 : 3 : }
1310 : :
1311 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(test_ToLower)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1312 : : {
1313 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower('@'), '@');
1314 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower('A'), 'a');
1315 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower('Z'), 'z');
1316 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower('['), '[');
1317 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower(0), 0);
1318 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower('\xff'), '\xff');
1319 : :
1320 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower(""), "");
1321 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower("#HODL"), "#hodl");
1322 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToLower("\x00\xfe\xff"), "\x00\xfe\xff");
1323 : 1 : }
1324 : :
1325 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(test_ToUpper)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1326 : : {
1327 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper('`'), '`');
1328 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper('a'), 'A');
1329 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper('z'), 'Z');
1330 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper('{'), '{');
1331 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper(0), 0);
1332 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper('\xff'), '\xff');
1333 : :
1334 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper(""), "");
1335 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper("#hodl"), "#HODL");
1336 [ + - ]: 1 : BOOST_CHECK_EQUAL(ToUpper("\x00\xfe\xff"), "\x00\xfe\xff");
1337 : 1 : }
1338 : :
1339 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(test_Capitalize)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1340 : : {
1341 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(Capitalize(""), "");
1342 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(Capitalize("bitcoin"), "Bitcoin");
1343 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(Capitalize("\x00\xfe\xff"), "\x00\xfe\xff");
1344 : 1 : }
1345 : :
1346 : 28 : static std::string SpanToStr(const Span<const char>& span)
1347 : : {
1348 : 28 : return std::string(span.begin(), span.end());
1349 : : }
1350 : :
1351 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(test_script_parsing)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1352 : : {
1353 : 1 : using namespace script;
1354 [ + - ]: 1 : std::string input;
1355 : 1 : Span<const char> sp;
1356 : 1 : bool success;
1357 : :
1358 : : // Const(...): parse a constant, update span to skip it if successful
1359 [ + - ]: 1 : input = "MilkToastHoney";
1360 [ + - ]: 1 : sp = input;
1361 [ + - + - ]: 1 : success = Const("", sp); // empty
1362 [ + - + - : 2 : BOOST_CHECK(success);
+ - ]
1363 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), "MilkToastHoney");
+ - ]
1364 : :
1365 [ + - + - ]: 1 : success = Const("Milk", sp);
1366 [ + - + - : 2 : BOOST_CHECK(success);
+ - ]
1367 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), "ToastHoney");
+ - ]
1368 : :
1369 [ + - + - ]: 1 : success = Const("Bread", sp);
1370 [ + - + - : 2 : BOOST_CHECK(!success);
+ - ]
1371 : :
1372 [ + - + - ]: 1 : success = Const("Toast", sp);
1373 [ + - + - : 2 : BOOST_CHECK(success);
+ - ]
1374 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), "Honey");
+ - ]
1375 : :
1376 [ + - + - ]: 1 : success = Const("Honeybadger", sp);
1377 [ + - + - : 2 : BOOST_CHECK(!success);
+ - ]
1378 : :
1379 [ + - + - ]: 1 : success = Const("Honey", sp);
1380 [ + - + - : 2 : BOOST_CHECK(success);
+ - ]
1381 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), "");
+ - ]
1382 : :
1383 : : // Func(...): parse a function call, update span to argument if successful
1384 [ + - ]: 1 : input = "Foo(Bar(xy,z()))";
1385 [ + - ]: 1 : sp = input;
1386 : :
1387 [ + - + - ]: 1 : success = Func("FooBar", sp);
1388 [ + - + - : 2 : BOOST_CHECK(!success);
+ - ]
1389 : :
1390 [ + - + - ]: 1 : success = Func("Foo(", sp);
1391 [ + - + - : 2 : BOOST_CHECK(!success);
+ - ]
1392 : :
1393 [ + - + - ]: 1 : success = Func("Foo", sp);
1394 [ + - + - : 2 : BOOST_CHECK(success);
+ - ]
1395 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), "Bar(xy,z())");
+ - ]
1396 : :
1397 [ + - + - ]: 1 : success = Func("Bar", sp);
1398 [ + - + - : 2 : BOOST_CHECK(success);
+ - ]
1399 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), "xy,z()");
+ - ]
1400 : :
1401 [ + - + - ]: 1 : success = Func("xy", sp);
1402 [ + - + - : 2 : BOOST_CHECK(!success);
+ - ]
1403 : :
1404 : : // Expr(...): return expression that span begins with, update span to skip it
1405 : 1 : Span<const char> result;
1406 : :
1407 [ + - ]: 1 : input = "(n*(n-1))/2";
1408 [ + - ]: 1 : sp = input;
1409 [ + - ]: 1 : result = Expr(sp);
1410 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(result), "(n*(n-1))/2");
+ - ]
1411 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), "");
+ - ]
1412 : :
1413 [ + - ]: 1 : input = "foo,bar";
1414 [ + - ]: 1 : sp = input;
1415 [ + - ]: 1 : result = Expr(sp);
1416 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(result), "foo");
+ - ]
1417 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), ",bar");
+ - ]
1418 : :
1419 [ + - ]: 1 : input = "(aaaaa,bbbbb()),c";
1420 [ + - ]: 1 : sp = input;
1421 [ + - ]: 1 : result = Expr(sp);
1422 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(result), "(aaaaa,bbbbb())");
+ - ]
1423 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), ",c");
+ - ]
1424 : :
1425 [ + - ]: 1 : input = "xyz)foo";
1426 [ + - ]: 1 : sp = input;
1427 [ + - ]: 1 : result = Expr(sp);
1428 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(result), "xyz");
+ - ]
1429 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), ")foo");
+ - ]
1430 : :
1431 [ + - ]: 1 : input = "((a),(b),(c)),xxx";
1432 [ + - ]: 1 : sp = input;
1433 [ + - ]: 1 : result = Expr(sp);
1434 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(result), "((a),(b),(c))");
+ - ]
1435 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(sp), ",xxx");
+ - ]
1436 : :
1437 : : // Split(...): split a string on every instance of sep, return vector
1438 : 1 : std::vector<Span<const char>> results;
1439 : :
1440 [ + - ]: 1 : input = "xxx";
1441 [ + - ]: 2 : results = Split(input, 'x');
1442 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(results.size(), 4U);
1443 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[0]), "");
+ - ]
1444 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[1]), "");
+ - ]
1445 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[2]), "");
+ - ]
1446 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[3]), "");
+ - ]
1447 : :
1448 [ + - ]: 1 : input = "one#two#three";
1449 [ + - ]: 2 : results = Split(input, '-');
1450 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(results.size(), 1U);
1451 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[0]), "one#two#three");
+ - ]
1452 : :
1453 [ + - ]: 1 : input = "one#two#three";
1454 [ + - ]: 2 : results = Split(input, '#');
1455 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(results.size(), 3U);
1456 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[0]), "one");
+ - ]
1457 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[1]), "two");
+ - ]
1458 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[2]), "three");
+ - ]
1459 : :
1460 [ + - ]: 1 : input = "*foo*bar*";
1461 [ + - ]: 2 : results = Split(input, '*');
1462 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(results.size(), 4U);
1463 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[0]), "");
+ - ]
1464 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[1]), "foo");
+ - ]
1465 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[2]), "bar");
+ - ]
1466 [ + - + - : 1 : BOOST_CHECK_EQUAL(SpanToStr(results[3]), "");
+ - ]
1467 : 1 : }
1468 : :
1469 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(test_SplitString)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1470 : : {
1471 : : // Empty string.
1472 : 1 : {
1473 : 1 : std::vector<std::string> result = SplitString("", '-');
1474 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result.size(), 1);
1475 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[0], "");
1476 : 1 : }
1477 : :
1478 : : // Empty items.
1479 : 1 : {
1480 : 1 : std::vector<std::string> result = SplitString("-", '-');
1481 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result.size(), 2);
1482 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[0], "");
1483 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[1], "");
1484 : 1 : }
1485 : :
1486 : : // More empty items.
1487 : 1 : {
1488 : 1 : std::vector<std::string> result = SplitString("--", '-');
1489 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result.size(), 3);
1490 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[0], "");
1491 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[1], "");
1492 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[2], "");
1493 : 1 : }
1494 : :
1495 : : // Separator is not present.
1496 : 1 : {
1497 : 1 : std::vector<std::string> result = SplitString("abc", '-');
1498 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result.size(), 1);
1499 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[0], "abc");
1500 : 1 : }
1501 : :
1502 : : // Basic behavior.
1503 : 1 : {
1504 : 1 : std::vector<std::string> result = SplitString("a-b", '-');
1505 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result.size(), 2);
1506 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[0], "a");
1507 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[1], "b");
1508 : 1 : }
1509 : :
1510 : : // Case-sensitivity of the separator.
1511 : 1 : {
1512 : 1 : std::vector<std::string> result = SplitString("AAA", 'a');
1513 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result.size(), 1);
1514 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(result[0], "AAA");
1515 : 1 : }
1516 : :
1517 : : // multiple split characters
1518 : 1 : {
1519 : 1 : using V = std::vector<std::string>;
1520 [ + - + + : 9 : BOOST_TEST(SplitString("a,b.c:d;e", ",;") == V({"a", "b.c:d", "e"}));
+ - + - +
- + - + +
- - - - ]
1521 [ + - + + : 13 : BOOST_TEST(SplitString("a,b.c:d;e", ",;:.") == V({"a", "b", "c", "d", "e"}));
+ - + - +
- + - + +
- - - - ]
1522 [ + - + + : 5 : BOOST_TEST(SplitString("a,b.c:d;e", "") == V({"a,b.c:d;e"}));
+ - + - +
- + - + +
- - - - ]
1523 [ + - + + : 5 : BOOST_TEST(SplitString("aaa", "bcdefg") == V({"aaa"}));
+ - + - +
- + - + +
- - - - ]
1524 [ + - + + : 8 : BOOST_TEST(SplitString("x\0a,b"s, "\0"s) == V({"x", "a,b"}));
+ - + - +
- + - + -
+ + - - -
- ]
1525 [ + - + + : 8 : BOOST_TEST(SplitString("x\0a,b"s, '\0') == V({"x", "a,b"}));
+ - + - +
- + - + +
- - - - ]
1526 [ + - + + : 10 : BOOST_TEST(SplitString("x\0a,b"s, "\0,"s) == V({"x", "a", "b"}));
+ - + - +
- + - + -
+ + - - -
- ]
1527 [ + - + + : 11 : BOOST_TEST(SplitString("abcdefg", "bcd") == V({"a", "", "", "efg"}));
+ - + - +
- + - + +
- - - - ]
1528 : : }
1529 : 1 : }
1530 : :
1531 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(test_LogEscapeMessage)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1532 : : {
1533 : : // ASCII and UTF-8 must pass through unaltered.
1534 [ + - ]: 1 : BOOST_CHECK_EQUAL(BCLog::LogEscapeMessage("Valid log message貓"), "Valid log message貓");
1535 : : // Newlines must pass through unaltered.
1536 [ + - ]: 1 : BOOST_CHECK_EQUAL(BCLog::LogEscapeMessage("Message\n with newlines\n"), "Message\n with newlines\n");
1537 : : // Other control characters are escaped in C syntax.
1538 [ + - ]: 1 : BOOST_CHECK_EQUAL(BCLog::LogEscapeMessage("\x01\x7f Corrupted log message\x0d"), R"(\x01\x7f Corrupted log message\x0d)");
1539 : : // Embedded NULL characters are escaped too.
1540 : 1 : const std::string NUL("O\x00O", 3);
1541 [ + - + - : 1 : BOOST_CHECK_EQUAL(BCLog::LogEscapeMessage(NUL), R"(O\x00O)");
+ - ]
1542 : 1 : }
1543 : :
1544 : : namespace {
1545 : :
1546 : : struct Tracker
1547 : : {
1548 : : //! Points to the original object (possibly itself) we moved/copied from
1549 : : const Tracker* origin;
1550 : : //! How many copies where involved between the original object and this one (moves are not counted)
1551 : : int copies{0};
1552 : :
1553 : 1 : Tracker() noexcept : origin(this) {}
1554 : 10 : Tracker(const Tracker& t) noexcept : origin(t.origin), copies(t.copies + 1) {}
1555 : 13 : Tracker(Tracker&& t) noexcept : origin(t.origin), copies(t.copies) {}
1556 : : Tracker& operator=(const Tracker& t) noexcept
1557 : : {
1558 : : if (this != &t) {
1559 : : origin = t.origin;
1560 : : copies = t.copies + 1;
1561 : : }
1562 : : return *this;
1563 : : }
1564 : : };
1565 : :
1566 : : }
1567 : :
1568 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(test_tracked_vector)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1569 : : {
1570 : 1 : Tracker t1;
1571 : 1 : Tracker t2;
1572 : 1 : Tracker t3;
1573 : :
1574 [ + - ]: 2 : BOOST_CHECK(t1.origin == &t1);
1575 [ + - ]: 2 : BOOST_CHECK(t2.origin == &t2);
1576 [ + - ]: 2 : BOOST_CHECK(t3.origin == &t3);
1577 : :
1578 : 1 : auto v1 = Vector(t1);
1579 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v1.size(), 1U);
1580 [ + - + - : 2 : BOOST_CHECK(v1[0].origin == &t1);
+ - ]
1581 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v1[0].copies, 1);
1582 : :
1583 [ + - ]: 1 : auto v2 = Vector(std::move(t2));
1584 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v2.size(), 1U);
1585 [ + - + - : 2 : BOOST_CHECK(v2[0].origin == &t2); // NOLINT(*-use-after-move)
+ - ]
1586 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v2[0].copies, 0);
1587 : :
1588 [ + - ]: 1 : auto v3 = Vector(t1, std::move(t2));
1589 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v3.size(), 2U);
1590 [ + - + - : 2 : BOOST_CHECK(v3[0].origin == &t1);
+ - ]
1591 [ + - + - : 2 : BOOST_CHECK(v3[1].origin == &t2); // NOLINT(*-use-after-move)
+ - ]
1592 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v3[0].copies, 1);
1593 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v3[1].copies, 0);
1594 : :
1595 [ + - ]: 1 : auto v4 = Vector(std::move(v3[0]), v3[1], std::move(t3));
1596 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v4.size(), 3U);
1597 [ + - + - : 2 : BOOST_CHECK(v4[0].origin == &t1);
+ - ]
1598 [ + - + - : 2 : BOOST_CHECK(v4[1].origin == &t2);
+ - ]
1599 [ + - + - : 2 : BOOST_CHECK(v4[2].origin == &t3); // NOLINT(*-use-after-move)
+ - ]
1600 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v4[0].copies, 1);
1601 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v4[1].copies, 1);
1602 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v4[2].copies, 0);
1603 : :
1604 [ + - + - ]: 1 : auto v5 = Cat(v1, v4);
1605 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v5.size(), 4U);
1606 [ + - + - : 2 : BOOST_CHECK(v5[0].origin == &t1);
+ - ]
1607 [ + - + - : 2 : BOOST_CHECK(v5[1].origin == &t1);
+ - ]
1608 [ + - + - : 2 : BOOST_CHECK(v5[2].origin == &t2);
+ - ]
1609 [ + - + - : 2 : BOOST_CHECK(v5[3].origin == &t3);
+ - ]
1610 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v5[0].copies, 2);
1611 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v5[1].copies, 2);
1612 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v5[2].copies, 2);
1613 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v5[3].copies, 1);
1614 : :
1615 [ + - ]: 1 : auto v6 = Cat(std::move(v1), v3);
1616 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v6.size(), 3U);
1617 [ + - + - : 2 : BOOST_CHECK(v6[0].origin == &t1);
+ - ]
1618 [ + - + - : 2 : BOOST_CHECK(v6[1].origin == &t1);
+ - ]
1619 [ + - + - : 2 : BOOST_CHECK(v6[2].origin == &t2);
+ - ]
1620 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v6[0].copies, 1);
1621 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v6[1].copies, 2);
1622 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v6[2].copies, 1);
1623 : :
1624 [ + - + - ]: 1 : auto v7 = Cat(v2, std::move(v4));
1625 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v7.size(), 4U);
1626 [ + - + - : 2 : BOOST_CHECK(v7[0].origin == &t2);
+ - ]
1627 [ + - + - : 2 : BOOST_CHECK(v7[1].origin == &t1);
+ - ]
1628 [ + - + - : 2 : BOOST_CHECK(v7[2].origin == &t2);
+ - ]
1629 [ + - + - : 2 : BOOST_CHECK(v7[3].origin == &t3);
+ - ]
1630 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v7[0].copies, 1);
1631 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v7[1].copies, 1);
1632 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v7[2].copies, 1);
1633 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v7[3].copies, 0);
1634 : :
1635 [ + - ]: 1 : auto v8 = Cat(std::move(v2), std::move(v3));
1636 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v8.size(), 3U);
1637 [ + - + - : 2 : BOOST_CHECK(v8[0].origin == &t2);
+ - ]
1638 [ + - + - : 2 : BOOST_CHECK(v8[1].origin == &t1);
+ - ]
1639 [ + - + - : 2 : BOOST_CHECK(v8[2].origin == &t2);
+ - ]
1640 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v8[0].copies, 0);
1641 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v8[1].copies, 1);
1642 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v8[2].copies, 0);
1643 : 1 : }
1644 : :
1645 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(message_sign)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1646 : : {
1647 : 1 : const std::array<unsigned char, 32> privkey_bytes = {
1648 : : // just some random data
1649 : : // derived address from this private key: 15CRxFdyRpGZLW9w8HnHvVduizdL5jKNbs
1650 : : 0xD9, 0x7F, 0x51, 0x08, 0xF1, 0x1C, 0xDA, 0x6E,
1651 : : 0xEE, 0xBA, 0xAA, 0x42, 0x0F, 0xEF, 0x07, 0x26,
1652 : : 0xB1, 0xF8, 0x98, 0x06, 0x0B, 0x98, 0x48, 0x9F,
1653 : : 0xA3, 0x09, 0x84, 0x63, 0xC0, 0x03, 0x28, 0x66
1654 : : };
1655 : :
1656 : 1 : const std::string message = "Trust no one";
1657 : :
1658 [ + - ]: 1 : const std::string expected_signature =
1659 [ + - ]: 1 : "IPojfrX2dfPnH26UegfbGQQLrdK844DlHq5157/P6h57WyuS/Qsl+h/WSVGDF4MUi4rWSswW38oimDYfNNUBUOk=";
1660 : :
1661 : 1 : CKey privkey;
1662 [ + - ]: 1 : std::string generated_signature;
1663 : :
1664 [ + - + - : 2 : BOOST_REQUIRE_MESSAGE(!privkey.IsValid(),
+ - ]
1665 : : "Confirm the private key is invalid");
1666 : :
1667 [ + - + - : 2 : BOOST_CHECK_MESSAGE(!MessageSign(privkey, message, generated_signature),
+ - + - ]
1668 : : "Sign with an invalid private key");
1669 : :
1670 [ + - ]: 1 : privkey.Set(privkey_bytes.begin(), privkey_bytes.end(), true);
1671 : :
1672 [ + - + - : 2 : BOOST_REQUIRE_MESSAGE(privkey.IsValid(),
+ - ]
1673 : : "Confirm the private key is valid");
1674 : :
1675 [ + - + - : 2 : BOOST_CHECK_MESSAGE(MessageSign(privkey, message, generated_signature),
+ - + - ]
1676 : : "Sign with a valid private key");
1677 : :
1678 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(expected_signature, generated_signature);
1679 : 1 : }
1680 : :
1681 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(message_verify)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1682 : : {
1683 [ + - + - : 1 : BOOST_CHECK_EQUAL(
+ - + - ]
1684 : : MessageVerify(
1685 : : "invalid address",
1686 : : "signature should be irrelevant",
1687 : : "message too"),
1688 : : MessageVerificationResult::ERR_INVALID_ADDRESS);
1689 : :
1690 [ + - + - : 1 : BOOST_CHECK_EQUAL(
+ - + - ]
1691 : : MessageVerify(
1692 : : "3B5fQsEXEaV8v6U3ejYc8XaKXAkyQj2MjV",
1693 : : "signature should be irrelevant",
1694 : : "message too"),
1695 : : MessageVerificationResult::ERR_ADDRESS_NO_KEY);
1696 : :
1697 [ + - + - : 1 : BOOST_CHECK_EQUAL(
+ - + - ]
1698 : : MessageVerify(
1699 : : "1KqbBpLy5FARmTPD4VZnDDpYjkUvkr82Pm",
1700 : : "invalid signature, not in base64 encoding",
1701 : : "message should be irrelevant"),
1702 : : MessageVerificationResult::ERR_MALFORMED_SIGNATURE);
1703 : :
1704 [ + - + - : 1 : BOOST_CHECK_EQUAL(
+ - + - ]
1705 : : MessageVerify(
1706 : : "1KqbBpLy5FARmTPD4VZnDDpYjkUvkr82Pm",
1707 : : "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
1708 : : "message should be irrelevant"),
1709 : : MessageVerificationResult::ERR_PUBKEY_NOT_RECOVERED);
1710 : :
1711 [ + - + - : 1 : BOOST_CHECK_EQUAL(
+ - + - ]
1712 : : MessageVerify(
1713 : : "15CRxFdyRpGZLW9w8HnHvVduizdL5jKNbs",
1714 : : "IPojfrX2dfPnH26UegfbGQQLrdK844DlHq5157/P6h57WyuS/Qsl+h/WSVGDF4MUi4rWSswW38oimDYfNNUBUOk=",
1715 : : "I never signed this"),
1716 : : MessageVerificationResult::ERR_NOT_SIGNED);
1717 : :
1718 [ + - + - : 1 : BOOST_CHECK_EQUAL(
+ - + - ]
1719 : : MessageVerify(
1720 : : "15CRxFdyRpGZLW9w8HnHvVduizdL5jKNbs",
1721 : : "IPojfrX2dfPnH26UegfbGQQLrdK844DlHq5157/P6h57WyuS/Qsl+h/WSVGDF4MUi4rWSswW38oimDYfNNUBUOk=",
1722 : : "Trust no one"),
1723 : : MessageVerificationResult::OK);
1724 : :
1725 [ + - + - : 1 : BOOST_CHECK_EQUAL(
+ - + - ]
1726 : : MessageVerify(
1727 : : "11canuhp9X2NocwCq7xNrQYTmUgZAnLK3",
1728 : : "IIcaIENoYW5jZWxsb3Igb24gYnJpbmsgb2Ygc2Vjb25kIGJhaWxvdXQgZm9yIGJhbmtzIAaHRtbCeDZINyavx14=",
1729 : : "Trust me"),
1730 : : MessageVerificationResult::OK);
1731 : 1 : }
1732 : :
1733 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(message_hash)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1734 : : {
1735 : 1 : const std::string unsigned_tx = "...";
1736 [ + - ]: 1 : const std::string prefixed_message =
1737 [ + - ]: 2 : std::string(1, (char)MESSAGE_MAGIC.length()) +
1738 [ + - ]: 2 : MESSAGE_MAGIC +
1739 [ + - + - : 2 : std::string(1, (char)unsigned_tx.length()) +
+ - ]
1740 [ + - ]: 1 : unsigned_tx;
1741 : :
1742 [ + - ]: 1 : const uint256 signature_hash = Hash(unsigned_tx);
1743 [ + - ]: 1 : const uint256 message_hash1 = Hash(prefixed_message);
1744 [ + - ]: 1 : const uint256 message_hash2 = MessageHash(unsigned_tx);
1745 : :
1746 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(message_hash1, message_hash2);
1747 [ + - + - ]: 1 : BOOST_CHECK_NE(message_hash1, signature_hash);
1748 : 1 : }
1749 : :
1750 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(remove_prefix)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1751 : : {
1752 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefix("./common/system.h", "./"), "common/system.h");
1753 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefixView("foo", "foo"), "");
1754 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefix("foo", "fo"), "o");
1755 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefixView("foo", "f"), "oo");
1756 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefix("foo", ""), "foo");
1757 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefixView("fo", "foo"), "fo");
1758 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefix("f", "foo"), "f");
1759 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefixView("", "foo"), "");
1760 [ + - ]: 1 : BOOST_CHECK_EQUAL(RemovePrefix("", ""), "");
1761 : 1 : }
1762 : :
1763 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(util_ParseByteUnits)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1764 : : {
1765 : 1 : auto noop = ByteUnit::NOOP;
1766 : :
1767 : : // no multiplier
1768 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("1", noop).value(), 1);
1769 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("0", noop).value(), 0);
1770 : :
1771 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("1k", noop).value(), 1000ULL);
1772 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("1K", noop).value(), 1ULL << 10);
1773 : :
1774 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("2m", noop).value(), 2'000'000ULL);
1775 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("2M", noop).value(), 2ULL << 20);
1776 : :
1777 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("3g", noop).value(), 3'000'000'000ULL);
1778 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("3G", noop).value(), 3ULL << 30);
1779 : :
1780 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("4t", noop).value(), 4'000'000'000'000ULL);
1781 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("4T", noop).value(), 4ULL << 40);
1782 : :
1783 : : // check default multiplier
1784 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("5", ByteUnit::K).value(), 5ULL << 10);
1785 : :
1786 : : // NaN
1787 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("", noop));
1788 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("foo", noop));
1789 : :
1790 : : // whitespace
1791 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("123m ", noop));
1792 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits(" 123m", noop));
1793 : :
1794 : : // no +-
1795 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("-123m", noop));
1796 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("+123m", noop));
1797 : :
1798 : : // zero padding
1799 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(ParseByteUnits("020M", noop).value(), 20ULL << 20);
1800 : :
1801 : : // fractions not allowed
1802 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("0.5T", noop));
1803 : :
1804 : : // overflow
1805 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("18446744073709551615g", noop));
1806 : :
1807 : : // invalid unit
1808 [ + - + - ]: 2 : BOOST_CHECK(!ParseByteUnits("1x", noop));
1809 : 1 : }
1810 : :
1811 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(util_ReadBinaryFile)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1812 : : {
1813 : 1 : fs::path tmpfolder = m_args.GetDataDirBase();
1814 [ + - + - ]: 2 : fs::path tmpfile = tmpfolder / "read_binary.dat";
1815 : 1 : std::string expected_text;
1816 [ + + ]: 31 : for (int i = 0; i < 30; i++) {
1817 [ + - ]: 30 : expected_text += "0123456789";
1818 : : }
1819 : 1 : {
1820 [ + - ]: 1 : std::ofstream file{tmpfile};
1821 [ + - ]: 1 : file << expected_text;
1822 : 1 : }
1823 : 1 : {
1824 : : // read all contents in file
1825 [ + - + - ]: 1 : auto [valid, text] = ReadBinaryFile(tmpfile);
1826 [ + - + - : 2 : BOOST_CHECK(valid);
+ - ]
1827 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(text, expected_text);
1828 : 0 : }
1829 : 1 : {
1830 : : // read half contents in file
1831 [ + - + - ]: 1 : auto [valid, text] = ReadBinaryFile(tmpfile, expected_text.size() / 2);
1832 [ + - + - : 2 : BOOST_CHECK(valid);
+ - ]
1833 [ + - + - : 1 : BOOST_CHECK_EQUAL(text, expected_text.substr(0, expected_text.size() / 2));
+ - ]
1834 : 0 : }
1835 : 1 : {
1836 : : // read from non-existent file
1837 [ + - + - ]: 2 : fs::path invalid_file = tmpfolder / "invalid_binary.dat";
1838 [ + - ]: 1 : auto [valid, text] = ReadBinaryFile(invalid_file);
1839 [ + - + - : 2 : BOOST_CHECK(!valid);
+ - ]
1840 [ + - + - ]: 2 : BOOST_CHECK(text.empty());
1841 : 2 : }
1842 : 3 : }
1843 : :
1844 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(util_WriteBinaryFile)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1845 : : {
1846 : 1 : fs::path tmpfolder = m_args.GetDataDirBase();
1847 [ + - + - ]: 2 : fs::path tmpfile = tmpfolder / "write_binary.dat";
1848 [ + - ]: 1 : std::string expected_text = "bitcoin";
1849 [ + - ]: 1 : auto valid = WriteBinaryFile(tmpfile, expected_text);
1850 [ + - ]: 1 : std::string actual_text;
1851 [ + - ]: 1 : std::ifstream file{tmpfile};
1852 [ + - ]: 1 : file >> actual_text;
1853 [ + - + - : 2 : BOOST_CHECK(valid);
+ - ]
1854 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(actual_text, expected_text);
1855 : 3 : }
1856 : :
1857 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(clearshrink_test)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1858 : : {
1859 : 1 : {
1860 : 1 : std::vector<uint8_t> v = {1, 2, 3};
1861 : 1 : ClearShrink(v);
1862 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v.size(), 0);
1863 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v.capacity(), 0);
1864 : 0 : }
1865 : :
1866 : 1 : {
1867 : 1 : std::vector<bool> v = {false, true, false, false, true, true};
1868 : 1 : ClearShrink(v);
1869 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v.size(), 0);
1870 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v.capacity(), 0);
1871 : 0 : }
1872 : :
1873 : 1 : {
1874 : 1 : std::deque<int> v = {1, 3, 3, 7};
1875 : 1 : ClearShrink(v);
1876 [ + - + - ]: 1 : BOOST_CHECK_EQUAL(v.size(), 0);
1877 : : // std::deque has no capacity() we can observe.
1878 : 1 : }
1879 : 1 : }
1880 : :
1881 : : template <typename T>
1882 : 5 : void TestCheckedLeftShift()
1883 : : {
1884 : 5 : constexpr auto MAX{std::numeric_limits<T>::max()};
1885 : :
1886 : : // Basic operations
1887 [ + - ]: 5 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(0, 1), 0);
1888 [ + - ]: 5 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(0, 127), 0);
1889 [ + - ]: 5 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(1, 1), 2);
1890 [ + - ]: 5 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(2, 2), 8);
1891 [ + - ]: 5 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(MAX >> 1, 1), MAX - 1);
1892 : :
1893 : : // Max left shift
1894 [ + - ]: 5 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(1, std::numeric_limits<T>::digits - 1), MAX / 2 + 1);
1895 : :
1896 : : // Overflow cases
1897 [ + - ]: 10 : BOOST_CHECK(!CheckedLeftShift<T>((MAX >> 1) + 1, 1));
1898 [ + - ]: 10 : BOOST_CHECK(!CheckedLeftShift<T>(MAX, 1));
1899 [ + - ]: 10 : BOOST_CHECK(!CheckedLeftShift<T>(1, std::numeric_limits<T>::digits));
1900 [ + - ]: 10 : BOOST_CHECK(!CheckedLeftShift<T>(1, std::numeric_limits<T>::digits + 1));
1901 : :
1902 : : if constexpr (std::is_signed_v<T>) {
1903 : 2 : constexpr auto MIN{std::numeric_limits<T>::min()};
1904 : : // Negative input
1905 [ + - ]: 2 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(-1, 1), -2);
1906 [ + - ]: 2 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>((MIN >> 2), 1), MIN / 2);
1907 [ + - ]: 2 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>((MIN >> 1) + 1, 1), MIN + 2);
1908 [ + - ]: 2 : BOOST_CHECK_EQUAL(CheckedLeftShift<T>(MIN >> 1, 1), MIN);
1909 : : // Overflow negative
1910 [ + - ]: 4 : BOOST_CHECK(!CheckedLeftShift<T>((MIN >> 1) - 1, 1));
1911 [ + - ]: 4 : BOOST_CHECK(!CheckedLeftShift<T>(MIN >> 1, 2));
1912 [ + - ]: 4 : BOOST_CHECK(!CheckedLeftShift<T>(-1, 100));
1913 : : }
1914 : 5 : }
1915 : :
1916 : : template <typename T>
1917 : 5 : void TestSaturatingLeftShift()
1918 : : {
1919 : 5 : constexpr auto MAX{std::numeric_limits<T>::max()};
1920 : :
1921 : : // Basic operations
1922 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(0, 1), 0);
1923 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(0, 127), 0);
1924 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(1, 1), 2);
1925 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(2, 2), 8);
1926 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(MAX >> 1, 1), MAX - 1);
1927 : :
1928 : : // Max left shift
1929 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(1, std::numeric_limits<T>::digits - 1), MAX / 2 + 1);
1930 : :
1931 : : // Saturation cases
1932 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>((MAX >> 1) + 1, 1), MAX);
1933 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(MAX, 1), MAX);
1934 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(1, std::numeric_limits<T>::digits), MAX);
1935 [ + - ]: 5 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(1, std::numeric_limits<T>::digits + 1), MAX);
1936 : :
1937 : : if constexpr (std::is_signed_v<T>) {
1938 : 2 : constexpr auto MIN{std::numeric_limits<T>::min()};
1939 : : // Negative input
1940 [ + - ]: 2 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(-1, 1), -2);
1941 [ + - ]: 2 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>((MIN >> 2), 1), MIN / 2);
1942 [ + - ]: 2 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>((MIN >> 1) + 1, 1), MIN + 2);
1943 [ + - ]: 2 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(MIN >> 1, 1), MIN);
1944 : : // Saturation negative
1945 [ + - ]: 2 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>((MIN >> 1) - 1, 1), MIN);
1946 [ + - ]: 2 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(MIN >> 1, 2), MIN);
1947 [ + - ]: 2 : BOOST_CHECK_EQUAL(SaturatingLeftShift<T>(-1, 100), MIN);
1948 : : }
1949 : 5 : }
1950 : :
1951 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(checked_left_shift_test)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1952 : : {
1953 : 1 : TestCheckedLeftShift<uint8_t>();
1954 : 1 : TestCheckedLeftShift<int8_t>();
1955 : 1 : TestCheckedLeftShift<size_t>();
1956 : 1 : TestCheckedLeftShift<uint64_t>();
1957 : 1 : TestCheckedLeftShift<int64_t>();
1958 : 1 : }
1959 : :
1960 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(saturating_left_shift_test)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1961 : : {
1962 : 1 : TestSaturatingLeftShift<uint8_t>();
1963 : 1 : TestSaturatingLeftShift<int8_t>();
1964 : 1 : TestSaturatingLeftShift<size_t>();
1965 : 1 : TestSaturatingLeftShift<uint64_t>();
1966 : 1 : TestSaturatingLeftShift<int64_t>();
1967 : 1 : }
1968 : :
1969 [ + - + - : 7 : BOOST_AUTO_TEST_CASE(mib_string_literal_test)
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- ]
1970 : : {
1971 [ + - ]: 1 : BOOST_CHECK_EQUAL(0_MiB, 0);
1972 [ + - ]: 1 : BOOST_CHECK_EQUAL(1_MiB, 1024 * 1024);
1973 : 1 : const auto max_mib{std::numeric_limits<size_t>::max() >> 20};
1974 [ + - - + : 2 : BOOST_CHECK_EXCEPTION(operator""_MiB(static_cast<unsigned long long>(max_mib) + 1), std::overflow_error, HasReason("MiB value too large for size_t byte conversion"));
- - - - -
+ + - + -
+ - ]
1975 : 1 : }
1976 : :
1977 : : BOOST_AUTO_TEST_SUITE_END()
|