libcryfs/test/fspp/fuse/fdatasync/testutils/FuseFdatasyncTest.cpp

32 lines
777 B
C++
Raw Normal View History

2014-11-28 12:27:39 +01:00
#include "FuseFdatasyncTest.h"
2015-11-30 13:51:16 +01:00
#include <fcntl.h>
2014-11-28 12:27:39 +01:00
void FuseFdatasyncTest::FdatasyncFile(const char *filename) {
int error = FdatasyncFileReturnError(filename);
EXPECT_EQ(0, error);
2014-11-28 12:27:39 +01:00
}
int FuseFdatasyncTest::FdatasyncFileReturnError(const char *filename) {
2014-11-28 12:27:39 +01:00
auto fs = TestFS();
int fd = OpenFile(fs.get(), filename);
2015-11-30 13:51:16 +01:00
#ifdef F_FULLFSYNC
// This is MacOSX, which doesn't know fdatasync
int retval = fcntl(fd, F_FULLFSYNC);
#else
int retval = ::fdatasync(fd);
2015-11-30 13:51:16 +01:00
#endif
if (retval != -1) {
return 0;
} else {
return errno;
}
2014-11-28 12:27:39 +01:00
}
int FuseFdatasyncTest::OpenFile(const TempTestFS *fs, const char *filename) {
auto realpath = fs->mountDir() / filename;
int fd = ::open(realpath.c_str(), O_RDWR);
EXPECT_GE(fd, 0) << "Error opening file";
return fd;
}