/* * (C) 2014,2015 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #include "tests.h" #include #include #include #include #if defined(BOTAN_HAS_SYSTEM_RNG) #include #endif Botan::RandomNumberGenerator& test_rng() { #if defined(BOTAN_HAS_SYSTEM_RNG) return Botan::system_rng(); #else static Botan::AutoSeeded_RNG rng; return rng; #endif } size_t run_tests_in_dir(const std::string& dir, std::function fn) { size_t fails = 0; for(auto vec: Botan::list_all_readable_files_in_or_under(dir)) fails += fn(vec); return fails; } size_t run_tests(const std::vector& tests) { size_t fails = 0; for(auto& test : tests) { try { fails += test(); } catch(std::exception& e) { std::cout << "Exception escaped test: " << e.what() << std::endl; ++fails; } catch(...) { std::cout << "Exception escaped test" << std::endl; ++fails; } } // Summary for test suite test_report("Tests", 0, fails); return fails; } void test_report(const std::string& name, size_t ran, size_t failed) { std::cout << name; if(ran > 0) std::cout << " " << ran << " tests"; if(failed) std::cout << " " << failed << " FAILs" << std::endl; else std::cout << " all ok" << std::endl; } size_t run_tests_bb(std::istream& src, const std::string& name_key, const std::string& output_key, bool clear_between_cb, std::function)> cb) { if(!src.good()) { std::cout << "Could not open input file for " << name_key << std::endl; return 1; } std::map vars; size_t test_fails = 0, algo_fail = 0; size_t test_count = 0, algo_count = 0; std::string fixed_name; while(src.good()) { std::string line; std::getline(src, line); if(line == "") continue; if(line[0] == '#') continue; if(line[0] == '[' && line[line.size()-1] == ']') { if(fixed_name != "") test_report(fixed_name, algo_count, algo_fail); test_count += algo_count; test_fails += algo_fail; algo_count = 0; algo_fail = 0; fixed_name = line.substr(1, line.size() - 2); vars[name_key] = fixed_name; continue; } const std::string key = line.substr(0, line.find_first_of(' ')); const std::string val = line.substr(line.find_last_of(' ') + 1, std::string::npos); vars[key] = val; if(key == name_key) fixed_name.clear(); if(key == output_key) { //std::cout << vars[name_key] << " " << algo_count << std::endl; ++algo_count; try { const size_t fails = cb(vars); if(fails) { std::cout << vars[name_key] << " test " << algo_count << ": " << fails << " failure" << std::endl; algo_fail += fails; } } catch(std::exception& e) { std::cout << vars[name_key] << " test " << algo_count << " failed: " << e.what() << std::endl; ++algo_fail; } if(clear_between_cb) { vars.clear(); vars[name_key] = fixed_name; } } } test_count += algo_count; test_fails += algo_fail; if(fixed_name != "" && (algo_count > 0 || algo_fail > 0)) test_report(fixed_name, algo_count, algo_fail); else test_report(name_key, test_count, test_fails); return test_fails; } size_t run_tests(const std::string& filename, const std::string& name_key, const std::string& output_key, bool clear_between_cb, std::function)> cb) { std::ifstream vec(filename); if(!vec) { std::cout << "Failure opening " << filename << std::endl; return 1; } return run_tests(vec, name_key, output_key, clear_between_cb, cb); } size_t run_tests(std::istream& src, const std::string& name_key, const std::string& output_key, bool clear_between_cb, std::function)> cb) { return run_tests_bb(src, name_key, output_key, clear_between_cb, [name_key,output_key,cb](std::map vars) { const std::string got = cb(vars); if(got != vars[output_key]) { std::cout << name_key << ' ' << vars[name_key] << " got " << got << " expected " << vars[output_key] << std::endl; return 1; } return 0; }); } namespace { int help(char* argv0) { std::cout << "Usage: " << argv0 << " [suite]" << std::endl; std::cout << "Suites: all (default), block, hash, bigint, rsa, ecdsa, ..." << std::endl; return 1; } } int main(int argc, char* argv[]) { if(argc != 1 && argc != 2) return help(argv[0]); std::string target = "all"; if(argc == 2) target = argv[1]; if(target == "-h" || target == "--help" || target == "help") return help(argv[0]); std::vector tests; #define DEF_TEST(test) do { if(target == "all" || target == #test) \ tests.push_back(test_ ## test); \ } while(0) DEF_TEST(block); DEF_TEST(modes); DEF_TEST(aead); DEF_TEST(ocb); DEF_TEST(stream); DEF_TEST(hash); DEF_TEST(mac); DEF_TEST(pbkdf); DEF_TEST(kdf); DEF_TEST(keywrap); DEF_TEST(transform); DEF_TEST(rngs); DEF_TEST(passhash9); DEF_TEST(bcrypt); DEF_TEST(cryptobox); DEF_TEST(tss); DEF_TEST(rfc6979); DEF_TEST(srp6); DEF_TEST(bigint); DEF_TEST(rsa); DEF_TEST(rw); DEF_TEST(dsa); DEF_TEST(nr); DEF_TEST(dh); DEF_TEST(dlies); DEF_TEST(elgamal); DEF_TEST(ecc_pointmul); DEF_TEST(ecdsa); DEF_TEST(gost_3410); DEF_TEST(curve25519); DEF_TEST(mceliece); DEF_TEST(ecc_unit); DEF_TEST(ecdsa_unit); DEF_TEST(ecdh_unit); DEF_TEST(pk_keygen); DEF_TEST(cvc); DEF_TEST(x509); DEF_TEST(nist_x509); DEF_TEST(tls); DEF_TEST(compression); if(tests.empty()) { std::cout << "No tests selected by target '" << target << "'" << std::endl; return 1; } return run_tests(tests); }