mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
unit_tests: fix wipeable_string parse_hexstr test with latest gtest
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=973196
This commit is contained in:
parent
964ad0e51a
commit
a60d3d8ff7
@ -189,20 +189,20 @@ TEST(wipeable_string, parse_hexstr)
|
|||||||
{
|
{
|
||||||
boost::optional<epee::wipeable_string> s;
|
boost::optional<epee::wipeable_string> s;
|
||||||
|
|
||||||
ASSERT_EQ(boost::none, epee::wipeable_string("x").parse_hexstr());
|
ASSERT_TRUE(boost::none == epee::wipeable_string("x").parse_hexstr());
|
||||||
ASSERT_EQ(boost::none, epee::wipeable_string("x0000000000000000").parse_hexstr());
|
ASSERT_TRUE(boost::none == epee::wipeable_string("x0000000000000000").parse_hexstr());
|
||||||
ASSERT_EQ(boost::none, epee::wipeable_string("0000000000000000x").parse_hexstr());
|
ASSERT_TRUE(boost::none == epee::wipeable_string("0000000000000000x").parse_hexstr());
|
||||||
ASSERT_EQ(boost::none, epee::wipeable_string("0").parse_hexstr());
|
ASSERT_TRUE(boost::none == epee::wipeable_string("0").parse_hexstr());
|
||||||
ASSERT_EQ(boost::none, epee::wipeable_string("000").parse_hexstr());
|
ASSERT_TRUE(boost::none == epee::wipeable_string("000").parse_hexstr());
|
||||||
|
|
||||||
ASSERT_TRUE((s = epee::wipeable_string("").parse_hexstr()) != boost::none);
|
ASSERT_TRUE((s = epee::wipeable_string("").parse_hexstr()) != boost::none);
|
||||||
ASSERT_EQ(*s, "");
|
ASSERT_TRUE(*s == "");
|
||||||
ASSERT_TRUE((s = epee::wipeable_string("00").parse_hexstr()) != boost::none);
|
ASSERT_TRUE((s = epee::wipeable_string("00").parse_hexstr()) != boost::none);
|
||||||
ASSERT_EQ(*s, epee::wipeable_string("", 1));
|
ASSERT_TRUE(*s == epee::wipeable_string("", 1));
|
||||||
ASSERT_TRUE((s = epee::wipeable_string("41").parse_hexstr()) != boost::none);
|
ASSERT_TRUE((s = epee::wipeable_string("41").parse_hexstr()) != boost::none);
|
||||||
ASSERT_EQ(*s, epee::wipeable_string("A"));
|
ASSERT_TRUE(*s == epee::wipeable_string("A"));
|
||||||
ASSERT_TRUE((s = epee::wipeable_string("414243").parse_hexstr()) != boost::none);
|
ASSERT_TRUE((s = epee::wipeable_string("414243").parse_hexstr()) != boost::none);
|
||||||
ASSERT_EQ(*s, epee::wipeable_string("ABC"));
|
ASSERT_TRUE(*s == epee::wipeable_string("ABC"));
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(wipeable_string, to_hex)
|
TEST(wipeable_string, to_hex)
|
||||||
|
Loading…
Reference in New Issue
Block a user