/* vim:set ts=2 sw=2 sts=2 et: */
/**
* \author Marcus Holland-Moritz (github@mhxnet.de)
* \copyright Copyright (c) Marcus Holland-Moritz
*
* This file is part of dwarfs.
*
* dwarfs is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* dwarfs is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with dwarfs. If not, see .
*/
#include
#include
#include
#include
#include
#include
#include
#include
using namespace dwarfs;
namespace {
class mock_cached_block : public reader::internal::cached_block {
public:
mock_cached_block() = default;
mock_cached_block(std::span span)
: span_{span} {}
size_t range_end() const override { return span_ ? span_->size() : 0; }
uint8_t const* data() const override {
return span_ ? span_->data() : nullptr;
}
void decompress_until(size_t) override {}
size_t uncompressed_size() const override { return 0; }
void touch() override {}
bool last_used_before(std::chrono::steady_clock::time_point) const override {
return false;
}
bool any_pages_swapped_out(std::vector&) const override {
return false;
}
private:
std::optional> span_;
};
} // namespace
TEST(block_range, uncompressed) {
std::vector data(100);
std::iota(data.begin(), data.end(), 0);
{
reader::block_range range{data.data(), 0, data.size()};
EXPECT_EQ(range.data(), data.data());
EXPECT_EQ(range.size(), 100);
EXPECT_TRUE(std::equal(range.begin(), range.end(), data.begin()));
}
{
reader::block_range range{data.data(), 10, 20};
EXPECT_EQ(range.size(), 20);
EXPECT_TRUE(std::equal(range.begin(), range.end(), data.begin() + 10));
}
EXPECT_THAT([] { reader::block_range range(nullptr, 0, 0); },
::testing::ThrowsMessage(
::testing::HasSubstr("block_range: block data is null")));
}
TEST(block_range, compressed) {
std::vector data(100);
std::iota(data.begin(), data.end(), 0);
{
auto block = std::make_shared(data);
reader::block_range range{block, 0, data.size()};
EXPECT_EQ(range.data(), data.data());
EXPECT_EQ(range.size(), 100);
EXPECT_TRUE(std::equal(range.begin(), range.end(), data.begin()));
}
{
auto block = std::make_shared(data);
reader::block_range range{block, 10, 20};
EXPECT_EQ(range.size(), 20);
EXPECT_TRUE(std::equal(range.begin(), range.end(), data.begin() + 10));
}
EXPECT_THAT(
[] {
auto block = std::make_shared();
reader::block_range range(block, 0, 0);
},
::testing::ThrowsMessage(
::testing::HasSubstr("block_range: block data is null")));
EXPECT_THAT(
[&] {
auto block = std::make_shared(data);
reader::block_range range(block, 100, 1);
},
::testing::ThrowsMessage(
::testing::HasSubstr("block_range: size out of range (101 > 100)")));
}