Files
scylladb/test/boost/top_k_test.cc
Konstantin Osipov 1c8736f998 tests: move all test source files to their new locations
1. Move tests to test (using singular seems to be a convention
   in the rest of the code base)
2. Move boost tests to test/boost, other
   (non-boost) unit tests to test/unit, tests which are
   expected to be run manually to test/manual.

Update configure.py and test.py with new paths to tests.
2019-12-16 17:47:42 +03:00

166 lines
4.4 KiB
C++

/*
* Copyright (C) 2018 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Scylla is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
*/
#define BOOST_TEST_MODULE core
#include <boost/test/unit_test.hpp>
#include "utils/top_k.hh"
#include <vector>
#include <algorithm>
using namespace std;
//---------------------------------------------------------------------------------------------
using top_k_t = utils::space_saving_top_k<unsigned>;
using results_t = top_k_t::results;
// a permutation of 1..17
vector<unsigned> freq{13, 8, 12, 4, 11, 2, 15, 1, 5, 3, 16, 7, 6, 9, 14, 10, 17};
// expected results
vector<unsigned> exp_results(unsigned k = 10) {
auto v = freq;
std::sort(v.begin(), v.end(), std::greater<unsigned>());
v.resize(k);
return v;
}
vector<unsigned> count(const utils::space_saving_top_k<unsigned>::results& res) {
vector<unsigned> v;
for (auto& c : res) {
v.push_back(c.count);
}
return v;
}
//---------------------------------------------------------------------------------------------
// items are inserted by their index as key, with frequencies given in freq
BOOST_AUTO_TEST_CASE(test_top_k_straight_insertion) {
top_k_t top(32);
for (unsigned i = 0; i < freq.size(); ++i) {
for (unsigned j = 0; j < freq[i]; ++j) {
top.append(i);
}
}
vector<unsigned> res = count(top.top(10));
BOOST_REQUIRE_EQUAL(res, exp_results());
}
//---------------------------------------------------------------------------------------------
// items inserted by interleaved index order, with frequencies given in freq
BOOST_AUTO_TEST_CASE(test_top_k_interleaved_insertion) {
top_k_t top(32);
auto f1 = freq;
bool all_0;
do {
all_0 = true;
for (unsigned i = 0; i < f1.size(); ++i) {
if (f1[i] > 0) {
--f1[i];
top.append(i);
all_0 = false;
}
}
} while (!all_0);
auto res{count(top.top(10))};
BOOST_REQUIRE_EQUAL(res, exp_results());
}
//---------------------------------------------------------------------------------------------
// items inserted with their frequencies as weights
BOOST_AUTO_TEST_CASE(test_top_k_bulk_insertion) {
top_k_t top(32);
for (unsigned i = 0; i < freq.size(); ++i) {
top.append(i, freq[i]);
}
auto res{count(top.top(10))};
BOOST_REQUIRE_EQUAL(res, exp_results());
}
//---------------------------------------------------------------------------------------------
BOOST_AUTO_TEST_CASE(test_top_k_single_value) {
top_k_t top(32);
for (unsigned i = 0; i < 100; ++i) {
top.append(1);
}
auto res{count(top.top(10))};
BOOST_REQUIRE_EQUAL(res, (vector<unsigned>{100}));
}
//---------------------------------------------------------------------------------------------
struct bad_boy {
unsigned n;
bad_boy(unsigned n) : n(n) {}
bad_boy(const bad_boy& bb) noexcept = default;
bool operator==(const bad_boy& x) const {
static unsigned zz = 0;
if (++zz == 100) {
throw "explode";
}
return n == x.n;
}
operator unsigned() const { return n; }
};
namespace std {
template<>
struct hash<bad_boy>
{
size_t operator()(const bad_boy& x) const { return hash<unsigned>()(x.n); }
};
}
BOOST_AUTO_TEST_CASE(test_top_k_fail) {
utils::space_saving_top_k<bad_boy> top(32);
try {
for (unsigned i = 0; i < 100; ++i) {
top.append_return_all(bad_boy{1});
}
BOOST_FAIL("expected error");
} catch (...) {
BOOST_REQUIRE_EQUAL(top.valid(), false);
}
BOOST_CHECK_THROW(top.top(10), std::runtime_error);
BOOST_CHECK_THROW(top.size(), std::runtime_error);
}
//---------------------------------------------------------------------------------------------