Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fixed_bits_ddvector_test.cpp « coding_tests « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bf7a70d3b470be8e292de98a0ea21de1960b4ec (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
#include "testing/testing.hpp"

#include "coding/fixed_bits_ddvector.hpp"
#include "coding/writer.hpp"

#include "std/initializer_list.hpp"
#include "std/random.hpp"


namespace
{

template <size_t Bits> void TestWithData(vector<uint32_t> const & lst)
{
  using TVector = FixedBitsDDVector<Bits, MemReader>;
  using TBuffer = vector<uint8_t>;
  using TWriter = MemWriter<TBuffer>;

  TBuffer buf;
  {
    TWriter writer(buf);
    typename TVector::template Builder<TWriter> builder(writer);

    uint32_t optCount = 0;
    uint32_t const optBound = (1 << Bits) - 2;

    for (uint32_t v : lst)
    {
      if (v < optBound)
        ++optCount;

      builder.PushBack(v);
    }

    pair<uint32_t, uint32_t> expected(optCount, lst.size());
    TEST_EQUAL(builder.GetCount(), expected, ());
  }

  MemReader reader(buf.data(), buf.size());
  auto const vec = TVector::Create(reader);

  uint32_t i = 0;
  for (uint32_t actual : lst)
  {
    uint32_t expected;
    TEST(vec->Get(i, expected), ());
    TEST_EQUAL(expected, actual, ());
    ++i;
  }
}

} // namespace

UNIT_TEST(FixedBitsDDVector_Smoke)
{
  TestWithData<3>({0, 3, 6});
  TestWithData<3>({7, 20, 50});
  TestWithData<3>({1, 0, 4, 30, 5, 3, 6, 7, 2, 8, 0});
}

UNIT_TEST(FixedBitsDDVector_Rand)
{
  vector<uint32_t> v;

  default_random_engine gen;
  uniform_int_distribution<uint32_t> distribution(0, 1000);

  size_t constexpr kMaxCount = 1000;
  for (size_t i = 0; i < kMaxCount; ++i)
    v.push_back(distribution(gen));

  TestWithData<3>(v);
  TestWithData<4>(v);
  TestWithData<5>(v);
  TestWithData<6>(v);
  TestWithData<7>(v);
  TestWithData<8>(v);
  TestWithData<9>(v);
}