// Copyright (c) 2018-2019 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include #include #include #include #include #include #include BOOST_AUTO_TEST_SUITE(blockfilter_tests) BOOST_AUTO_TEST_CASE(gcsfilter_test) { GCSFilter::ElementSet included_elements, excluded_elements; for (int i = 0; i < 100; ++i) { GCSFilter::Element element1(32); element1[0] = i; included_elements.insert(std::move(element1)); GCSFilter::Element element2(32); element2[1] = i; excluded_elements.insert(std::move(element2)); } GCSFilter filter({0, 0, 10, 1 << 10}, included_elements); for (const auto& element : included_elements) { BOOST_CHECK(filter.Match(element)); auto insertion = excluded_elements.insert(element); BOOST_CHECK(filter.MatchAny(excluded_elements)); excluded_elements.erase(insertion.first); } } BOOST_AUTO_TEST_CASE(gcsfilter_default_constructor) { GCSFilter filter; BOOST_CHECK_EQUAL(filter.GetN(), 0); BOOST_CHECK_EQUAL(filter.GetEncoded().size(), 1); const GCSFilter::Params& params = filter.GetParams(); BOOST_CHECK_EQUAL(params.m_siphash_k0, 0); BOOST_CHECK_EQUAL(params.m_siphash_k1, 0); BOOST_CHECK_EQUAL(params.m_P, 0); BOOST_CHECK_EQUAL(params.m_M, 1); } BOOST_AUTO_TEST_CASE(blockfilter_basic_test) { CScript included_scripts[5], excluded_scripts[4]; // First two are outputs on a single transaction. included_scripts[0] << std::vector(0, 65) << OP_CHECKSIG; included_scripts[1] << OP_DUP << OP_HASH160 << std::vector(1, 20) << OP_EQUALVERIFY << OP_CHECKSIG; // Third is an output on in a second transaction. included_scripts[2] << OP_1 << std::vector(2, 33) << OP_1 << OP_CHECKMULTISIG; // Last two are spent by a single transaction. included_scripts[3] << OP_0 << std::vector(3, 32); included_scripts[4] << OP_4 << OP_ADD << OP_8 << OP_EQUAL; // OP_RETURN output is an output on the second transaction. excluded_scripts[0] << OP_RETURN << std::vector(4, 40); // This script is not related to the block at all. excluded_scripts[1] << std::vector(5, 33) << OP_CHECKSIG; // OP_RETURN is non-standard since it's not followed by a data push, but is still excluded from // filter. excluded_scripts[2] << OP_RETURN << OP_4 << OP_ADD << OP_8 << OP_EQUAL; CMutableTransaction tx_1; tx_1.vout.emplace_back(100, included_scripts[0]); tx_1.vout.emplace_back(200, included_scripts[1]); tx_1.vout.emplace_back(0, excluded_scripts[0]); CMutableTransaction tx_2; tx_2.vout.emplace_back(300, included_scripts[2]); tx_2.vout.emplace_back(0, excluded_scripts[2]); tx_2.vout.emplace_back(400, excluded_scripts[3]); // Script is empty CBlock block; block.vtx.push_back(MakeTransactionRef(tx_1)); block.vtx.push_back(MakeTransactionRef(tx_2)); CBlockUndo block_undo; block_undo.vtxundo.emplace_back(); block_undo.vtxundo.back().vprevout.emplace_back(CTxOut(500, included_scripts[3]), 1000, true); block_undo.vtxundo.back().vprevout.emplace_back(CTxOut(600, included_scripts[4]), 10000, false); block_undo.vtxundo.back().vprevout.emplace_back(CTxOut(700, excluded_scripts[3]), 100000, false); BlockFilter block_filter(BlockFilterType::BASIC, block, block_undo); const GCSFilter& filter = block_filter.GetFilter(); for (const CScript& script : included_scripts) { BOOST_CHECK(filter.Match(GCSFilter::Element(script.begin(), script.end()))); } for (const CScript& script : excluded_scripts) { BOOST_CHECK(!filter.Match(GCSFilter::Element(script.begin(), script.end()))); } // Test serialization/unserialization. BlockFilter block_filter2; CDataStream stream(SER_NETWORK, PROTOCOL_VERSION); stream << block_filter; stream >> block_filter2; BOOST_CHECK_EQUAL(block_filter.GetFilterType(), block_filter2.GetFilterType()); BOOST_CHECK_EQUAL(block_filter.GetBlockHash(), block_filter2.GetBlockHash()); BOOST_CHECK(block_filter.GetEncodedFilter() == block_filter2.GetEncodedFilter()); BlockFilter default_ctor_block_filter_1; BlockFilter default_ctor_block_filter_2; BOOST_CHECK_EQUAL(default_ctor_block_filter_1.GetFilterType(), default_ctor_block_filter_2.GetFilterType()); BOOST_CHECK_EQUAL(default_ctor_block_filter_1.GetBlockHash(), default_ctor_block_filter_2.GetBlockHash()); BOOST_CHECK(default_ctor_block_filter_1.GetEncodedFilter() == default_ctor_block_filter_2.GetEncodedFilter()); } BOOST_AUTO_TEST_CASE(blockfilters_json_test) { UniValue json; std::string json_data(json_tests::blockfilters, json_tests::blockfilters + sizeof(json_tests::blockfilters)); if (!json.read(json_data) || !json.isArray()) { BOOST_ERROR("Parse error."); return; } const UniValue& tests = json.get_array(); for (unsigned int i = 0; i < tests.size(); i++) { UniValue test = tests[i]; std::string strTest = test.write(); if (test.size() == 1) { continue; } else if (test.size() < 7) { BOOST_ERROR("Bad test: " << strTest); continue; } unsigned int pos = 0; /*int block_height =*/ test[pos++].get_int(); uint256 block_hash; BOOST_CHECK(ParseHashStr(test[pos++].get_str(), block_hash)); CBlock block; BOOST_REQUIRE(DecodeHexBlk(block, test[pos++].get_str())); CBlockUndo block_undo; block_undo.vtxundo.emplace_back(); CTxUndo& tx_undo = block_undo.vtxundo.back(); const UniValue& prev_scripts = test[pos++].get_array(); for (unsigned int ii = 0; ii < prev_scripts.size(); ii++) { std::vector raw_script = ParseHex(prev_scripts[ii].get_str()); CTxOut txout(0, CScript(raw_script.begin(), raw_script.end())); tx_undo.vprevout.emplace_back(txout, 0, false); } uint256 prev_filter_header_basic; BOOST_CHECK(ParseHashStr(test[pos++].get_str(), prev_filter_header_basic)); std::vector filter_basic = ParseHex(test[pos++].get_str()); uint256 filter_header_basic; BOOST_CHECK(ParseHashStr(test[pos++].get_str(), filter_header_basic)); BlockFilter computed_filter_basic(BlockFilterType::BASIC, block, block_undo); BOOST_CHECK(computed_filter_basic.GetFilter().GetEncoded() == filter_basic); uint256 computed_header_basic = computed_filter_basic.ComputeHeader(prev_filter_header_basic); BOOST_CHECK(computed_header_basic == filter_header_basic); } } BOOST_AUTO_TEST_CASE(blockfilter_type_names) { BOOST_CHECK_EQUAL(BlockFilterTypeName(BlockFilterType::BASIC), "basic"); BOOST_CHECK_EQUAL(BlockFilterTypeName(static_cast(255)), ""); BlockFilterType filter_type; BOOST_CHECK(BlockFilterTypeByName("basic", filter_type)); BOOST_CHECK_EQUAL(filter_type, BlockFilterType::BASIC); BOOST_CHECK(!BlockFilterTypeByName("unknown", filter_type)); } BOOST_AUTO_TEST_SUITE_END()