2020-07-25 17:00:26 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-25 17:00:26 +03:00
|
|
|
*/
|
|
|
|
|
2021-04-25 08:53:23 +03:00
|
|
|
#include <LibTest/TestCase.h>
|
2020-07-25 17:00:26 +03:00
|
|
|
|
|
|
|
#include <AK/Checked.h>
|
|
|
|
#include <AK/Span.h>
|
2021-01-12 21:21:59 +03:00
|
|
|
#include <string.h>
|
2020-07-25 17:00:26 +03:00
|
|
|
|
2020-10-14 01:27:00 +03:00
|
|
|
TEST_CASE(constexpr_default_constructor_is_empty)
|
2020-07-25 17:00:26 +03:00
|
|
|
{
|
2020-10-14 01:27:00 +03:00
|
|
|
constexpr Span<int> span;
|
|
|
|
static_assert(span.is_empty(), "Default constructed span should be empty.");
|
2020-07-25 17:00:26 +03:00
|
|
|
}
|
|
|
|
|
2022-01-07 15:04:05 +03:00
|
|
|
TEST_CASE(implicit_conversion_to_const)
|
2020-07-26 19:08:40 +03:00
|
|
|
{
|
2020-10-14 01:27:00 +03:00
|
|
|
constexpr Bytes bytes0;
|
|
|
|
[[maybe_unused]] constexpr ReadonlyBytes bytes2 = bytes0;
|
|
|
|
[[maybe_unused]] constexpr ReadonlyBytes bytes3 = static_cast<ReadonlyBytes>(bytes2);
|
2020-07-26 19:08:40 +03:00
|
|
|
}
|
|
|
|
|
2020-07-25 17:00:26 +03:00
|
|
|
TEST_CASE(span_works_with_constant_types)
|
|
|
|
{
|
2020-10-14 01:27:00 +03:00
|
|
|
static constexpr u8 buffer[4] { 1, 2, 3, 4 };
|
|
|
|
constexpr ReadonlyBytes bytes { buffer, 4 };
|
2020-07-25 17:00:26 +03:00
|
|
|
|
2021-04-10 16:59:06 +03:00
|
|
|
static_assert(IsConst<RemoveReference<decltype(bytes[1])>>);
|
2020-10-14 01:27:00 +03:00
|
|
|
static_assert(bytes[2] == 3);
|
2020-07-25 17:00:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(span_works_with_mutable_types)
|
|
|
|
{
|
|
|
|
u8 buffer[4] { 1, 2, 3, 4 };
|
|
|
|
Bytes bytes { buffer, 4 };
|
|
|
|
|
|
|
|
EXPECT_EQ(bytes[2], 3);
|
|
|
|
++bytes[2];
|
|
|
|
EXPECT_EQ(bytes[2], 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(iterator_behaves_like_loop)
|
|
|
|
{
|
|
|
|
u8 buffer[256];
|
|
|
|
for (int idx = 0; idx < 256; ++idx) {
|
|
|
|
buffer[idx] = static_cast<u8>(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
Bytes bytes { buffer, 256 };
|
|
|
|
size_t idx = 0;
|
|
|
|
for (auto iter = bytes.begin(); iter < bytes.end(); ++iter) {
|
|
|
|
EXPECT_EQ(*iter, buffer[idx]);
|
|
|
|
|
|
|
|
++idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(modifying_is_possible)
|
|
|
|
{
|
|
|
|
int values_before[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
|
|
|
int values_after[8] = { 7, 6, 5, 4, 3, 2, 1, 0 };
|
|
|
|
|
|
|
|
Span<int> span { values_before, 8 };
|
|
|
|
for (auto& value : span) {
|
|
|
|
value = 8 - value;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int idx = 0; idx < 8; ++idx) {
|
|
|
|
EXPECT_EQ(values_before[idx], values_after[idx]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(at_and_index_operator_return_same_value)
|
|
|
|
{
|
|
|
|
u8 buffer[256];
|
|
|
|
for (int idx = 0; idx < 256; ++idx) {
|
|
|
|
buffer[idx] = static_cast<u8>(idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
Bytes bytes { buffer, 256 };
|
|
|
|
for (int idx = 0; idx < 256; ++idx) {
|
|
|
|
EXPECT_EQ(buffer[idx], bytes[idx]);
|
|
|
|
EXPECT_EQ(bytes[idx], bytes.at(idx));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(can_subspan_whole_span)
|
|
|
|
{
|
2020-10-14 01:27:00 +03:00
|
|
|
static constexpr u8 buffer[16] {};
|
|
|
|
constexpr ReadonlyBytes bytes { buffer, 16 };
|
2020-07-25 17:00:26 +03:00
|
|
|
|
2020-10-14 01:27:00 +03:00
|
|
|
constexpr auto slice = bytes.slice(0, 16);
|
2020-07-25 17:00:26 +03:00
|
|
|
|
2020-10-14 01:27:00 +03:00
|
|
|
static_assert(slice.data() == buffer);
|
|
|
|
static_assert(slice.size() == 16u);
|
2020-07-25 17:00:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(can_subspan_as_intended)
|
|
|
|
{
|
2020-10-14 01:27:00 +03:00
|
|
|
static constexpr u16 buffer[8] { 1, 2, 3, 4, 5, 6, 7, 8 };
|
2020-07-25 17:00:26 +03:00
|
|
|
|
2023-02-05 22:02:54 +03:00
|
|
|
constexpr ReadonlySpan<u16> span { buffer, 8 };
|
2020-10-14 01:27:00 +03:00
|
|
|
constexpr auto slice = span.slice(3, 2);
|
2020-07-25 17:00:26 +03:00
|
|
|
|
2020-10-14 01:27:00 +03:00
|
|
|
static_assert(slice.size() == 2u);
|
|
|
|
static_assert(slice[0] == 4);
|
|
|
|
static_assert(slice[1] == 5);
|
2020-07-25 17:00:26 +03:00
|
|
|
}
|
|
|
|
|
2020-07-27 14:51:12 +03:00
|
|
|
TEST_CASE(span_from_void_pointer)
|
|
|
|
{
|
|
|
|
int value = 0;
|
|
|
|
[[maybe_unused]] Bytes bytes0 { reinterpret_cast<void*>(value), 4 };
|
2022-04-01 20:58:27 +03:00
|
|
|
[[maybe_unused]] ReadonlyBytes bytes1 { reinterpret_cast<void const*>(value), 4 };
|
2020-07-27 14:51:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE(span_from_c_string)
|
|
|
|
{
|
2022-04-01 20:58:27 +03:00
|
|
|
char const* str = "Serenity";
|
2020-07-27 14:51:12 +03:00
|
|
|
[[maybe_unused]] ReadonlyBytes bytes { str, strlen(str) };
|
|
|
|
}
|
2021-05-03 21:46:18 +03:00
|
|
|
|
|
|
|
TEST_CASE(starts_with)
|
|
|
|
{
|
2022-04-01 20:58:27 +03:00
|
|
|
char const* str = "HeyFriends!";
|
2021-05-03 21:46:18 +03:00
|
|
|
ReadonlyBytes bytes { str, strlen(str) };
|
2022-04-01 20:58:27 +03:00
|
|
|
char const* str_hey = "Hey";
|
2021-05-03 21:46:18 +03:00
|
|
|
ReadonlyBytes hey_bytes { str_hey, strlen(str_hey) };
|
|
|
|
EXPECT(bytes.starts_with(hey_bytes));
|
2022-04-01 20:58:27 +03:00
|
|
|
char const* str_nah = "Nah";
|
2021-05-03 21:46:18 +03:00
|
|
|
ReadonlyBytes nah_bytes { str_nah, strlen(str_nah) };
|
|
|
|
EXPECT(!bytes.starts_with(nah_bytes));
|
|
|
|
|
|
|
|
const u8 hey_array[3] = { 'H', 'e', 'y' };
|
|
|
|
ReadonlyBytes hey_bytes_u8 { hey_array, 3 };
|
|
|
|
EXPECT(bytes.starts_with(hey_bytes_u8));
|
|
|
|
}
|