libcryfs/src/fspp/fstest/FsppOpenFileTest.h

64 lines
2.1 KiB
C
Raw Normal View History

2015-10-15 13:04:57 +02:00
#pragma once
2015-03-19 05:37:44 +01:00
#ifndef MESSMER_FSPP_FSTEST_FSPPOPENFILETEST_H_
#define MESSMER_FSPP_FSTEST_FSPPOPENFILETEST_H_
#include "testutils/FileTest.h"
2015-03-19 05:37:44 +01:00
template<class ConcreteFileSystemTestFixture>
class FsppOpenFileTest: public FileSystemTest<ConcreteFileSystemTestFixture> {
2015-03-19 05:37:44 +01:00
public:
void IN_STAT(fspp::OpenFile *openFile, std::function<void (const fspp::OpenFile::stat_info&)> callback) {
auto st = openFile->stat();
callback(st);
}
2018-09-15 14:32:58 -07:00
void EXPECT_SIZE(fspp::num_bytes_t expectedSize, fspp::OpenFile *openFile) {
IN_STAT(openFile, [expectedSize] (const fspp::OpenFile::stat_info& st) {
2018-09-15 14:32:58 -07:00
EXPECT_EQ(expectedSize, st.size);
});
EXPECT_NUMBYTES_READABLE(expectedSize, openFile);
}
2018-09-15 14:32:58 -07:00
void EXPECT_NUMBYTES_READABLE(fspp::num_bytes_t expectedSize, fspp::OpenFile *openFile) {
cpputils::Data data(expectedSize.value());
//Try to read one byte more than the expected size
2018-09-15 14:32:58 -07:00
fspp::num_bytes_t readBytes = openFile->read(data.data(), expectedSize+fspp::num_bytes_t(1), fspp::num_bytes_t(0));
//and check that it only read the expected size (but also not less)
2018-09-15 14:32:58 -07:00
EXPECT_EQ(expectedSize, readBytes);
}
2015-03-19 05:37:44 +01:00
};
TYPED_TEST_CASE_P(FsppOpenFileTest);
TYPED_TEST_P(FsppOpenFileTest, CreatedFileIsEmpty) {
auto file = this->CreateFile("/myfile");
auto openFile = this->LoadFile("/myfile")->open(O_RDONLY);
2018-09-15 14:32:58 -07:00
this->EXPECT_SIZE(fspp::num_bytes_t(0), openFile.get());
}
TYPED_TEST_P(FsppOpenFileTest, FileIsFile) {
auto file = this->CreateFile("/myfile");
auto openFile = this->LoadFile("/myfile")->open(O_RDONLY);
this->IN_STAT(openFile.get(), [] (const fspp::OpenFile::stat_info& st) {
EXPECT_TRUE(st.mode.hasFileFlag());
});
2015-03-19 05:37:44 +01:00
}
REGISTER_TYPED_TEST_CASE_P(FsppOpenFileTest,
CreatedFileIsEmpty,
FileIsFile
2015-03-19 05:37:44 +01:00
);
2015-03-19 05:38:00 +01:00
//TODO Test stat
//TODO Test truncate
//TODO Test read
//TODO Test write
//TODO Test flush
//TODO Test fsync
//TODO Test fdatasync
//TODO Test stat on file that was just created (i.e. the OpenFile instance returned by createAndOpenFile)
//TODO Test all operations do (or don't) affect file timestamps correctly
2015-03-19 05:38:00 +01:00
2015-03-19 05:37:44 +01:00
#endif