summaryrefslogtreecommitdiffstats
path: root/vbench/src/tests/mapped_file_input/mapped_file_input_test.cpp
blob: facd70b20ceb8b2198b5818a373d697fa4d7ac0b (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/testapp.h>
#include <vbench/test/all.h>

using namespace vbench;

TEST("mapped file input") {
    {
        MappedFileInput file("not_found.txt");
        EXPECT_TRUE(file.tainted());
    }
    {
        MappedFileInput file(vespalib::TestApp::GetSourceDirectory() + "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(); }