2014-11-25 14:29:44 +01:00
|
|
|
#pragma once
|
2015-10-15 13:04:57 +02:00
|
|
|
#ifndef MESSMER_FSPP_TEST_FUSE_FSTAT_TESTUTILS_FUSEFSTATTEST_H_
|
|
|
|
#define MESSMER_FSPP_TEST_FUSE_FSTAT_TESTUTILS_FUSEFSTATTEST_H_
|
2014-11-25 14:29:44 +01:00
|
|
|
|
2015-02-17 00:48:49 +01:00
|
|
|
#include "../../../testutils/FuseTest.h"
|
2017-08-25 01:14:16 +02:00
|
|
|
#include "../../../testutils/OpenFileHandle.h"
|
2014-11-25 14:29:44 +01:00
|
|
|
|
|
|
|
class FuseFstatTest: public FuseTest {
|
|
|
|
public:
|
2017-08-25 01:14:16 +02:00
|
|
|
cpputils::unique_ref<OpenFileHandle> 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:
|
2017-08-25 01:14:16 +02:00
|
|
|
cpputils::unique_ref<OpenFileHandle> CreateFileAllowErrors(const TempTestFS *fs, const std::string &filename);
|
2014-11-25 14:29:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|