blob: 3078ae13c82502a8ed8517825314ae846e798ce3 [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "utils/file_reader.h"
#include "test/utils.h"
#include <gtest/gtest.h>
using profiler::FileReader;
using profiler::TestUtils;
TEST(Read, FileSizeIsSmallerThanPageSize) {
std::string content;
FileReader::Read(TestUtils::getUtilsTestData("file_reader_small.txt"),
&content);
EXPECT_EQ(37u, content.size());
}
TEST(Read, ReadFileSizeLargerThanBufferSize) {
std::string content;
FileReader::Read(TestUtils::getUtilsTestData("file_reader_large.txt"),
&content);
EXPECT_EQ(5264u, content.size());
}
TEST(Read, ReadFileAbsent) {
std::string content;
EXPECT_FALSE(FileReader::Read(
TestUtils::getUtilsTestData("file_reader_absent.txt"), &content));
}
TEST(ReadToLines, MultipleLineBreakChars) {
std::vector<std::string> lines;
FileReader::Read(
TestUtils::getUtilsTestData("file_reader_multiple_lines.txt"), &lines);
EXPECT_EQ(2u, lines.size());
EXPECT_EQ("It contains two lines.", lines.at(0));
EXPECT_EQ("This is the second line.", lines.at(1));
}