File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,13 @@ class CAddrManSerializationMock : public CAddrMan
1717{
1818public:
1919 virtual void Serialize (CDataStream& s, int nType, int nVersionDummy) const = 0;
20+
21+ // ! Ensure that bucket placement is always the same for testing purposes.
22+ void MakeDeterministic ()
23+ {
24+ nKey.SetNull ();
25+ seed_insecure_rand (true );
26+ }
2027};
2128
2229class CAddrManUncorrupted : public CAddrManSerializationMock
@@ -65,6 +72,7 @@ BOOST_FIXTURE_TEST_SUITE(net_tests, BasicTestingSetup)
6572BOOST_AUTO_TEST_CASE(caddrdb_read)
6673{
6774 CAddrManUncorrupted addrmanUncorrupted;
75+ addrmanUncorrupted.MakeDeterministic ();
6876
6977 CService addr1 = CService (" 250.7.1.1" , 8333 );
7078 CService addr2 = CService (" 250.7.2.2" , 9999 );
@@ -106,6 +114,7 @@ BOOST_AUTO_TEST_CASE(caddrdb_read)
106114BOOST_AUTO_TEST_CASE (caddrdb_read_corrupted)
107115{
108116 CAddrManCorrupted addrmanCorrupted;
117+ addrmanCorrupted.MakeDeterministic ();
109118
110119 // Test that the de-serialization of corrupted addrman throws an exception.
111120 CDataStream ssPeers1 = AddrmanToStream (addrmanCorrupted);
You can’t perform that action at this time.
0 commit comments