Skip to content

Commit 5cf4d26

Browse files
vasilddergoegge
authored andcommitted
[test] Test i2p private key constraints
1 parent cf70a8d commit 5cf4d26

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

src/test/i2p_tests.cpp

+44
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include <test/util/logging.h>
1010
#include <test/util/net.h>
1111
#include <test/util/setup_common.h>
12+
#include <util/readwritefile.h>
1213
#include <util/threadinterrupt.h>
1314

1415
#include <boost/test/unit_test.hpp>
@@ -45,4 +46,47 @@ BOOST_AUTO_TEST_CASE(unlimited_recv)
4546
LogInstance().SetLogLevel(prev_log_level);
4647
}
4748

49+
BOOST_AUTO_TEST_CASE(damaged_private_key)
50+
{
51+
const auto CreateSockOrig = CreateSock;
52+
53+
CreateSock = [](const CService&) {
54+
return std::make_unique<StaticContentsSock>("HELLO REPLY RESULT=OK VERSION=3.1\n"
55+
"SESSION STATUS RESULT=OK DESTINATION=\n");
56+
};
57+
58+
const auto i2p_private_key_file = m_args.GetDataDirNet() / "test_i2p_private_key_damaged";
59+
60+
for (const auto& [file_contents, expected_error] : std::vector<std::tuple<std::string, std::string>>{
61+
{"", "The private key is too short (0 < 387)"},
62+
63+
{"abcd", "The private key is too short (4 < 387)"},
64+
65+
{std::string(386, '\0'), "The private key is too short (386 < 387)"},
66+
67+
{std::string(385, '\0') + '\0' + '\1',
68+
"Certificate length (1) designates that the private key should be 388 bytes, but it is only "
69+
"387 bytes"},
70+
71+
{std::string(385, '\0') + '\0' + '\5' + "abcd",
72+
"Certificate length (5) designates that the private key should be 392 bytes, but it is only "
73+
"391 bytes"}}) {
74+
BOOST_REQUIRE(WriteBinaryFile(i2p_private_key_file, file_contents));
75+
76+
CThreadInterrupt interrupt;
77+
i2p::sam::Session session(i2p_private_key_file, CService{}, &interrupt);
78+
79+
{
80+
ASSERT_DEBUG_LOG("Creating persistent SAM session");
81+
ASSERT_DEBUG_LOG(expected_error);
82+
83+
i2p::Connection conn;
84+
bool proxy_error;
85+
BOOST_CHECK(!session.Connect(CService{}, conn, proxy_error));
86+
}
87+
}
88+
89+
CreateSock = CreateSockOrig;
90+
}
91+
4892
BOOST_AUTO_TEST_SUITE_END()

0 commit comments

Comments
 (0)