aboutsummaryrefslogtreecommitdiff
path: root/src/base/test/bottom_n_test.cpp
blob: 71265d756bffd09e20b1029d87742fead5608b4b (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
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "src/base/bottom_n.h"

#include <gmock/gmock.h>
#include <gtest/gtest.h>

namespace astc_codec {
namespace base {

using ::testing::ElementsAre;

template<typename T, size_t N>
static void pushAll(BottomN<T>& heap, const T (&arr)[N]) {
  for (auto i : arr) {
    heap.Push(i);
  }
}

TEST(BottomN, Sort) {
  {
    BottomN<int> heap(10);
    EXPECT_TRUE(heap.Empty());
    int list[] = { 1,2 };
    pushAll(heap, list);

    EXPECT_EQ(heap.Size(), 2);
    EXPECT_FALSE(heap.Empty());
    EXPECT_THAT(heap.Pop(), ElementsAre(1, 2));
  }

  {
    BottomN<int> heap(6);
    int list[] = {1, 4, 3, 2, 2, 1};
    pushAll(heap, list);

    EXPECT_EQ(heap.Size(), 6);
    EXPECT_THAT(heap.Pop(), ElementsAre(1, 1, 2, 2, 3, 4));
  }
}

TEST(BottomN, Bounds) {
  {
    BottomN<int> heap(4);
    int list[] = { 1, 2, 3, 4 };
    pushAll(heap, list);
    EXPECT_EQ(heap.Size(), 4);

    heap.Push(0);
    EXPECT_EQ(heap.Size(), 4);

    EXPECT_THAT(heap.Pop(), ElementsAre(0, 1, 2, 3));
  }

  {
    BottomN<int> heap(4);
    int list[] = { 4, 3, 2,1 };
    pushAll(heap, list);
    EXPECT_EQ(heap.Size(), 4);

    int list2[] = { 4,4,4,4 };
    pushAll(heap, list2);
    EXPECT_EQ(heap.Size(), 4);

    EXPECT_THAT(heap.Pop(), ElementsAre(1, 2, 3, 4));
  }

  {
    BottomN<int> heap(4);
    int list[] = { 4, 3, 2, 1 };
    pushAll(heap, list);
    EXPECT_EQ(heap.Size(), 4);

    int list2[] = { 5, 5, 5, 5 };
    pushAll(heap, list2);
    EXPECT_EQ(heap.Size(), 4);

    EXPECT_THAT(heap.Pop(), ElementsAre(1, 2, 3, 4));
  }

  {
    BottomN<int> heap(4);
    int list[] = { 4, 3, 2, 1 };
    pushAll(heap, list);
    EXPECT_EQ(heap.Size(), 4);

    int list2[] = { 0, 0, 0, 0 };
    pushAll(heap, list2);
    EXPECT_EQ(heap.Size(), 4);

    EXPECT_THAT(heap.Pop(), ElementsAre(0, 0, 0, 0));
  }
}

}  // namespace base
}  // namespace astc_codec