2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2012-2020 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 06:11:00 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2012-06-16 07:36:00 -04:00
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <compressor.h>
|
2019-01-04 13:00:13 -03:00
|
|
|
#include <script/standard.h>
|
2020-04-16 13:11:54 -04:00
|
|
|
#include <test/util/setup_common.h>
|
2013-04-13 02:13:08 -03:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
2012-06-16 07:36:00 -04:00
|
|
|
|
|
|
|
// amounts 0.00000001 .. 0.00100000
|
|
|
|
#define NUM_MULTIPLES_UNIT 100000
|
|
|
|
|
|
|
|
// amounts 0.01 .. 100.00
|
|
|
|
#define NUM_MULTIPLES_CENT 10000
|
|
|
|
|
|
|
|
// amounts 1 .. 10000
|
|
|
|
#define NUM_MULTIPLES_1BTC 10000
|
|
|
|
|
|
|
|
// amounts 50 .. 21000000
|
|
|
|
#define NUM_MULTIPLES_50BTC 420000
|
|
|
|
|
2015-03-12 05:34:42 -03:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(compress_tests, BasicTestingSetup)
|
2012-06-16 07:36:00 -04:00
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
bool static TestEncode(uint64_t in) {
|
2017-07-08 19:43:34 -04:00
|
|
|
return in == DecompressAmount(CompressAmount(in));
|
2012-06-16 07:36:00 -04:00
|
|
|
}
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
bool static TestDecode(uint64_t in) {
|
2017-07-08 19:43:34 -04:00
|
|
|
return in == CompressAmount(DecompressAmount(in));
|
2012-06-16 07:36:00 -04:00
|
|
|
}
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
bool static TestPair(uint64_t dec, uint64_t enc) {
|
2017-07-08 19:43:34 -04:00
|
|
|
return CompressAmount(dec) == enc &&
|
|
|
|
DecompressAmount(enc) == dec;
|
2012-06-16 07:36:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(compress_amounts)
|
|
|
|
{
|
|
|
|
BOOST_CHECK(TestPair( 0, 0x0));
|
|
|
|
BOOST_CHECK(TestPair( 1, 0x1));
|
|
|
|
BOOST_CHECK(TestPair( CENT, 0x7));
|
|
|
|
BOOST_CHECK(TestPair( COIN, 0x9));
|
|
|
|
BOOST_CHECK(TestPair( 50*COIN, 0x32));
|
|
|
|
BOOST_CHECK(TestPair(21000000*COIN, 0x1406f40));
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
for (uint64_t i = 1; i <= NUM_MULTIPLES_UNIT; i++)
|
2012-06-16 07:36:00 -04:00
|
|
|
BOOST_CHECK(TestEncode(i));
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
for (uint64_t i = 1; i <= NUM_MULTIPLES_CENT; i++)
|
2012-06-16 07:36:00 -04:00
|
|
|
BOOST_CHECK(TestEncode(i * CENT));
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
for (uint64_t i = 1; i <= NUM_MULTIPLES_1BTC; i++)
|
2012-06-16 07:36:00 -04:00
|
|
|
BOOST_CHECK(TestEncode(i * COIN));
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
for (uint64_t i = 1; i <= NUM_MULTIPLES_50BTC; i++)
|
2012-06-16 07:36:00 -04:00
|
|
|
BOOST_CHECK(TestEncode(i * 50 * COIN));
|
|
|
|
|
2013-04-13 02:13:08 -03:00
|
|
|
for (uint64_t i = 0; i < 100000; i++)
|
2012-06-16 07:36:00 -04:00
|
|
|
BOOST_CHECK(TestDecode(i));
|
|
|
|
}
|
|
|
|
|
2019-01-04 13:00:13 -03:00
|
|
|
BOOST_AUTO_TEST_CASE(compress_script_to_ckey_id)
|
|
|
|
{
|
|
|
|
// case CKeyID
|
|
|
|
CKey key;
|
|
|
|
key.MakeNewKey(true);
|
|
|
|
CPubKey pubkey = key.GetPubKey();
|
|
|
|
|
|
|
|
CScript script = CScript() << OP_DUP << OP_HASH160 << ToByteVector(pubkey.GetID()) << OP_EQUALVERIFY << OP_CHECKSIG;
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(script.size(), 25U);
|
2019-01-04 13:00:13 -03:00
|
|
|
|
|
|
|
std::vector<unsigned char> out;
|
|
|
|
bool done = CompressScript(script, out);
|
|
|
|
BOOST_CHECK_EQUAL(done, true);
|
|
|
|
|
|
|
|
// Check compressed script
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(out.size(), 21U);
|
2019-01-04 13:00:13 -03:00
|
|
|
BOOST_CHECK_EQUAL(out[0], 0x00);
|
|
|
|
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[3], 20), 0); // compare the 20 relevant chars of the CKeyId in the script
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(compress_script_to_cscript_id)
|
|
|
|
{
|
|
|
|
// case CScriptID
|
|
|
|
CScript script, redeemScript;
|
|
|
|
script << OP_HASH160 << ToByteVector(CScriptID(redeemScript)) << OP_EQUAL;
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(script.size(), 23U);
|
2019-01-04 13:00:13 -03:00
|
|
|
|
|
|
|
std::vector<unsigned char> out;
|
|
|
|
bool done = CompressScript(script, out);
|
|
|
|
BOOST_CHECK_EQUAL(done, true);
|
|
|
|
|
|
|
|
// Check compressed script
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(out.size(), 21U);
|
2019-01-04 13:00:13 -03:00
|
|
|
BOOST_CHECK_EQUAL(out[0], 0x01);
|
|
|
|
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[2], 20), 0); // compare the 20 relevant chars of the CScriptId in the script
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(compress_script_to_compressed_pubkey_id)
|
|
|
|
{
|
|
|
|
CKey key;
|
|
|
|
key.MakeNewKey(true); // case compressed PubKeyID
|
|
|
|
|
|
|
|
CScript script = CScript() << ToByteVector(key.GetPubKey()) << OP_CHECKSIG; // COMPRESSED_PUBLIC_KEY_SIZE (33)
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(script.size(), 35U);
|
2019-01-04 13:00:13 -03:00
|
|
|
|
|
|
|
std::vector<unsigned char> out;
|
|
|
|
bool done = CompressScript(script, out);
|
|
|
|
BOOST_CHECK_EQUAL(done, true);
|
|
|
|
|
|
|
|
// Check compressed script
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(out.size(), 33U);
|
2019-01-04 13:00:13 -03:00
|
|
|
BOOST_CHECK_EQUAL(memcmp(&out[0], &script[1], 1), 0);
|
|
|
|
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[2], 32), 0); // compare the 32 chars of the compressed CPubKey
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(compress_script_to_uncompressed_pubkey_id)
|
|
|
|
{
|
|
|
|
CKey key;
|
|
|
|
key.MakeNewKey(false); // case uncompressed PubKeyID
|
|
|
|
CScript script = CScript() << ToByteVector(key.GetPubKey()) << OP_CHECKSIG; // PUBLIC_KEY_SIZE (65)
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(script.size(), 67U); // 1 char code + 65 char pubkey + OP_CHECKSIG
|
2019-01-04 13:00:13 -03:00
|
|
|
|
|
|
|
std::vector<unsigned char> out;
|
|
|
|
bool done = CompressScript(script, out);
|
|
|
|
BOOST_CHECK_EQUAL(done, true);
|
|
|
|
|
|
|
|
// Check compressed script
|
2020-02-27 20:20:31 -03:00
|
|
|
BOOST_CHECK_EQUAL(out.size(), 33U);
|
2019-01-04 13:00:13 -03:00
|
|
|
BOOST_CHECK_EQUAL(memcmp(&out[1], &script[2], 32), 0); // first 32 chars of CPubKey are copied into out[1:]
|
|
|
|
BOOST_CHECK_EQUAL(out[0], 0x04 | (script[65] & 0x01)); // least significant bit (lsb) of last char of pubkey is mapped into out[0]
|
|
|
|
}
|
|
|
|
|
2012-06-16 07:36:00 -04:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|