libcryfs/test/fspp/fuse/fstat/FuseFstatErrorTest.cpp

39 lines
1.4 KiB
C++
Raw Normal View History

2014-11-25 14:29:44 +01:00
#include "testutils/FuseFstatTest.h"
#include "fspp/fs_interface/FuseErrnoException.h"
2014-11-25 14:29:44 +01:00
using ::testing::_;
using ::testing::WithParamInterface;
using ::testing::Values;
using ::testing::Eq;
using ::testing::Throw;
using namespace fspp::fuse;
2014-11-25 14:29:44 +01:00
// Cite from FUSE documentation on the fgetattr function:
// "Currently this is only called after the create() method if that is implemented (see above).
// Later it may be called for invocations of fstat() too."
// So we need to issue a create to get our fstat called.
class FuseFstatErrorTest: public FuseFstatTest, public WithParamInterface<int> {
public:
/*unique_ref<OpenFileHandle> CreateFileAllowErrors(const TempTestFS *fs, const std::string &filename) {
2014-11-25 14:29:44 +01:00
auto real_path = fs->mountDir() / filename;
return make_unique_ref<OpenFileHandle>(real_path.string().c_str(), O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
}*/
2014-11-25 14:29:44 +01:00
};
2019-10-13 14:16:06 +02:00
INSTANTIATE_TEST_SUITE_P(FuseFstatErrorTest, FuseFstatErrorTest, Values(EACCES, EBADF, EFAULT, ELOOP, ENAMETOOLONG, ENOENT, ENOMEM, ENOTDIR, EOVERFLOW));
2014-11-25 14:29:44 +01:00
2014-11-25 14:58:00 +01:00
TEST_P(FuseFstatErrorTest, ReturnedErrorCodeIsCorrect) {
2014-11-25 14:29:44 +01:00
ReturnDoesntExistOnLstat(FILENAME);
2014-11-25 18:43:50 +01:00
OnCreateAndOpenReturnFileDescriptor(FILENAME, 0);
2014-11-25 14:29:44 +01:00
EXPECT_CALL(*fsimpl, fstat(Eq(0), _)).Times(1).WillOnce(Throw(FuseErrnoException(GetParam())));
2014-11-25 14:29:44 +01:00
auto fs = TestFS();
int error = CreateFileReturnError(fs.get(), FILENAME);
EXPECT_EQ(GetParam(), error);
2014-11-25 14:29:44 +01:00
}