2013-12-11 22:30:57 +05:30
|
|
|
#include "gmock/gmock.h"
|
|
|
|
|
|
|
|
#include "test_utils.h"
|
|
|
|
|
|
|
|
#include "persistent-data/data-structures/btree.h"
|
|
|
|
#include "persistent-data/data-structures/btree_counter.h"
|
|
|
|
#include "persistent-data/space-maps/core.h"
|
2014-01-30 03:07:25 +05:30
|
|
|
#include "persistent-data/data-structures/simple_traits.h"
|
2013-12-11 22:30:57 +05:30
|
|
|
|
|
|
|
using namespace base;
|
|
|
|
using namespace std;
|
|
|
|
using namespace persistent_data;
|
|
|
|
using namespace test;
|
|
|
|
using namespace testing;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
block_address const BLOCK_SIZE = 4096;
|
|
|
|
block_address const NR_BLOCKS = 102400;
|
|
|
|
block_address const SUPERBLOCK = 0;
|
|
|
|
|
|
|
|
class BTreeCounterTests : public Test {
|
|
|
|
public:
|
|
|
|
BTreeCounterTests()
|
2020-04-30 19:00:01 +05:30
|
|
|
: bm_(create_bm(NR_BLOCKS)),
|
2013-12-11 22:30:57 +05:30
|
|
|
sm_(setup_core_map()),
|
2014-08-26 15:44:49 +05:30
|
|
|
tm_(bm_, sm_) {
|
2013-12-11 22:30:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void check_nr_metadata_blocks_is_ge(unsigned n) {
|
|
|
|
block_counter bc;
|
|
|
|
noop_value_counter<uint64_t> vc;
|
|
|
|
count_btree_blocks(*tree_, bc, vc);
|
|
|
|
ASSERT_THAT(bc.get_counts().size(), Ge(n));
|
|
|
|
}
|
|
|
|
|
|
|
|
with_temp_directory dir_;
|
2020-04-30 19:00:01 +05:30
|
|
|
block_manager::ptr bm_;
|
2013-12-11 22:30:57 +05:30
|
|
|
space_map::ptr sm_;
|
2014-08-26 15:44:49 +05:30
|
|
|
transaction_manager tm_;
|
2013-12-11 22:30:57 +05:30
|
|
|
uint64_traits::ref_counter rc_;
|
|
|
|
|
|
|
|
btree<1, uint64_traits>::ptr tree_;
|
|
|
|
|
|
|
|
private:
|
|
|
|
space_map::ptr setup_core_map() {
|
2020-05-27 16:30:40 +05:30
|
|
|
space_map::ptr sm(create_core_map(NR_BLOCKS));
|
2013-12-11 22:30:57 +05:30
|
|
|
sm->inc(SUPERBLOCK);
|
|
|
|
return sm;
|
|
|
|
}
|
|
|
|
|
|
|
|
void commit() {
|
2020-04-30 19:00:01 +05:30
|
|
|
block_manager::write_ref superblock(bm_->superblock(SUPERBLOCK));
|
2013-12-11 22:30:57 +05:30
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
TEST_F(BTreeCounterTests, count_empty_tree)
|
|
|
|
{
|
|
|
|
tree_.reset(new btree<1, uint64_traits>(tm_, rc_));
|
2017-09-14 18:30:21 +05:30
|
|
|
tm_.get_bm()->flush();
|
2013-12-11 22:30:57 +05:30
|
|
|
check_nr_metadata_blocks_is_ge(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(BTreeCounterTests, count_populated_tree)
|
|
|
|
{
|
|
|
|
tree_.reset(new btree<1, uint64_traits>(tm_, rc_));
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < 10000; i++) {
|
|
|
|
uint64_t key[1] = {i};
|
|
|
|
tree_->insert(key, 0ull);
|
|
|
|
}
|
|
|
|
|
2017-09-14 18:30:21 +05:30
|
|
|
tm_.get_bm()->flush();
|
2013-12-11 22:30:57 +05:30
|
|
|
check_nr_metadata_blocks_is_ge(40);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|