1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
|
/*
* (C) 2014,2015 Jack Lloyd
* (C) 2015 Simon Warta (Kullo GmbH)
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_TESTS_H__
#define BOTAN_TESTS_H__
#include <botan/build.h>
#include <botan/rng.h>
#include <botan/hex.h>
#if defined(BOTAN_HAS_BIGINT)
#include <botan/bigint.h>
#endif
#if defined(BOTAN_HAS_EC_CURVE_GFP)
#include <botan/point_gfp.h>
#endif
#include <fstream>
#include <functional>
#include <map>
#include <memory>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <vector>
namespace Botan_Tests {
using Botan::byte;
#if defined(BOTAN_HAS_BIGINT)
using Botan::BigInt;
#endif
class Test_Error : public Botan::Exception
{
public:
Test_Error(const std::string& what) : Exception("Test error", what) {}
};
/*
* A generic test which retuns a set of results when run.
* The tests may not all have the same type (for example test
* "block" returns results for "AES-128" and "AES-256").
*
* For most test cases you want Text_Based_Test derived below
*/
class Test
{
public:
/*
* Some number of test results, all associated with who()
*/
class Result
{
public:
Result(const std::string& who) : m_who(who) {}
size_t tests_passed() const { return m_tests_passed; }
size_t tests_failed() const { return m_fail_log.size(); }
size_t tests_run() const { return tests_passed() + tests_failed(); }
bool any_results() const { return tests_run() > 0; }
const std::string& who() const { return m_who; }
std::string result_string(bool verbose) const;
static Result Failure(const std::string& who,
const std::string& what)
{
Result r(who);
r.test_failure(what);
return r;
}
static Result Note(const std::string& who,
const std::string& what)
{
Result r(who);
r.test_note(what);
return r;
}
static Result OfExpectedFailure(bool expecting_failure,
const Test::Result& result)
{
if(!expecting_failure)
{
return result;
}
if(result.tests_failed() == 0)
{
Result r = result;
r.test_failure("Expected this test to fail, but it did not");
return r;
}
else
{
Result r(result.who());
r.test_note("Got expected failure");
return r;
}
}
void merge(const Result& other);
void test_note(const std::string& note, const char* extra = nullptr);
template<typename Alloc>
void test_note(const std::string& who, const std::vector<uint8_t, Alloc>& vec)
{
const std::string hex = Botan::hex_encode(vec);
return test_note(who, hex.c_str());
}
void note_missing(const std::string& thing);
bool test_success(const std::string& note = "");
bool test_failure(const std::string& err);
bool test_failure(const std::string& what, const std::string& error);
void test_failure(const std::string& what, const uint8_t buf[], size_t buf_len);
template<typename Alloc>
void test_failure(const std::string& what, const std::vector<uint8_t, Alloc>& buf)
{
test_failure(what, buf.data(), buf.size());
}
bool confirm(const std::string& what, bool expr)
{
return test_eq(what, expr, true);
}
template<typename T>
bool test_is_eq(const T& produced, const T& expected)
{
return test_is_eq("comparison", produced, expected);
}
template<typename T>
bool test_is_eq(const std::string& what, const T& produced, const T& expected)
{
std::ostringstream out;
out << m_who << " " << what;
if(produced == expected)
{
out << " produced expected result " << produced;
return test_success(out.str());
}
else
{
out << " produced unexpected result " << produced << " expected " << expected;
return test_failure(out.str());
}
}
bool test_eq(const std::string& what, const char* produced, const char* expected);
bool test_eq(const std::string& what,
const std::string& produced,
const std::string& expected);
bool test_eq(const std::string& what, bool produced, bool expected);
bool test_eq(const std::string& what, size_t produced, size_t expected);
bool test_lt(const std::string& what, size_t produced, size_t expected);
bool test_gte(const std::string& what, size_t produced, size_t expected);
bool test_rc_ok(const std::string& func, int rc);
bool test_rc_fail(const std::string& func, const std::string& why, int rc);
#if defined(BOTAN_HAS_BIGINT)
bool test_eq(const std::string& what, const BigInt& produced, const BigInt& expected);
bool test_ne(const std::string& what, const BigInt& produced, const BigInt& expected);
#endif
#if defined(BOTAN_HAS_EC_CURVE_GFP)
bool test_eq(const std::string& what,
const Botan::PointGFp& a,
const Botan::PointGFp& b);
#endif
bool test_eq(const char* producer, const std::string& what,
const uint8_t produced[], size_t produced_len,
const uint8_t expected[], size_t expected_len);
bool test_ne(const std::string& what,
const uint8_t produced[], size_t produced_len,
const uint8_t expected[], size_t expected_len);
template<typename Alloc1, typename Alloc2>
bool test_eq(const std::string& what,
const std::vector<uint8_t, Alloc1>& produced,
const std::vector<uint8_t, Alloc2>& expected)
{
return test_eq(nullptr, what,
produced.data(), produced.size(),
expected.data(), expected.size());
}
template<typename Alloc1, typename Alloc2>
bool test_eq(const std::string& producer, const std::string& what,
const std::vector<uint8_t, Alloc1>& produced,
const std::vector<uint8_t, Alloc2>& expected)
{
return test_eq(producer.c_str(), what,
produced.data(), produced.size(),
expected.data(), expected.size());
}
template<typename Alloc>
bool test_eq(const std::string& what,
const std::vector<uint8_t, Alloc>& produced,
const char* expected_hex)
{
const std::vector<byte> expected = Botan::hex_decode(expected_hex);
return test_eq(nullptr, what,
produced.data(), produced.size(),
expected.data(), expected.size());
}
template<typename Alloc1, typename Alloc2>
bool test_ne(const std::string& what,
const std::vector<uint8_t, Alloc1>& produced,
const std::vector<uint8_t, Alloc2>& expected)
{
return test_ne(what,
produced.data(), produced.size(),
expected.data(), expected.size());
}
bool test_throws(const std::string& what, std::function<void ()> fn);
void set_ns_consumed(uint64_t ns) { m_ns_taken = ns; }
void start_timer();
void end_timer();
private:
std::string m_who;
uint64_t m_started = 0;
uint64_t m_ns_taken = 0;
size_t m_tests_passed = 0;
std::vector<std::string> m_fail_log;
std::vector<std::string> m_log;
};
class Registration
{
public:
Registration(const std::string& name, Test* test);
};
virtual std::vector<Test::Result> run() = 0;
virtual ~Test() {}
static std::vector<Test::Result> run_test(const std::string& what, bool fail_if_missing);
static std::map<std::string, std::unique_ptr<Test>>& global_registry();
static std::set<std::string> registered_tests();
static Test* get_test(const std::string& test_name);
static std::string data_file(const std::string& what);
template<typename Alloc>
static std::vector<uint8_t, Alloc>
mutate_vec(const std::vector<uint8_t, Alloc>& v, bool maybe_resize = false)
{
auto& rng = Test::rng();
std::vector<uint8_t, Alloc> r = v;
if(maybe_resize && (r.empty() || rng.next_byte() < 32))
{
// TODO: occasionally truncate, insert at random index
const size_t add = 1 + (rng.next_byte() % 16);
r.resize(r.size() + add);
rng.randomize(&r[r.size() - add], add);
}
if(r.size() > 0)
{
const size_t offset = rng.get_random<uint16_t>() % r.size();
r[offset] ^= rng.next_nonzero_byte();
}
return r;
}
static void setup_tests(size_t soak,
bool log_succcss,
const std::string& data_dir,
Botan::RandomNumberGenerator* rng);
static size_t soak_level();
static bool log_success();
static const std::string& data_dir();
static Botan::RandomNumberGenerator& rng();
static std::string random_password();
static uint64_t timestamp(); // nanoseconds arbitrary epoch
private:
static std::string m_data_dir;
static Botan::RandomNumberGenerator* m_test_rng;
static size_t m_soak_level;
static bool m_log_success;
};
/*
* Register the test with the runner
*/
#define BOTAN_REGISTER_TEST(type, Test_Class) \
namespace { Test::Registration reg_ ## Test_Class ## _tests(type, new Test_Class); }
/*
* A test based on reading an input file which contains key/value pairs
* Special note: the last value in required_key (there must be at least
* one), is the output key. This triggers the callback.
*
* Calls run_one_test with the variables set. If an ini-style [header]
* is used in the file, then header will be set to that value. This allows
* splitting up tests between [valid] and [invalid] tests, or different
* related algorithms tested in the same file. Use the protected get_XXX
* functions to retrieve formatted values from the VarMap
*
* If most of your tests are text-based but you find yourself with a few
* odds-and-ends tests that you want to do, override run_final_tests which
* can test whatever it likes and returns a vector of Results.
*/
class Text_Based_Test : public Test
{
public:
Text_Based_Test(const std::string& input_file,
const std::vector<std::string>& required_keys,
const std::vector<std::string>& optional_keys = {});
Text_Based_Test(const std::string& algo,
const std::string& input_file,
const std::vector<std::string>& required_keys,
const std::vector<std::string>& optional_keys = {});
virtual bool clear_between_callbacks() const { return true; }
std::vector<Test::Result> run() override;
protected:
typedef std::unordered_map<std::string, std::string> VarMap;
std::string get_next_line();
virtual Test::Result run_one_test(const std::string& header,
const VarMap& vars) = 0;
virtual std::vector<Test::Result> run_final_tests() { return std::vector<Test::Result>(); }
std::vector<uint8_t> get_req_bin(const VarMap& vars, const std::string& key) const;
std::vector<uint8_t> get_opt_bin(const VarMap& vars, const std::string& key) const;
#if defined(BOTAN_HAS_BIGINT)
Botan::BigInt get_req_bn(const VarMap& vars, const std::string& key) const;
#endif
std::string get_req_str(const VarMap& vars, const std::string& key) const;
std::string get_opt_str(const VarMap& vars,
const std::string& key,
const std::string& def_value) const;
size_t get_req_sz(const VarMap& vars, const std::string& key) const;
size_t get_opt_sz(const VarMap& vars, const std::string& key, const size_t def_value) const;
std::string algo_name() const { return m_algo; }
private:
std::string m_algo;
std::string m_data_src;
std::set<std::string> m_required_keys;
std::set<std::string> m_optional_keys;
std::string m_output_key;
bool m_clear_between_cb = false;
bool m_first = true;
std::unique_ptr<std::ifstream> m_cur;
std::deque<std::string> m_srcs;
};
}
#endif
|