2020-08-16 18:33:50 -04:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-16 18:33:50 -04:00
|
|
|
|
*/
|
|
|
|
|
|
2021-04-25 01:53:23 -04:00
|
|
|
|
#include <LibTest/TestCase.h>
|
2020-08-16 18:33:50 -04:00
|
|
|
|
|
|
|
|
|
#include <AK/ByteBuffer.h>
|
2023-02-10 14:12:10 -05:00
|
|
|
|
#include <AK/Vector.h>
|
2020-08-16 18:33:50 -04:00
|
|
|
|
|
|
|
|
|
TEST_CASE(equality_operator)
|
|
|
|
|
{
|
2021-09-05 18:59:52 -04:00
|
|
|
|
ByteBuffer a = ByteBuffer::copy("Hello, world", 7).release_value();
|
|
|
|
|
ByteBuffer b = ByteBuffer::copy("Hello, friend", 7).release_value();
|
2020-08-16 18:33:50 -04:00
|
|
|
|
// `a` and `b` are both "Hello, ".
|
2021-09-05 18:59:52 -04:00
|
|
|
|
ByteBuffer c = ByteBuffer::copy("asdf", 4).release_value();
|
2020-08-16 18:33:50 -04:00
|
|
|
|
ByteBuffer d;
|
|
|
|
|
EXPECT_EQ(a == a, true);
|
|
|
|
|
EXPECT_EQ(a == b, true);
|
|
|
|
|
EXPECT_EQ(a == c, false);
|
|
|
|
|
EXPECT_EQ(a == d, false);
|
|
|
|
|
EXPECT_EQ(b == a, true);
|
|
|
|
|
EXPECT_EQ(b == b, true);
|
|
|
|
|
EXPECT_EQ(b == c, false);
|
|
|
|
|
EXPECT_EQ(b == d, false);
|
|
|
|
|
EXPECT_EQ(c == a, false);
|
|
|
|
|
EXPECT_EQ(c == b, false);
|
|
|
|
|
EXPECT_EQ(c == c, true);
|
|
|
|
|
EXPECT_EQ(c == d, false);
|
|
|
|
|
EXPECT_EQ(d == a, false);
|
|
|
|
|
EXPECT_EQ(d == b, false);
|
|
|
|
|
EXPECT_EQ(d == c, false);
|
|
|
|
|
EXPECT_EQ(d == d, true);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-10 14:12:10 -05:00
|
|
|
|
TEST_CASE(byte_buffer_vector_contains_slow_bytes)
|
|
|
|
|
{
|
|
|
|
|
Vector<ByteBuffer> vector;
|
|
|
|
|
ByteBuffer a = ByteBuffer::copy("Hello, friend", 13).release_value();
|
|
|
|
|
vector.append(a);
|
|
|
|
|
|
|
|
|
|
ReadonlyBytes b = "Hello, friend"sv.bytes();
|
|
|
|
|
Bytes c = a.bytes();
|
|
|
|
|
EXPECT_EQ(vector.contains_slow(b), true);
|
|
|
|
|
EXPECT_EQ(vector.contains_slow(c), true);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-09 09:31:27 -05:00
|
|
|
|
BENCHMARK_CASE(append)
|
|
|
|
|
{
|
|
|
|
|
ByteBuffer bb;
|
|
|
|
|
for (size_t i = 0; i < 1000000; ++i) {
|
|
|
|
|
bb.append(static_cast<u8>(i));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-22 10:10:19 -04:00
|
|
|
|
/*
|
|
|
|
|
* FIXME: These `negative_*` tests should cause precisely one compilation error
|
|
|
|
|
* each, and always for the specified reason. Currently we do not have a harness
|
|
|
|
|
* for that, so in order to run the test you need to set the #define to 1, compile
|
|
|
|
|
* it, and check the error messages manually.
|
|
|
|
|
*/
|
|
|
|
|
#define COMPILE_NEGATIVE_TESTS 0
|
|
|
|
|
#if COMPILE_NEGATIVE_TESTS
|
|
|
|
|
TEST_CASE(negative_operator_lt)
|
2020-08-16 18:33:50 -04:00
|
|
|
|
{
|
2022-01-20 12:47:39 -05:00
|
|
|
|
ByteBuffer a = ByteBuffer::copy("Hello, world", 10).release_value();
|
|
|
|
|
ByteBuffer b = ByteBuffer::copy("Hello, friend", 10).release_value();
|
2020-12-20 18:09:48 -05:00
|
|
|
|
[[maybe_unused]] auto res = a < b;
|
2020-08-22 10:10:19 -04:00
|
|
|
|
// error: error: use of deleted function ‘bool AK::ByteBuffer::operator<(const AK::ByteBuffer&) const’
|
2020-08-16 18:33:50 -04:00
|
|
|
|
}
|
2020-08-22 10:10:19 -04:00
|
|
|
|
#endif /* COMPILE_NEGATIVE_TESTS */
|