Skip to content

Commit 37855ec

Browse files
committed
Merge #17220: tests: Add unit testing for the CompressScript function
b05ec41 Add unit testing for the CompressScript functions (marcaiaf) Pull request description: Salvaging #15104 which adds unit tests for CompressScript function in `compressor.cpp` Tested following cases for the CScript: - CKeyID - CScriptID - Uncompressed CPubKey (of size: 65) - Compressed CPubKey (of size: 32) ACKs for top commit: theStack: ACK bitcoin/bitcoin@b05ec41 Tree-SHA512: 7e23ace39383122802dfe5f7d38190d772f5db4045a67b7a9bd4c06797a17e0cdc41d6fac92d448057eb7df50172155dc824587c16c68c79fd1a4de37b772001
2 parents 90ed98a + b05ec41 commit 37855ec

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

src/test/compress_tests.cpp

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
#include <compressor.h>
66
#include <test/setup_common.h>
7+
#include <script/standard.h>
78

89
#include <stdint.h>
910

@@ -61,4 +62,76 @@ BOOST_AUTO_TEST_CASE(compress_amounts)
6162
BOOST_CHECK(TestDecode(i));
6263
}
6364

65+
BOOST_AUTO_TEST_CASE(compress_script_to_ckey_id)
66+
{
67+
// case CKeyID
68+
CKey key;
69+
key.MakeNewKey(true);
70+
CPubKey pubkey = key.GetPubKey();
71+
72+
CScript script = CScript() << OP_DUP << OP_HASH160 << ToByteVector(pubkey.GetID()) << OP_EQUALVERIFY << OP_CHECKSIG;
73+
BOOST_CHECK_EQUAL(script.size(), 25);
74+
75+
std::vector<unsigned char> out;
76+
bool done = CompressScript(script, out);
77+
BOOST_CHECK_EQUAL(done, true);
78+
79+
// Check compressed script
80+
BOOST_CHECK_EQUAL(out.size(), 21);
81+
BOOST_CHECK_EQUAL(out[0], 0x00);
82+
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[3], 20), 0); // compare the 20 relevant chars of the CKeyId in the script
83+
}
84+
85+
BOOST_AUTO_TEST_CASE(compress_script_to_cscript_id)
86+
{
87+
// case CScriptID
88+
CScript script, redeemScript;
89+
script << OP_HASH160 << ToByteVector(CScriptID(redeemScript)) << OP_EQUAL;
90+
BOOST_CHECK_EQUAL(script.size(), 23);
91+
92+
std::vector<unsigned char> out;
93+
bool done = CompressScript(script, out);
94+
BOOST_CHECK_EQUAL(done, true);
95+
96+
// Check compressed script
97+
BOOST_CHECK_EQUAL(out.size(), 21);
98+
BOOST_CHECK_EQUAL(out[0], 0x01);
99+
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[2], 20), 0); // compare the 20 relevant chars of the CScriptId in the script
100+
}
101+
102+
BOOST_AUTO_TEST_CASE(compress_script_to_compressed_pubkey_id)
103+
{
104+
CKey key;
105+
key.MakeNewKey(true); // case compressed PubKeyID
106+
107+
CScript script = CScript() << ToByteVector(key.GetPubKey()) << OP_CHECKSIG; // COMPRESSED_PUBLIC_KEY_SIZE (33)
108+
BOOST_CHECK_EQUAL(script.size(), 35);
109+
110+
std::vector<unsigned char> out;
111+
bool done = CompressScript(script, out);
112+
BOOST_CHECK_EQUAL(done, true);
113+
114+
// Check compressed script
115+
BOOST_CHECK_EQUAL(out.size(), 33);
116+
BOOST_CHECK_EQUAL(memcmp(&out[0], &script[1], 1), 0);
117+
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[2], 32), 0); // compare the 32 chars of the compressed CPubKey
118+
}
119+
120+
BOOST_AUTO_TEST_CASE(compress_script_to_uncompressed_pubkey_id)
121+
{
122+
CKey key;
123+
key.MakeNewKey(false); // case uncompressed PubKeyID
124+
CScript script = CScript() << ToByteVector(key.GetPubKey()) << OP_CHECKSIG; // PUBLIC_KEY_SIZE (65)
125+
BOOST_CHECK_EQUAL(script.size(), 67); // 1 char code + 65 char pubkey + OP_CHECKSIG
126+
127+
std::vector<unsigned char> out;
128+
bool done = CompressScript(script, out);
129+
BOOST_CHECK_EQUAL(done, true);
130+
131+
// Check compressed script
132+
BOOST_CHECK_EQUAL(out.size(), 33);
133+
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[2], 32), 0); // first 32 chars of CPubKey are copied into out[1:]
134+
BOOST_CHECK_EQUAL(out[0], 0x04 | (script[65] & 0x01)); // least significant bit (lsb) of last char of pubkey is mapped into out[0]
135+
}
136+
64137
BOOST_AUTO_TEST_SUITE_END()

0 commit comments

Comments
 (0)