2013-01-23 18:17:58 +05:30
|
|
|
// Copyright (C) 2013 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/>.
|
|
|
|
|
2013-01-23 19:38:05 +05:30
|
|
|
// Set to one to add compile time checks.
|
|
|
|
#define COMPILE_TIME_ERROR 0
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
#include "gmock/gmock.h"
|
2013-01-23 18:17:58 +05:30
|
|
|
#include "persistent-data/buffer.h"
|
|
|
|
|
|
|
|
using namespace persistent_data;
|
2013-03-22 17:34:38 +05:30
|
|
|
using namespace testing;
|
|
|
|
|
|
|
|
// FIXME: get rid of these comments, the tests should be self explanatory
|
2013-01-23 18:17:58 +05:30
|
|
|
|
|
|
|
// - Allocate several on the heap, check they have the requested
|
|
|
|
// alignment. Try for various Alignments. If memalign has
|
|
|
|
// restrictions could you document (eg, power of 2).
|
|
|
|
// - you can use the [] to set a value in a non-const instance
|
|
|
|
// - you can't use the [] to set a value in a const instance - not
|
|
|
|
// sure how to do this, since it'll be a compile time error.
|
|
|
|
// - you can use [] to read back a value that you've set.
|
|
|
|
// - [] to read works in a const instance.
|
|
|
|
// - you can use raw() to get and set values.
|
|
|
|
// - an exception is thrown if you put too large an index in []
|
|
|
|
// - check you can't copy a buffer via a copy constructor or ==
|
|
|
|
// - (again a compile time error, just experiment so you understand
|
|
|
|
// - boost::noncopyable).
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
template <uint32_t Size, uint32_t Alignment>
|
|
|
|
typename buffer<Size, Alignment>::ptr
|
|
|
|
create_buffer(void) {
|
|
|
|
return typename buffer<Size, Alignment>::ptr(new buffer<Size, Alignment>());
|
|
|
|
}
|
2013-03-22 17:34:38 +05:30
|
|
|
|
|
|
|
template <typename buffer>
|
|
|
|
void assert_aligned(buffer const &b) {
|
|
|
|
ASSERT_THAT((unsigned long) b.raw() & (buffer::ALIGNMENT - 1), Eq(0u));
|
|
|
|
}
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_8_a_8_raw_access)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
|
|
|
uint32_t const sz = 8, align = 8;
|
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
unsigned char *p = b->raw();
|
|
|
|
// unsigned char const *pc = b->raw();
|
|
|
|
|
|
|
|
p[0] = 0;
|
2013-03-22 17:34:38 +05:30
|
|
|
ASSERT_THAT(p[0], Eq(0));
|
2013-01-23 18:17:58 +05:30
|
|
|
p[0] = 4;
|
2013-03-22 17:34:38 +05:30
|
|
|
ASSERT_THAT(p[0], Eq(4));
|
2013-01-23 19:38:05 +05:30
|
|
|
}
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_8_a_8_access)
|
2013-01-23 19:38:05 +05:30
|
|
|
{
|
|
|
|
uint32_t const sz = 8, align = 8;
|
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
(*b)[0] = 0;
|
|
|
|
ASSERT_THAT((*b)[0], Eq(0));
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_8_a_8_oob)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
|
|
|
uint32_t const sz = 8, align = 8;
|
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
ASSERT_THROW((*b)[8], std::range_error);
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_128_a_2_succeeds)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 128, align = 2;
|
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-06-25 18:48:38 +05:30
|
|
|
ASSERT_TRUE(static_cast<bool>(b));
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_128_a_4_succeeds)
|
2013-01-23 19:38:05 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 128, align = 4;
|
2013-01-23 19:38:05 +05:30
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
2013-06-25 18:48:38 +05:30
|
|
|
ASSERT_TRUE(static_cast<bool>(b));
|
2013-01-23 19:38:05 +05:30
|
|
|
}
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
// Varying buffer size, alignment 8
|
|
|
|
TEST(BufferTest, obeys_alignment)
|
|
|
|
{
|
|
|
|
assert_aligned(*create_buffer<8, 8>());
|
|
|
|
assert_aligned(*create_buffer<16, 8>());
|
|
|
|
assert_aligned(*create_buffer<32, 8>());
|
|
|
|
assert_aligned(*create_buffer<64, 8>());
|
|
|
|
assert_aligned(*create_buffer<128, 8>());
|
|
|
|
assert_aligned(*create_buffer<256, 8>());
|
|
|
|
assert_aligned(*create_buffer<512, 8>());
|
|
|
|
assert_aligned(*create_buffer<1024, 8>());
|
|
|
|
assert_aligned(*create_buffer<2048, 8>());
|
|
|
|
assert_aligned(*create_buffer<4096, 8>());
|
|
|
|
assert_aligned(*create_buffer<8192, 8>());
|
|
|
|
|
|
|
|
assert_aligned(*create_buffer<8, 16>());
|
|
|
|
assert_aligned(*create_buffer<16, 16>());
|
|
|
|
assert_aligned(*create_buffer<32, 16>());
|
|
|
|
assert_aligned(*create_buffer<64, 16>());
|
|
|
|
assert_aligned(*create_buffer<128, 16>());
|
|
|
|
assert_aligned(*create_buffer<256, 16>());
|
|
|
|
assert_aligned(*create_buffer<512, 16>());
|
|
|
|
assert_aligned(*create_buffer<1024, 16>());
|
|
|
|
assert_aligned(*create_buffer<2048, 16>());
|
|
|
|
assert_aligned(*create_buffer<4096, 16>());
|
|
|
|
assert_aligned(*create_buffer<8192, 16>());
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
2013-01-23 19:38:05 +05:30
|
|
|
#if COMPILE_TIME_ERROR
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_copy_fails)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 8, align = 8;
|
|
|
|
buffer<sz, align>::ptr b1 = create_buffer<sz, align>();
|
|
|
|
buffer<sz, align>::ptr b2;
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
*b2 = *b1; // Compile time failure
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
2013-01-23 19:38:05 +05:30
|
|
|
#endif
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
#if COMPILE_TIME_ERROR
|
|
|
|
TEST(BufferTest, buffer_8_a_8_raw_const_access)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 8, align = 8;
|
2013-01-23 18:17:58 +05:30
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
2013-03-22 17:34:38 +05:30
|
|
|
unsigned char const *pc = b->raw();
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
pc[0] = 5; // Compile time error accessing read-only location
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
2013-03-22 17:34:38 +05:30
|
|
|
#endif
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-01-23 19:38:05 +05:30
|
|
|
#if COMPILE_TIME_ERROR
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_8_a_8_const_access)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 8, align = 8;
|
|
|
|
buffer<sz, align>::const_ptr b = create_buffer<sz, align>();
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
(*b)[0] = 0; // Compile time error accessing read-only location
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
2013-01-23 19:38:05 +05:30
|
|
|
#endif
|
2013-01-23 18:17:58 +05:30
|
|
|
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
// 8 byte buffer size, varying alignment from 1 - 7
|
2013-01-23 19:38:05 +05:30
|
|
|
#if COMPILE_TIME_ERROR
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_128_a_1_fails)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 128, align = 1;
|
2013-01-23 18:17:58 +05:30
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
|
|
|
BOOST_CHECK(!b);
|
2013-03-22 17:34:38 +05:30
|
|
|
ASSERT_THAT((unsigned long) b->raw() & (align - 1), 1);
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
2013-03-22 17:34:38 +05:30
|
|
|
#endif
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
#if COMPILE_TIME_ERROR
|
|
|
|
TEST(BufferTest, buffer_128_a_3_fails)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 128, align = 3;
|
2013-01-23 18:17:58 +05:30
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
|
|
|
BOOST_CHECK(!b);
|
|
|
|
}
|
2013-01-23 19:38:05 +05:30
|
|
|
#endif
|
2013-01-23 18:17:58 +05:30
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
#if COMPILE_TIME_ERROR
|
|
|
|
TEST(BufferTest, buffer_128_a_5_fails)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 128, align = 5;
|
2013-01-23 18:17:58 +05:30
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
BOOST_CHECK(!b);
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_128_a_6_fails)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 128, align = 6;
|
2013-01-23 18:17:58 +05:30
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
BOOST_CHECK(!b);
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
TEST(BufferTest, buffer_128_a_7_fails)
|
2013-01-23 18:17:58 +05:30
|
|
|
{
|
2013-03-22 17:34:38 +05:30
|
|
|
uint32_t const sz = 128, align = 7;
|
2013-01-23 18:17:58 +05:30
|
|
|
buffer<sz, align>::ptr b = create_buffer<sz, align>();
|
|
|
|
|
2013-03-22 17:34:38 +05:30
|
|
|
BOOST_CHECK(!b);
|
2013-01-23 18:17:58 +05:30
|
|
|
}
|
2013-03-22 17:34:38 +05:30
|
|
|
#endif
|
2013-01-23 18:17:58 +05:30
|
|
|
|
|
|
|
|
2013-01-23 19:38:05 +05:30
|
|
|
#undef COMPILE_TIME_ERROR
|
2013-03-22 17:34:38 +05:30
|
|
|
#endif
|
2013-01-23 18:17:58 +05:30
|
|
|
//----------------------------------------------------------------
|