aboutsummaryrefslogtreecommitdiff
path: root/src/test/mruset_tests.cpp
blob: 3c0668916856e9ccdcea3377ea5efe705261c466 (plain)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Copyright (c) 2012-2013 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 "mruset.h"

#include "random.h"
#include "util.h"
#include "test/test_bitcoin.h"

#include <set>

#include <boost/test/unit_test.hpp>

#define NUM_TESTS 16
#define MAX_SIZE 100

using namespace std;

BOOST_FIXTURE_TEST_SUITE(mruset_tests, BasicTestingSetup)

BOOST_AUTO_TEST_CASE(mruset_test)
{
    // The mruset being tested.
    mruset<int> mru(5000);

    // Run the test 10 times.
    for (int test = 0; test < 10; test++) {
        // Reset mru.
        mru.clear();

        // A deque + set to simulate the mruset.
        std::deque<int> rep;
        std::set<int> all;

        // Insert 10000 random integers below 15000.
        for (int j=0; j<10000; j++) {
            int add = GetRandInt(15000);
            mru.insert(add);

            // Add the number to rep/all as well.
            if (all.count(add) == 0) {
               all.insert(add);
               rep.push_back(add);
               if (all.size() == 5001) {
                   all.erase(rep.front());
                   rep.pop_front();
               }
            }

            // Do a full comparison between mru and the simulated mru every 1000 and every 5001 elements.
            if (j % 1000 == 0 || j % 5001 == 0) {
                mruset<int> mru2 = mru; // Also try making a copy

                // Check that all elements that should be in there, are in there.
                BOOST_FOREACH(int x, rep) {
                    BOOST_CHECK(mru.count(x));
                    BOOST_CHECK(mru2.count(x));
                }

                // Check that all elements that are in there, should be in there.
                BOOST_FOREACH(int x, mru) {
                    BOOST_CHECK(all.count(x));
                }

                // Check that all elements that are in there, should be in there.
                BOOST_FOREACH(int x, mru2) {
                    BOOST_CHECK(all.count(x));
                }

                for (int t = 0; t < 10; t++) {
                    int r = GetRandInt(15000);
                    BOOST_CHECK(all.count(r) == mru.count(r));
                    BOOST_CHECK(all.count(r) == mru2.count(r));
                }
            }
        }
    }
}

BOOST_AUTO_TEST_CASE(mrumap_test)
{
    // The mrumap being tested.
    mrumap<int, char> mru(5000);

    // Run the test 10 times.
    for (int test = 0; test < 10; test++) {
        // Reset mru.
        mru.clear(5000);

        // A deque + set to simulate the mruset.
        std::deque<int> rep;
        std::map<int, char> all;

        // Insert 10000 random integers below 15000.
        for (int j=0; j<10000; j++) {
            int add = GetRandInt(15000);
            char val = (char)GetRandInt(256);
            mru.insert(add, val);

            // Add the number to rep/all as well.
            if (all.count(add) == 0) {
               all.insert(std::make_pair<int, char>(add, val));
               rep.push_back(add);
               if (all.size() == 5001) {
                   all.erase(rep.front());
                   rep.pop_front();
               }
            }

            if (GetRandInt(5) == 0) {
                // With 20% chance: remove an item
                int pos = GetRandInt(rep.size());
                std::deque<int>::iterator it = rep.begin();
                while (pos--) { it++; }
                int delval = *it;
                mru.erase(delval);
                all.erase(delval);
                rep.erase(it);
            }

            // Do a full comparison between mru and the simulated mru every 1000 and every 5001 elements.
            if (j % 1000 == 0 || j % 5001 == 0) {
                // Check that all elements that should be in there, are in there.
                BOOST_FOREACH(int x, rep) {
                    BOOST_CHECK(mru.count(x));
                    BOOST_CHECK(mru.find(x)->second == all[x]);
                }

                // Check that all elements that are in there, should be in there.
                for (mrumap<int, char>::iterator it = mru.begin(); it != mru.end(); it++) {
                    BOOST_CHECK(all.count(it->first));
                    BOOST_CHECK(all[it->first] == it->second);
                }

                for (int t = 0; t < 10; t++) {
                    int r = GetRandInt(15000);
                    BOOST_CHECK(all.count(r) == mru.count(r));
                }
            }
        }
    }
}

BOOST_AUTO_TEST_SUITE_END()