6a7351da0d
a) Fix build if limits.h provides definition for PAGE_SIZE, as musl does w/musl per XSI[1] although it's apparently optional [2]. This value is only provided when it's known to be a constant, to avoid the need to discover the value dynamically. b) If not using system-provided (kernel headers, or libc headers, or something) use the POSIX approach of querying the value dynamically using sysconf(_SC_PAGE_SIZE) instead of hardcoded value that hopefully is correct. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html [2] http://www.openwall.com/lists/musl/2015/09/11/8 This patch originate from: https://raw.githubusercontent.com/voidlinux/void-packages/a0ece13ad7ab2aae760e09e41e0459bd999a3695/srcpkgs/thin-provisioning-tools/patches/musl.patch and was also applied in NixOS: https://github.com/NixOS/nixpkgs/pull/40559/ cc @dtzWill
210 lines
5.2 KiB
C++
210 lines
5.2 KiB
C++
// Copyright (C) 2016 Red Hat, Inc. All rights reserved.
|
|
//
|
|
// This file is part of the thin-provisioning-tools source.
|
|
//
|
|
// thin-provisioning-tools 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.
|
|
//
|
|
// thin-provisioning-tools 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 thin-provisioning-tools. If not, see
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
#include "gmock/gmock.h"
|
|
#include "block-cache/mem_pool.h"
|
|
#include "block-cache/io_engine.h"
|
|
#include "test_utils.h"
|
|
|
|
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#ifndef PAGE_SIZE
|
|
#define PAGE_SIZE sysconf(_SC_PAGE_SIZE)
|
|
#endif
|
|
|
|
using namespace boost;
|
|
using namespace std;
|
|
using namespace test;
|
|
using namespace testing;
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
namespace {
|
|
unsigned const MAX_IO = 64;
|
|
|
|
class IOEngineTests : public Test {
|
|
public:
|
|
IOEngineTests()
|
|
: pool_(64 * 512, 128 * 512, PAGE_SIZE),
|
|
src_file_("copy_src", 32),
|
|
dest_file_("copy_dest", 32),
|
|
engine_(new aio_engine(MAX_IO)) {
|
|
}
|
|
|
|
// in sectors
|
|
static uint64_t meg(unsigned n) {
|
|
return 2 * 1024 * n;
|
|
}
|
|
|
|
mempool pool_;
|
|
temp_file src_file_;
|
|
temp_file dest_file_;
|
|
unique_ptr<io_engine> engine_;
|
|
};
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
TEST_F(IOEngineTests, empty_test)
|
|
{
|
|
}
|
|
|
|
TEST_F(IOEngineTests, open_and_close)
|
|
{
|
|
auto src_handle = engine_->open_file(src_file_.get_path(), io_engine::M_READ_ONLY);
|
|
auto dest_handle = engine_->open_file(dest_file_.get_path(), io_engine::M_READ_WRITE);
|
|
ASSERT_TRUE(src_handle != dest_handle);
|
|
engine_->close_file(src_handle);
|
|
engine_->close_file(dest_handle);
|
|
}
|
|
|
|
TEST_F(IOEngineTests, you_can_read_a_read_only_handle)
|
|
{
|
|
unsigned nr_sectors = 8;
|
|
auto src_handle = engine_->open_file(src_file_.get_path(), io_engine::M_READ_ONLY);
|
|
void *data = pool_.alloc();
|
|
bool r = engine_->issue_io(src_handle,
|
|
io_engine::D_READ,
|
|
0, nr_sectors,
|
|
data,
|
|
123);
|
|
ASSERT_TRUE(r);
|
|
auto wr = engine_->wait();
|
|
ASSERT_TRUE(wr->first);
|
|
ASSERT_TRUE(wr->second == 123);
|
|
|
|
engine_->close_file(src_handle);
|
|
pool_.free(data);
|
|
}
|
|
|
|
|
|
TEST_F(IOEngineTests, you_cannot_write_to_a_read_only_handle)
|
|
{
|
|
unsigned nr_sectors = 8;
|
|
auto src_handle = engine_->open_file(src_file_.get_path(), io_engine::M_READ_ONLY);
|
|
void *data = pool_.alloc();
|
|
bool r = engine_->issue_io(src_handle,
|
|
io_engine::D_WRITE,
|
|
0, nr_sectors,
|
|
data,
|
|
0);
|
|
ASSERT_FALSE(r);
|
|
engine_->close_file(src_handle);
|
|
pool_.free(data);
|
|
}
|
|
|
|
TEST_F(IOEngineTests, you_can_write_to_a_read_write_handle)
|
|
{
|
|
unsigned nr_sectors = 8;
|
|
auto src_handle = engine_->open_file(src_file_.get_path(), io_engine::M_READ_ONLY);
|
|
void *data = pool_.alloc();
|
|
bool r = engine_->issue_io(src_handle,
|
|
io_engine::D_READ,
|
|
0, nr_sectors,
|
|
data,
|
|
123);
|
|
ASSERT_TRUE(r);
|
|
auto wr = engine_->wait();
|
|
ASSERT_TRUE(wr->first);
|
|
ASSERT_TRUE(wr->second == 123);
|
|
|
|
engine_->close_file(src_handle);
|
|
pool_.free(data);
|
|
}
|
|
|
|
TEST_F(IOEngineTests, final_block_read_succeeds)
|
|
{
|
|
unsigned nr_sectors = 8;
|
|
auto src_handle = engine_->open_file(src_file_.get_path(), io_engine::M_READ_ONLY);
|
|
void *data = pool_.alloc();
|
|
bool r = engine_->issue_io(src_handle,
|
|
io_engine::D_READ,
|
|
meg(32) - nr_sectors, meg(32),
|
|
data,
|
|
123);
|
|
ASSERT_TRUE(r);
|
|
auto wr = engine_->wait();
|
|
ASSERT_TRUE(wr->first);
|
|
|
|
engine_->close_file(src_handle);
|
|
pool_.free(data);
|
|
|
|
}
|
|
|
|
TEST_F(IOEngineTests, out_of_bounds_read_fails)
|
|
{
|
|
unsigned nr_sectors = 8;
|
|
auto src_handle = engine_->open_file(src_file_.get_path(), io_engine::M_READ_ONLY);
|
|
void *data = pool_.alloc();
|
|
bool r = engine_->issue_io(src_handle,
|
|
io_engine::D_READ,
|
|
meg(32), meg(32) + nr_sectors,
|
|
data,
|
|
123);
|
|
ASSERT_TRUE(r);
|
|
auto wr = engine_->wait();
|
|
ASSERT_FALSE(wr->first);
|
|
|
|
engine_->close_file(src_handle);
|
|
pool_.free(data);
|
|
|
|
}
|
|
|
|
TEST_F(IOEngineTests, out_of_bounds_write_succeeds)
|
|
{
|
|
unsigned nr_sectors = 8;
|
|
auto handle = engine_->open_file(dest_file_.get_path(), io_engine::M_READ_WRITE);
|
|
void *data = pool_.alloc();
|
|
bool r = engine_->issue_io(handle,
|
|
io_engine::D_WRITE,
|
|
meg(32), meg(32) + nr_sectors,
|
|
data,
|
|
123);
|
|
ASSERT_TRUE(r);
|
|
auto wr = engine_->wait();
|
|
ASSERT_TRUE(wr->first);
|
|
|
|
engine_->close_file(handle);
|
|
pool_.free(data);
|
|
|
|
}
|
|
|
|
TEST_F(IOEngineTests, succeed_with_timeout)
|
|
{
|
|
unsigned nr_sectors = 8;
|
|
auto src_handle = engine_->open_file(src_file_.get_path(), io_engine::M_READ_ONLY);
|
|
void *data = pool_.alloc();
|
|
bool r = engine_->issue_io(src_handle,
|
|
io_engine::D_READ,
|
|
0, nr_sectors,
|
|
data,
|
|
123);
|
|
ASSERT_TRUE(r);
|
|
unsigned micro = 10;
|
|
auto wr = engine_->wait(micro);
|
|
ASSERT_TRUE(wr->first);
|
|
ASSERT_TRUE(wr->second == 123);
|
|
|
|
engine_->close_file(src_handle);
|
|
pool_.free(data);
|
|
}
|
|
|
|
|
|
//----------------------------------------------------------------
|