2020-08-25 09:57:02 -03:00
|
|
|
/*
|
2021-04-28 17:46:44 -03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-08-25 09:57:02 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-25 09:57:02 -03:00
|
|
|
*/
|
|
|
|
|
|
2021-04-25 02:53:23 -03:00
|
|
|
#include <LibTest/TestCase.h>
|
2020-08-25 09:57:02 -03:00
|
|
|
|
|
|
|
|
#include <AK/CircularDuplexStream.h>
|
|
|
|
|
|
|
|
|
|
TEST_CASE(works_like_a_queue)
|
|
|
|
|
{
|
|
|
|
|
constexpr size_t capacity = 32;
|
|
|
|
|
|
|
|
|
|
CircularQueue<u8, capacity> queue;
|
|
|
|
|
CircularDuplexStream<capacity> stream;
|
|
|
|
|
|
|
|
|
|
for (size_t idx = 0; idx < capacity; ++idx) {
|
|
|
|
|
queue.enqueue(static_cast<u8>(idx % 256));
|
|
|
|
|
stream << static_cast<u8>(idx % 256);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (size_t idx = 0; idx < capacity; ++idx) {
|
2021-01-17 18:25:12 -03:00
|
|
|
u8 byte = 0;
|
2020-08-25 09:57:02 -03:00
|
|
|
stream >> byte;
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(queue.dequeue(), byte);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EXPECT(stream.eof());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_CASE(overwritting_is_well_defined)
|
|
|
|
|
{
|
|
|
|
|
constexpr size_t half_capacity = 16;
|
|
|
|
|
constexpr size_t capacity = 2 * half_capacity;
|
|
|
|
|
|
|
|
|
|
CircularDuplexStream<capacity> stream;
|
|
|
|
|
|
|
|
|
|
for (size_t idx = 0; idx < capacity; ++idx)
|
|
|
|
|
stream << static_cast<u8>(idx % 256);
|
|
|
|
|
|
2020-12-19 17:19:59 -03:00
|
|
|
Array<u8, half_capacity> buffer;
|
|
|
|
|
stream >> buffer;
|
2020-08-25 09:57:02 -03:00
|
|
|
|
2020-09-05 12:38:46 -03:00
|
|
|
for (size_t idx = 0; idx < half_capacity; ++idx)
|
2020-12-19 17:19:59 -03:00
|
|
|
EXPECT_EQ(buffer[idx], idx % 256);
|
2020-08-25 09:57:02 -03:00
|
|
|
|
|
|
|
|
for (size_t idx = 0; idx < half_capacity; ++idx)
|
|
|
|
|
stream << static_cast<u8>(idx % 256);
|
|
|
|
|
|
|
|
|
|
for (size_t idx = 0; idx < capacity; ++idx) {
|
2021-01-17 18:25:12 -03:00
|
|
|
u8 byte = 0;
|
2020-08-25 09:57:02 -03:00
|
|
|
stream >> byte;
|
|
|
|
|
|
|
|
|
|
if (idx < half_capacity)
|
|
|
|
|
EXPECT_EQ(byte, half_capacity + idx % 256);
|
|
|
|
|
else
|
|
|
|
|
EXPECT_EQ(byte, idx % 256 - half_capacity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EXPECT(stream.eof());
|
|
|
|
|
}
|