libcryfs/test/fspp/fuse/read/FuseReadFileDescriptorTest.cpp

26 lines
819 B
C++
Raw Normal View History

2014-11-27 03:48:38 +01:00
#include "testutils/FuseReadTest.h"
#include "fspp/fs_interface/FuseErrnoException.h"
2014-11-27 03:48:38 +01:00
using ::testing::_;
using ::testing::WithParamInterface;
using ::testing::Values;
using ::testing::Eq;
using namespace fspp::fuse;
2014-11-27 03:48:38 +01:00
class FuseReadFileDescriptorTest: public FuseReadTest, public WithParamInterface<int> {
};
2019-10-13 14:16:06 +02:00
INSTANTIATE_TEST_SUITE_P(FuseReadFileDescriptorTest, FuseReadFileDescriptorTest, Values(0,1,10,1000,1024*1024*1024));
2014-11-27 03:48:38 +01:00
TEST_P(FuseReadFileDescriptorTest, FileDescriptorIsCorrect) {
2018-09-15 23:32:58 +02:00
ReturnIsFileOnLstatWithSize(FILENAME, fspp::num_bytes_t(1));
2014-11-27 03:48:38 +01:00
OnOpenReturnFileDescriptor(FILENAME, GetParam());
EXPECT_CALL(*fsimpl, read(Eq(GetParam()), _, _, _))
2014-11-27 03:48:38 +01:00
.Times(1).WillOnce(ReturnSuccessfulRead);
std::array<char, 1> buf{};
ReadFile(FILENAME, buf.data(), fspp::num_bytes_t(1), fspp::num_bytes_t(0));
2014-11-27 03:48:38 +01:00
}