Bitcoin Core 29.99.0
P2P Digital Currency
validation_flush_tests.cpp
Go to the documentation of this file.
1// Copyright (c) 2019-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <sync.h>
6#include <test/util/coins.h>
7#include <test/util/random.h>
9#include <validation.h>
10
11#include <boost/test/unit_test.hpp>
12
13BOOST_FIXTURE_TEST_SUITE(validation_flush_tests, TestingSetup)
14
15
18BOOST_AUTO_TEST_CASE(getcoinscachesizestate)
19{
20 Chainstate& chainstate{m_node.chainman->ActiveChainstate()};
21
23 CCoinsViewCache& view{chainstate.CoinsTip()};
24
25 // Sanity: an empty cache should be ≲ 1 chunk (~ 256 KiB).
26 BOOST_CHECK_LT(view.DynamicMemoryUsage() / (256 * 1024.0), 1.1);
27
28 constexpr size_t MAX_COINS_BYTES{8_MiB};
29 constexpr size_t MAX_MEMPOOL_BYTES{4_MiB};
30 constexpr size_t MAX_ATTEMPTS{50'000};
31
32 // Run the same growth-path twice: first with 0 head-room, then with extra head-room
33 for (size_t max_mempool_size_bytes : {size_t{0}, MAX_MEMPOOL_BYTES}) {
34 const int64_t full_cap{int64_t(MAX_COINS_BYTES + max_mempool_size_bytes)};
35 const int64_t large_cap{LargeCoinsCacheThreshold(full_cap)};
36
37 // OK → LARGE
38 auto state{chainstate.GetCoinsCacheSizeState(MAX_COINS_BYTES, max_mempool_size_bytes)};
39 for (size_t i{0}; i < MAX_ATTEMPTS && int64_t(view.DynamicMemoryUsage()) <= large_cap; ++i) {
41 AddTestCoin(m_rng, view);
42 state = chainstate.GetCoinsCacheSizeState(MAX_COINS_BYTES, max_mempool_size_bytes);
43 }
44
45 // LARGE → CRITICAL
46 for (size_t i{0}; i < MAX_ATTEMPTS && int64_t(view.DynamicMemoryUsage()) <= full_cap; ++i) {
48 AddTestCoin(m_rng, view);
49 state = chainstate.GetCoinsCacheSizeState(MAX_COINS_BYTES, max_mempool_size_bytes);
50 }
52 }
53
54 // Default thresholds (no explicit limits) permit many more coins.
55 for (int i{0}; i < 1'000; ++i) {
56 AddTestCoin(m_rng, view);
57 BOOST_CHECK_EQUAL(chainstate.GetCoinsCacheSizeState(), CoinsCacheSizeState::OK);
58 }
59
60 // CRITICAL → OK via Flush
61 BOOST_CHECK_EQUAL(chainstate.GetCoinsCacheSizeState(MAX_COINS_BYTES, /*max_mempool_size_bytes=*/0), CoinsCacheSizeState::CRITICAL);
62 view.SetBestBlock(m_rng.rand256());
63 BOOST_REQUIRE(view.Flush());
64 BOOST_CHECK_EQUAL(chainstate.GetCoinsCacheSizeState(MAX_COINS_BYTES, /*max_mempool_size_bytes=*/0), CoinsCacheSizeState::OK);
65}
66
node::NodeContext m_node
Definition: bitcoin-gui.cpp:42
CCoinsView that adds a memory cache for transactions to another CCoinsView.
Definition: coins.h:363
Chainstate stores and provides an API to update our local knowledge of the current best chain.
Definition: validation.h:531
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
#define BOOST_CHECK_EQUAL(v1, v2)
Definition: object.cpp:18
Testing setup that configures a complete environment.
Definition: setup_common.h:121
std::unique_ptr< ChainstateManager > chainman
Definition: context.h:72
#define LOCK(cs)
Definition: sync.h:259
COutPoint AddTestCoin(FastRandomContext &rng, CCoinsViewCache &coins_view)
Create a Coin with DynamicMemoryUsage of 80 bytes and add it to the given view.
Definition: coins.cpp:16
constexpr int64_t LargeCoinsCacheThreshold(int64_t total_space) noexcept
Definition: validation.h:508
@ LARGE
The cache is at >= 90% capacity.
@ CRITICAL
The coins cache is in immediate need of a flush.
BOOST_AUTO_TEST_CASE(getcoinscachesizestate)
Verify that Chainstate::GetCoinsCacheSizeState() switches from OK→LARGE→CRITICAL at the expected util...