// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include #include #include "span.h" #include "test_platform.h" namespace v8_crdtp { // ============================================================================= // span - sequence of bytes // ============================================================================= template class SpanTest : public ::testing::Test {}; using TestTypes = ::testing::Types; TYPED_TEST_SUITE(SpanTest, TestTypes); TYPED_TEST(SpanTest, Empty) { span empty; EXPECT_TRUE(empty.empty()); EXPECT_EQ(0u, empty.size()); EXPECT_EQ(0u, empty.size_bytes()); EXPECT_EQ(empty.begin(), empty.end()); } TYPED_TEST(SpanTest, SingleItem) { TypeParam single_item = 42; span singular(&single_item, 1); EXPECT_FALSE(singular.empty()); EXPECT_EQ(1u, singular.size()); EXPECT_EQ(sizeof(TypeParam), singular.size_bytes()); EXPECT_EQ(singular.begin() + 1, singular.end()); EXPECT_EQ(42, singular[0]); } TYPED_TEST(SpanTest, FiveItems) { std::vector test_input = {31, 32, 33, 34, 35}; span five_items(test_input.data(), 5); EXPECT_FALSE(five_items.empty()); EXPECT_EQ(5u, five_items.size()); EXPECT_EQ(sizeof(TypeParam) * 5, five_items.size_bytes()); EXPECT_EQ(five_items.begin() + 5, five_items.end()); EXPECT_EQ(31, five_items[0]); EXPECT_EQ(32, five_items[1]); EXPECT_EQ(33, five_items[2]); EXPECT_EQ(34, five_items[3]); EXPECT_EQ(35, five_items[4]); span three_items = five_items.subspan(2); EXPECT_EQ(3u, three_items.size()); EXPECT_EQ(33, three_items[0]); EXPECT_EQ(34, three_items[1]); EXPECT_EQ(35, three_items[2]); span two_items = five_items.subspan(2, 2); EXPECT_EQ(2u, two_items.size()); EXPECT_EQ(33, two_items[0]); EXPECT_EQ(34, two_items[1]); } TEST(SpanFromTest, FromConstCharAndLiteral) { // Testing this is useful because strlen(nullptr) is undefined. EXPECT_EQ(nullptr, SpanFrom(nullptr).data()); EXPECT_EQ(0u, SpanFrom(nullptr).size()); const char* kEmpty = ""; EXPECT_EQ(kEmpty, reinterpret_cast(SpanFrom(kEmpty).data())); EXPECT_EQ(0u, SpanFrom(kEmpty).size()); const char* kFoo = "foo"; EXPECT_EQ(kFoo, reinterpret_cast(SpanFrom(kFoo).data())); EXPECT_EQ(3u, SpanFrom(kFoo).size()); EXPECT_EQ(3u, SpanFrom("foo").size()); } TEST(SpanFromTest, FromVectorUint8AndUint16) { std::vector foo = {'f', 'o', 'o'}; span foo_span = SpanFrom(foo); EXPECT_EQ(foo.size(), foo_span.size()); std::vector bar = {0xff, 0xef, 0xeb}; span bar_span = SpanFrom(bar); EXPECT_EQ(bar.size(), bar_span.size()); } TEST(SpanComparisons, ByteWiseLexicographicalOrder) { // Compare the empty span. EXPECT_FALSE(SpanLessThan(span(), span())); EXPECT_TRUE(SpanEquals(span(), span())); // Compare message with itself. std::string msg = "Hello, world"; EXPECT_FALSE(SpanLessThan(SpanFrom(msg), SpanFrom(msg))); EXPECT_TRUE(SpanEquals(SpanFrom(msg), SpanFrom(msg))); // Compare message and copy. EXPECT_FALSE(SpanLessThan(SpanFrom(msg), SpanFrom(std::string(msg)))); EXPECT_TRUE(SpanEquals(SpanFrom(msg), SpanFrom(std::string(msg)))); // Compare two messages. |lesser_msg| < |msg| because of the first // byte ('A' < 'H'). std::string lesser_msg = "A lesser message."; EXPECT_TRUE(SpanLessThan(SpanFrom(lesser_msg), SpanFrom(msg))); EXPECT_FALSE(SpanLessThan(SpanFrom(msg), SpanFrom(lesser_msg))); EXPECT_FALSE(SpanEquals(SpanFrom(msg), SpanFrom(lesser_msg))); } } // namespace v8_crdtp