aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/tests/mapped_file_input/mapped_file_input_test.cpp
blob: 639b91bf66bbf011079b959ca0957537cd085cb7 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>
#include <vbench/test/all.h>

using namespace vbench;

TEST("mapped file input") {
    {
        MappedFileInput file("not_found.txt");
        EXPECT_TRUE(file.tainted());
    }
    {
        MappedFileInput file(TEST_PATH("file.txt"));
        EXPECT_TRUE(!file.tainted());
        LineReader reader(file, 3);
        string line;
        EXPECT_TRUE(reader.readLine(line));
        EXPECT_EQUAL("file content", line);
        EXPECT_TRUE(!reader.readLine(line));
    }
}

TEST_MAIN() { TEST_RUN_ALL(); }