aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/btree/btree_store/btree_store_test.cpp
blob: b75c2722d8042144713f1ece42d8122de836ae30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/btree/btreestore.h>
#include <vespa/vespalib/btree/btreenodeallocator.hpp>
#include <vespa/vespalib/btree/btreeroot.hpp>
#include <vespa/vespalib/btree/btreestore.hpp>
#include <vespa/vespalib/datastore/buffer_type.hpp>
#include <vespa/vespalib/gtest/gtest.h>

using vespalib::GenerationHandler;
using vespalib::datastore::EntryRef;

namespace vespalib::btree {

using MyTraits = BTreeTraits<4, 4, 31, false>;
using TreeStore = BTreeStore<int, int, btree::NoAggregated, std::less<int>, MyTraits>;

class BTreeStoreTest : public ::testing::Test {
protected:
    GenerationHandler _gen_handler;
    TreeStore _store;
    
    BTreeStoreTest();
    ~BTreeStoreTest();

    void inc_generation()
    {
        _store.freeze();
        _store.transferHoldLists(_gen_handler.getCurrentGeneration());
        _gen_handler.incGeneration();
        _store.trimHoldLists(_gen_handler.getFirstUsedGeneration());
    }

    EntryRef make_tree(int start_key, int end_key)
    {
        std::vector<TreeStore::KeyDataType> additions;
        std::vector<TreeStore::KeyType> removals;
        EntryRef root;
        for (int i = start_key; i < end_key; ++i) {
            additions.emplace_back(i, 0);
        }
        _store.apply(root,
                     &additions[0], &additions[0] + additions.size(),
                     &removals[0], &removals[0] + removals.size());
        return root;
    }
    static std::vector<int> make_exp_sequence(int start_key, int end_key)
    {
        std::vector<int> sequence;
        for (int i = start_key; i < end_key; ++i) {
            sequence.emplace_back(i);
        }
        return sequence;
    }
    std::vector<int> get_sequence(EntryRef root) const {
        std::vector<int> sequence;
        _store.foreach_frozen_key(root, [&sequence](int key) { sequence.emplace_back(key); });
        return sequence;
    }
};

BTreeStoreTest::BTreeStoreTest()
    : _gen_handler(),
      _store()
{
}

BTreeStoreTest::~BTreeStoreTest() = default;

TEST_F(BTreeStoreTest, require_that_nodes_for_multiple_btrees_are_compacted)
{
    auto &store = this->_store;
    EntryRef root1 = make_tree(4, 40);
    EntryRef root2 = make_tree(100, 130);
    store.clear(make_tree(1000, 20000));
    inc_generation();
    auto usage_before = store.getMemoryUsage();
    auto to_hold = store.start_compact_worst_btree_nodes();
    store.move_btree_nodes(root1);
    store.move_btree_nodes(root2);
    store.finish_compact_worst_btree_nodes(to_hold);
    inc_generation();
    EXPECT_EQ(make_exp_sequence(4, 40), get_sequence(root1));
    EXPECT_EQ(make_exp_sequence(100, 130), get_sequence(root2));
    auto usage_after = store.getMemoryUsage();
    EXPECT_GT(usage_before.deadBytes(), usage_after.deadBytes());
    store.clear(root1);
    store.clear(root2);
    inc_generation();
}

}

GTEST_MAIN_RUN_ALL_TESTS()