2014-11-25 14:29:44 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef TEST_FSPP_FUSE_FSTAT_TESTUTILS_FUSEFSTATTEST_H_
|
|
|
|
#define TEST_FSPP_FUSE_FSTAT_TESTUTILS_FUSEFSTATTEST_H_
|
|
|
|
|
2015-02-17 00:48:49 +01:00
|
|
|
#include "../../../testutils/FuseTest.h"
|
2014-11-25 14:29:44 +01:00
|
|
|
|
|
|
|
class FuseFstatTest: public FuseTest {
|
|
|
|
public:
|
2014-11-25 18:43:50 +01:00
|
|
|
int CreateFile(const TempTestFS *fs, const std::string &filename);
|
2014-12-06 15:33:01 +01:00
|
|
|
int CreateFileReturnError(const TempTestFS *fs, const std::string &filename);
|
2014-11-25 18:43:50 +01:00
|
|
|
void OnCreateAndOpenReturnFileDescriptor(const char *filename, int descriptor);
|
2014-12-06 15:33:01 +01:00
|
|
|
private:
|
|
|
|
int CreateFileAllowErrors(const TempTestFS *fs, const std::string &filename);
|
2014-11-25 14:29:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|