2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2019-02-22 16:58:26 +01:00
|
|
|
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include <chrono>
|
|
|
|
#include <BoostTestTargetConfig.h>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(base_utility)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(comparepasswords_works)
|
|
|
|
{
|
|
|
|
BOOST_CHECK(Utility::ComparePasswords("", ""));
|
|
|
|
|
|
|
|
BOOST_CHECK(!Utility::ComparePasswords("x", ""));
|
|
|
|
BOOST_CHECK(!Utility::ComparePasswords("", "x"));
|
|
|
|
|
|
|
|
BOOST_CHECK(Utility::ComparePasswords("x", "x"));
|
|
|
|
BOOST_CHECK(!Utility::ComparePasswords("x", "y"));
|
|
|
|
|
|
|
|
BOOST_CHECK(Utility::ComparePasswords("abcd", "abcd"));
|
|
|
|
BOOST_CHECK(!Utility::ComparePasswords("abc", "abcd"));
|
|
|
|
BOOST_CHECK(!Utility::ComparePasswords("abcde", "abcd"));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(comparepasswords_issafe)
|
|
|
|
{
|
|
|
|
using std::chrono::duration_cast;
|
|
|
|
using std::chrono::microseconds;
|
|
|
|
using std::chrono::steady_clock;
|
|
|
|
|
|
|
|
String a, b;
|
|
|
|
|
|
|
|
a.Append(200000001, 'a');
|
|
|
|
b.Append(200000002, 'b');
|
|
|
|
|
|
|
|
auto start1 (steady_clock::now());
|
|
|
|
|
|
|
|
Utility::ComparePasswords(a, a);
|
|
|
|
|
|
|
|
auto duration1 (steady_clock::now() - start1);
|
|
|
|
|
|
|
|
auto start2 (steady_clock::now());
|
|
|
|
|
|
|
|
Utility::ComparePasswords(a, b);
|
|
|
|
|
|
|
|
auto duration2 (steady_clock::now() - start2);
|
|
|
|
|
|
|
|
double diff = (double)duration_cast<microseconds>(duration1).count() / (double)duration_cast<microseconds>(duration2).count();
|
|
|
|
BOOST_CHECK(0.9 <= diff && diff <= 1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|