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
|
/*
* Copyright (C) 2018 Codership Oy <info@codership.com>
*
* This file is part of wsrep-lib.
*
* Wsrep-lib is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Wsrep-lib is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with wsrep-lib. If not, see <https://www.gnu.org/licenses/>.
*/
#include "wsrep/id.hpp"
#include <boost/test/unit_test.hpp>
#include <sstream>
namespace
{
bool exception_check(const wsrep::runtime_error&) { return true; }
}
BOOST_AUTO_TEST_CASE(id_test_uuid)
{
std::string uuid_str("6a20d44a-6e17-11e8-b1e2-9061aec0cdad");
wsrep::id id(uuid_str);
std::ostringstream os;
os << id;
BOOST_REQUIRE_EQUAL(uuid_str, os.str());
}
BOOST_AUTO_TEST_CASE(id_test_string)
{
std::string id_str("node1");
wsrep::id id(id_str);
std::ostringstream os;
os << id;
BOOST_REQUIRE_EQUAL(id_str, os.str());
}
BOOST_AUTO_TEST_CASE(id_test_string_max)
{
std::string id_str("1234"
"5678"
"9012"
"3456");
wsrep::id id(id_str);
std::ostringstream os;
os << id;
BOOST_REQUIRE_EQUAL(os.str(), "31323334-3536-3738-3930-313233343536");
}
BOOST_AUTO_TEST_CASE(id_test_string_too_long)
{
std::string id_str("12345678901234567");
BOOST_REQUIRE_EXCEPTION(wsrep::id id(id_str), wsrep::runtime_error,
exception_check);
}
BOOST_AUTO_TEST_CASE(id_test_binary)
{
char data[16] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4 ,5 ,6};
wsrep::id id(data, sizeof(data));
std::ostringstream os;
os << id;
BOOST_REQUIRE_EQUAL(os.str(), "01020304-0506-0708-0900-010203040506");
}
BOOST_AUTO_TEST_CASE(id_test_binary_too_long)
{
char data[17] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4 ,5 ,6, 7};
BOOST_REQUIRE_EXCEPTION(wsrep::id id(data, sizeof(data)),
wsrep::runtime_error, exception_check);;
}
BOOST_AUTO_TEST_CASE(id_test_binary_all_alphanumeric)
{
char data[16] = {'a', 'a', 'a', 'a',
'a', 'a', 'a', 'a',
'a', 'a', 'a', 'a',
'a', 'a', 'a', 'a'};
wsrep::id id(data, sizeof(data));
std::ostringstream os;
os << id;
/* Value of 'a' is 97 in ASCII, which is 0x61 in hex. */
BOOST_REQUIRE_EQUAL(os.str(), "61616161-6161-6161-6161-616161616161");
}
BOOST_AUTO_TEST_CASE(id_test_binary_all_except_middle_alphanumeric)
{
char data[16] = {'a', 'a', 'a', 'a',
'a', 'a', 'a', 'a',
'a', 'a', '\0', 'a',
'a', 'a', 'a', 'a'};
wsrep::id id(data, sizeof(data));
std::ostringstream os;
os << id;
BOOST_REQUIRE_EQUAL(os.str(), "61616161-6161-6161-6161-006161616161");
}
BOOST_AUTO_TEST_CASE(id_test_null)
{
char data[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
wsrep::id id(data, sizeof(data));
std::ostringstream os;
os << id;
BOOST_REQUIRE_EQUAL(os.str(), "00000000-0000-0000-0000-000000000000");
}
|