2014-11-27 16:40:22 +01:00
|
|
|
#pragma once
|
2015-10-15 13:04:57 +02:00
|
|
|
#ifndef MESSMER_FSPP_TEST_FUSE_WRITE_TESTUTILS_FUSEWRITETEST_H_
|
|
|
|
#define MESSMER_FSPP_TEST_FUSE_WRITE_TESTUTILS_FUSEWRITETEST_H_
|
2014-11-27 16:40:22 +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-27 16:40:22 +01:00
|
|
|
|
|
|
|
class FuseWriteTest: public FuseTest {
|
|
|
|
public:
|
|
|
|
const char *FILENAME = "/myfile";
|
|
|
|
|
2014-12-06 15:33:01 +01:00
|
|
|
struct WriteError {
|
2018-10-14 22:26:30 +02:00
|
|
|
int error{};
|
2018-09-15 23:32:58 +02:00
|
|
|
fspp::num_bytes_t written_bytes;
|
2014-12-06 15:33:01 +01:00
|
|
|
};
|
|
|
|
|
2018-09-15 23:32:58 +02:00
|
|
|
void WriteFile(const char *filename, const void *buf, fspp::num_bytes_t count, fspp::num_bytes_t offset);
|
|
|
|
WriteError WriteFileReturnError(const char *filename, const void *buf, fspp::num_bytes_t count, fspp::num_bytes_t offset);
|
2014-11-27 16:40:22 +01:00
|
|
|
|
|
|
|
private:
|
2017-08-25 01:14:16 +02:00
|
|
|
cpputils::unique_ref<OpenFileHandle> OpenFile(const TempTestFS *fs, const char *filename);
|
2014-11-27 16:40:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|