Files
chatterino2/tests/src/LimitedQueue.cpp
2025-11-27 18:49:40 +00:00

272 lines
7.5 KiB
C++

#include "messages/LimitedQueue.hpp"
#include "Test.hpp"
#include <vector>
using namespace chatterino;
template <typename T>
inline void SNAPSHOT_EQUALS(const std::vector<T> &snapshot,
const std::vector<T> &values,
const std::string &msg)
{
EXPECT_EQ(snapshot, values) << msg;
}
TEST(LimitedQueue, PushBack)
{
LimitedQueue<int> queue(5);
int d = 0;
bool flag;
EXPECT_TRUE(queue.empty());
flag = queue.pushBack(1, d);
EXPECT_FALSE(flag);
flag = queue.pushBack(2, d);
EXPECT_FALSE(flag);
EXPECT_FALSE(queue.empty());
auto snapshot1 = queue.getSnapshot();
SNAPSHOT_EQUALS(snapshot1, {1, 2}, "first snapshot");
flag = queue.pushBack(3, d);
EXPECT_FALSE(flag);
flag = queue.pushBack(4, d);
EXPECT_FALSE(flag);
// snapshot should be the same
SNAPSHOT_EQUALS(snapshot1, {1, 2}, "first snapshot same 1");
flag = queue.pushBack(5, d);
EXPECT_FALSE(flag);
flag = queue.pushBack(6, d);
EXPECT_TRUE(flag);
EXPECT_EQ(d, 1);
SNAPSHOT_EQUALS(snapshot1, {1, 2}, "first snapshot same 2");
auto snapshot2 = queue.getSnapshot();
SNAPSHOT_EQUALS(snapshot2, {2, 3, 4, 5, 6}, "second snapshot");
SNAPSHOT_EQUALS(snapshot1, {1, 2}, "first snapshot same 3");
}
TEST(LimitedQueue, PushFront)
{
LimitedQueue<int> queue(5);
queue.pushBack(1);
queue.pushBack(2);
queue.pushBack(3);
std::vector<int> expectedPush = {7, 8};
auto pushed = queue.pushFront({4, 5, 6, 7, 8});
auto snapshot = queue.getSnapshot();
SNAPSHOT_EQUALS(snapshot, {7, 8, 1, 2, 3}, "first snapshot");
EXPECT_EQ(pushed, expectedPush);
auto pushed2 = queue.pushFront({9, 10, 11});
EXPECT_EQ(pushed2.size(), 0);
}
TEST(LimitedQueue, ReplaceItem)
{
LimitedQueue<int> queue(10);
queue.pushBack(1);
queue.pushBack(2);
queue.pushBack(3);
queue.pushBack(4);
queue.pushBack(5);
queue.pushBack(6);
int idex = queue.replaceItem(2, 10);
EXPECT_EQ(idex, 1);
idex = queue.replaceItem(7, 11);
EXPECT_EQ(idex, -1);
int prev = -1;
bool res = queue.replaceItem(std::size_t(0), 9, &prev);
EXPECT_TRUE(res);
EXPECT_EQ(prev, 1);
res = queue.replaceItem(std::size_t(6), 4);
EXPECT_FALSE(res);
// correct hint
EXPECT_EQ(queue.replaceItem(3, 4, 11), 3);
// incorrect hints
EXPECT_EQ(queue.replaceItem(5, 11, 12), 3);
EXPECT_EQ(queue.replaceItem(0, 12, 13), 3);
// oob hint
EXPECT_EQ(queue.replaceItem(42, 13, 14), 3);
// bad needle
EXPECT_EQ(queue.replaceItem(0, 15, 16), -1);
SNAPSHOT_EQUALS(queue.getSnapshot(), {9, 10, 3, 14, 5, 6},
"first snapshot");
}
TEST(LimitedQueue, Find)
{
LimitedQueue<int> queue(10);
queue.pushBack(1);
queue.pushBack(2);
queue.pushBack(3);
queue.pushBack(4);
queue.pushBack(5);
queue.pushBack(6);
// without hint
EXPECT_FALSE(queue
.find([](int i) {
return i == 0;
})
.has_value());
EXPECT_EQ(queue
.find([](int i) {
return i == 1;
})
.value(),
1);
EXPECT_EQ(queue
.find([](int i) {
return i == 2;
})
.value(),
2);
EXPECT_EQ(queue
.find([](int i) {
return i == 6;
})
.value(),
6);
EXPECT_FALSE(queue
.find([](int i) {
return i == 7;
})
.has_value());
EXPECT_FALSE(queue
.find([](int i) {
return i > 6;
})
.has_value());
EXPECT_FALSE(queue
.find([](int i) {
return i <= 0;
})
.has_value());
using Pair = std::pair<size_t, int>;
// with hint
EXPECT_FALSE(queue
.find(0,
[](int i) {
return i == 0;
})
.has_value());
// correct hint
EXPECT_EQ(queue
.find(0,
[](int i) {
return i == 1;
})
.value(),
(Pair{0, 1}));
EXPECT_EQ(queue
.find(1,
[](int i) {
return i == 2;
})
.value(),
(Pair{1, 2}));
// incorrect hint
EXPECT_EQ(queue
.find(1,
[](int i) {
return i == 1;
})
.value(),
(Pair{0, 1}));
EXPECT_EQ(queue
.find(5,
[](int i) {
return i == 6;
})
.value(),
(Pair{5, 6}));
// oob hint
EXPECT_EQ(queue
.find(6,
[](int i) {
return i == 3;
})
.value(),
(Pair{2, 3}));
// non-existent items
EXPECT_FALSE(queue
.find(42,
[](int i) {
return i == 7;
})
.has_value());
EXPECT_FALSE(queue
.find(0,
[](int i) {
return i > 6;
})
.has_value());
EXPECT_FALSE(queue
.find(0,
[](int i) {
return i <= 0;
})
.has_value());
}
TEST(LimitedQueue, LastN)
{
LimitedQueue<int> queue(10);
queue.pushBack(1);
queue.pushBack(2);
queue.pushBack(3);
queue.pushBack(4);
queue.pushBack(5);
queue.pushBack(6);
SNAPSHOT_EQUALS(queue.lastN(0), {}, "no item");
SNAPSHOT_EQUALS(queue.lastN(1), {6}, "one item");
SNAPSHOT_EQUALS(queue.lastN(2), {5, 6}, "two items");
SNAPSHOT_EQUALS(queue.lastN(6), {1, 2, 3, 4, 5, 6}, "all items");
SNAPSHOT_EQUALS(queue.lastN(7), {1, 2, 3, 4, 5, 6}, "all items");
SNAPSHOT_EQUALS(queue.lastN(12), {1, 2, 3, 4, 5, 6}, "all items");
LimitedQueue<int> empty(10);
SNAPSHOT_EQUALS(empty.lastN(0), {}, "empty");
SNAPSHOT_EQUALS(empty.lastN(1), {}, "empty");
SNAPSHOT_EQUALS(empty.lastN(2), {}, "empty");
SNAPSHOT_EQUALS(empty.lastN(6), {}, "empty");
}
TEST(LimitedQueue, FirstN)
{
LimitedQueue<int> queue(10);
queue.pushBack(1);
queue.pushBack(2);
queue.pushBack(3);
queue.pushBack(4);
queue.pushBack(5);
queue.pushBack(6);
SNAPSHOT_EQUALS(queue.firstN(0), {}, "no item");
SNAPSHOT_EQUALS(queue.firstN(1), {1}, "one item");
SNAPSHOT_EQUALS(queue.firstN(2), {1, 2}, "two items");
SNAPSHOT_EQUALS(queue.firstN(6), {1, 2, 3, 4, 5, 6}, "all items");
SNAPSHOT_EQUALS(queue.firstN(7), {1, 2, 3, 4, 5, 6}, "all items");
SNAPSHOT_EQUALS(queue.firstN(12), {1, 2, 3, 4, 5, 6}, "all items");
LimitedQueue<int> empty(10);
SNAPSHOT_EQUALS(empty.firstN(0), {}, "empty");
SNAPSHOT_EQUALS(empty.firstN(1), {}, "empty");
SNAPSHOT_EQUALS(empty.firstN(2), {}, "empty");
SNAPSHOT_EQUALS(empty.firstN(6), {}, "empty");
}