mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
cc4b3cbacc
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibTest/TestCase.h>
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/CircularQueue.h>
|
|
|
|
TEST_CASE(basic)
|
|
{
|
|
CircularQueue<int, 3> ints;
|
|
EXPECT(ints.is_empty());
|
|
ints.enqueue(1);
|
|
ints.enqueue(2);
|
|
ints.enqueue(3);
|
|
EXPECT_EQ(ints.size(), 3u);
|
|
|
|
ints.enqueue(4);
|
|
EXPECT_EQ(ints.size(), 3u);
|
|
EXPECT_EQ(ints.dequeue(), 2);
|
|
EXPECT_EQ(ints.dequeue(), 3);
|
|
EXPECT_EQ(ints.dequeue(), 4);
|
|
EXPECT_EQ(ints.size(), 0u);
|
|
}
|
|
|
|
TEST_CASE(complex_type)
|
|
{
|
|
CircularQueue<ByteString, 2> strings;
|
|
|
|
strings.enqueue("ABC");
|
|
strings.enqueue("DEF");
|
|
|
|
EXPECT_EQ(strings.size(), 2u);
|
|
|
|
strings.enqueue("abc");
|
|
strings.enqueue("def");
|
|
|
|
EXPECT_EQ(strings.dequeue(), "abc");
|
|
EXPECT_EQ(strings.dequeue(), "def");
|
|
}
|
|
|
|
TEST_CASE(complex_type_clear)
|
|
{
|
|
CircularQueue<ByteString, 5> strings;
|
|
strings.enqueue("xxx");
|
|
strings.enqueue("xxx");
|
|
strings.enqueue("xxx");
|
|
strings.enqueue("xxx");
|
|
strings.enqueue("xxx");
|
|
EXPECT_EQ(strings.size(), 5u);
|
|
strings.clear();
|
|
EXPECT_EQ(strings.size(), 0u);
|
|
}
|
|
|
|
struct ConstructorCounter {
|
|
static unsigned s_num_constructor_calls;
|
|
ConstructorCounter() { ++s_num_constructor_calls; }
|
|
};
|
|
unsigned ConstructorCounter::s_num_constructor_calls = 0;
|
|
|
|
TEST_CASE(should_not_call_value_type_constructor_when_created)
|
|
{
|
|
CircularQueue<ConstructorCounter, 10> queue;
|
|
EXPECT_EQ(0u, ConstructorCounter::s_num_constructor_calls);
|
|
}
|