// 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 #include namespace astc_codec { namespace base { using ::testing::ElementsAre; template static void pushAll(BottomN& heap, const T (&arr)[N]) { for (auto i : arr) { heap.Push(i); } } TEST(BottomN, Sort) { { BottomN 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 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 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 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 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 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