summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/util/mmap_file_allocator/mmap_file_allocator_test.cpp
blob: 545733a1ebdf6a6ba49898ffc4344613a9277c0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/util/mmap_file_allocator.h>
#include <vespa/vespalib/gtest/gtest.h>
#include <sys/mman.h>

using vespalib::alloc::MemoryAllocator;
using vespalib::alloc::MmapFileAllocator;

namespace {

vespalib::string basedir("mmap-file-allocator-dir");
vespalib::string hello("hello");

struct MyAlloc
{
    const MemoryAllocator& allocator;
    void*                  data;
    size_t                 size;

    MyAlloc(MemoryAllocator& allocator_in, MemoryAllocator::PtrAndSize buf)
        : allocator(allocator_in),
          data(buf.first),
          size(buf.second)
    {
    }

    ~MyAlloc()
    {
        allocator.free(data, size);
    }

    MemoryAllocator::PtrAndSize asPair() const noexcept { return std::make_pair(data, size); }
};

}

class MmapFileAllocatorTest : public ::testing::Test
{
protected:
    MmapFileAllocator _allocator;

public:
    MmapFileAllocatorTest();
    ~MmapFileAllocatorTest();
};

MmapFileAllocatorTest::MmapFileAllocatorTest()
    : _allocator(basedir)
{
}

MmapFileAllocatorTest::~MmapFileAllocatorTest() = default;

TEST_F(MmapFileAllocatorTest, zero_sized_allocation_is_handled)
{
    MyAlloc buf(_allocator, _allocator.alloc(0));
    EXPECT_EQ(nullptr, buf.data);
    EXPECT_EQ(0u, buf.size);
}

TEST_F(MmapFileAllocatorTest, mmap_file_allocator_works)
{
    MyAlloc buf(_allocator, _allocator.alloc(4));
    EXPECT_LE(4u, buf.size);
    EXPECT_TRUE(buf.data != nullptr);
    memcpy(buf.data, "1st", 4);
    MyAlloc buf2(_allocator, _allocator.alloc(5));
    EXPECT_LE(5u, buf2.size);
    EXPECT_TRUE(buf2.data != nullptr);
    EXPECT_TRUE(buf.data != buf2.data);
    memcpy(buf2.data, "fine", 5);
    EXPECT_EQ(0u, _allocator.resize_inplace(buf.asPair(), 5));
    EXPECT_EQ(0u, _allocator.resize_inplace(buf.asPair(), 3));
    EXPECT_NE(0u, _allocator.get_end_offset());
    int result = msync(buf.data, buf.size, MS_SYNC);
    EXPECT_EQ(0, result);
    result = msync(buf2.data, buf2.size, MS_SYNC);
    EXPECT_EQ(0, result);
}

TEST_F(MmapFileAllocatorTest, reuse_file_offset_works)
{
    {
        MyAlloc buf(_allocator, _allocator.alloc(hello.size() + 1));
        memcpy(buf.data, hello.c_str(), hello.size() + 1);
    }
    {
        MyAlloc buf(_allocator, _allocator.alloc(hello.size() + 1));
        EXPECT_EQ(0, memcmp(buf.data, hello.c_str(), hello.size() + 1));
    }
}

GTEST_MAIN_RUN_ALL_TESTS()