|
9 | 9 | #include <test/util/logging.h>
|
10 | 10 | #include <test/util/net.h>
|
11 | 11 | #include <test/util/setup_common.h>
|
| 12 | +#include <util/readwritefile.h> |
12 | 13 | #include <util/threadinterrupt.h>
|
13 | 14 |
|
14 | 15 | #include <boost/test/unit_test.hpp>
|
@@ -45,4 +46,47 @@ BOOST_AUTO_TEST_CASE(unlimited_recv)
|
45 | 46 | LogInstance().SetLogLevel(prev_log_level);
|
46 | 47 | }
|
47 | 48 |
|
| 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 | + |
48 | 92 | BOOST_AUTO_TEST_SUITE_END()
|
0 commit comments