2015-04-09 20:25:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-01-12 23:00:49 +03:00
|
|
|
|
|
|
|
#include "nsTPriorityQueue.h"
|
2010-01-12 23:56:16 +03:00
|
|
|
#include <stdio.h>
|
2010-01-12 23:00:49 +03:00
|
|
|
#include <stdlib.h>
|
2015-01-21 07:00:08 +03:00
|
|
|
#include "gtest/gtest.h"
|
2010-01-12 23:00:49 +03:00
|
|
|
|
|
|
|
template <class T, class Compare>
|
|
|
|
void CheckPopSequence(const nsTPriorityQueue<T, Compare>& aQueue,
|
2012-08-22 19:56:38 +04:00
|
|
|
const T* aExpectedSequence,
|
|
|
|
const uint32_t aSequenceLength) {
|
2020-06-10 13:46:17 +03:00
|
|
|
nsTPriorityQueue<T, Compare> copy = aQueue.Clone();
|
2010-01-12 23:00:49 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = 0; i < aSequenceLength; i++) {
|
2015-01-21 07:00:08 +03:00
|
|
|
EXPECT_FALSE(copy.IsEmpty());
|
2010-01-12 23:00:49 +03:00
|
|
|
|
|
|
|
T pop = copy.Pop();
|
2015-01-21 07:00:08 +03:00
|
|
|
EXPECT_EQ(pop, aExpectedSequence[i]);
|
2010-01-12 23:00:49 +03:00
|
|
|
}
|
|
|
|
|
2015-01-21 07:00:08 +03:00
|
|
|
EXPECT_TRUE(copy.IsEmpty());
|
2010-01-12 23:00:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class A>
|
|
|
|
class MaxCompare {
|
|
|
|
public:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool LessThan(const A& a, const A& b) { return a > b; }
|
2010-01-12 23:00:49 +03:00
|
|
|
};
|
|
|
|
|
2015-01-21 07:00:08 +03:00
|
|
|
TEST(PriorityQueue, Main)
|
|
|
|
{
|
2010-01-12 23:00:49 +03:00
|
|
|
nsTPriorityQueue<int> queue;
|
|
|
|
|
2015-01-21 07:00:08 +03:00
|
|
|
EXPECT_TRUE(queue.IsEmpty());
|
2010-01-12 23:00:49 +03:00
|
|
|
|
|
|
|
queue.Push(8);
|
|
|
|
queue.Push(6);
|
|
|
|
queue.Push(4);
|
|
|
|
queue.Push(2);
|
|
|
|
queue.Push(10);
|
|
|
|
queue.Push(6);
|
2015-01-21 07:00:08 +03:00
|
|
|
EXPECT_EQ(queue.Top(), 2);
|
|
|
|
EXPECT_EQ(queue.Length(), 6u);
|
|
|
|
EXPECT_FALSE(queue.IsEmpty());
|
2010-01-12 23:00:49 +03:00
|
|
|
int expected[] = {2, 4, 6, 6, 8, 10};
|
|
|
|
CheckPopSequence(queue, expected, sizeof(expected) / sizeof(expected[0]));
|
|
|
|
|
|
|
|
// copy ctor is tested by using CheckPopSequence, but check default assignment
|
|
|
|
// operator
|
|
|
|
nsTPriorityQueue<int> queue2;
|
2020-06-10 13:46:17 +03:00
|
|
|
queue2 = queue.Clone();
|
2010-01-12 23:00:49 +03:00
|
|
|
CheckPopSequence(queue2, expected, sizeof(expected) / sizeof(expected[0]));
|
|
|
|
|
|
|
|
queue.Clear();
|
2015-01-21 07:00:08 +03:00
|
|
|
EXPECT_TRUE(queue.IsEmpty());
|
2010-01-12 23:00:49 +03:00
|
|
|
|
|
|
|
// try same sequence with a max heap
|
|
|
|
nsTPriorityQueue<int, MaxCompare<int> > max_queue;
|
|
|
|
max_queue.Push(8);
|
|
|
|
max_queue.Push(6);
|
|
|
|
max_queue.Push(4);
|
|
|
|
max_queue.Push(2);
|
|
|
|
max_queue.Push(10);
|
|
|
|
max_queue.Push(6);
|
2015-01-21 07:00:08 +03:00
|
|
|
EXPECT_EQ(max_queue.Top(), 10);
|
2010-01-12 23:00:49 +03:00
|
|
|
int expected_max[] = {10, 8, 6, 6, 4, 2};
|
|
|
|
CheckPopSequence(max_queue, expected_max,
|
|
|
|
sizeof(expected_max) / sizeof(expected_max[0]));
|
|
|
|
}
|