blob: 4500b5de8867c839c7998ccdbb84411bfc7a6f81 [file] [log] [blame]
// Copyright 2017 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 "common/platform/api/quiche_mem_slice.h"
#include <memory>
#include "absl/strings/string_view.h"
#include "quic/core/quic_buffer_allocator.h"
#include "quic/core/quic_simple_buffer_allocator.h"
#include "common/platform/api/quiche_test.h"
namespace quiche {
namespace test {
namespace {
class QuicheMemSliceTest : public QuicheTest {
public:
QuicheMemSliceTest() {
size_t length = 1024;
slice_ = QuicheMemSlice(quic::QuicBuffer(&allocator_, length));
orig_data_ = slice_.data();
orig_length_ = slice_.length();
}
quic::SimpleBufferAllocator allocator_;
QuicheMemSlice slice_;
const char* orig_data_;
size_t orig_length_;
};
TEST_F(QuicheMemSliceTest, MoveConstruct) {
QuicheMemSlice moved(std::move(slice_));
EXPECT_EQ(moved.data(), orig_data_);
EXPECT_EQ(moved.length(), orig_length_);
EXPECT_EQ(nullptr, slice_.data());
EXPECT_EQ(0u, slice_.length());
EXPECT_TRUE(slice_.empty());
}
TEST_F(QuicheMemSliceTest, MoveAssign) {
QuicheMemSlice moved;
moved = std::move(slice_);
EXPECT_EQ(moved.data(), orig_data_);
EXPECT_EQ(moved.length(), orig_length_);
EXPECT_EQ(nullptr, slice_.data());
EXPECT_EQ(0u, slice_.length());
EXPECT_TRUE(slice_.empty());
}
TEST_F(QuicheMemSliceTest, SliceAllocatedOnHeap) {
auto buffer = std::make_unique<char[]>(128);
char* orig_data = buffer.get();
size_t used_length = 105;
QuicheMemSlice slice = QuicheMemSlice(std::move(buffer), used_length);
QuicheMemSlice moved = std::move(slice);
EXPECT_EQ(moved.data(), orig_data);
EXPECT_EQ(moved.length(), used_length);
}
TEST_F(QuicheMemSliceTest, SliceFromBuffer) {
const absl::string_view kTestString =
"RFC 9000 Release Celebration Memorial Test String";
auto buffer = quic::QuicBuffer::Copy(&allocator_, kTestString);
QuicheMemSlice slice(std::move(buffer));
EXPECT_EQ(buffer.data(), nullptr); // NOLINT(bugprone-use-after-move)
EXPECT_EQ(buffer.size(), 0u);
EXPECT_EQ(slice.AsStringView(), kTestString);
EXPECT_EQ(slice.length(), kTestString.length());
}
} // namespace
} // namespace test
} // namespace quiche