1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 13:30:45 +00:00
falk-werner_webfuse-provider/test/webfuse/tests/integration/file.hpp
2020-04-05 20:11:07 +02:00

27 lines
474 B
C++

#ifndef WF_TEST_INTEGRATION_FILE_HPP
#define WF_TEST_INTEGRATION_FILE_HPP
#include <string>
namespace webfuse_test
{
class File final
{
public:
explicit File(std::string const& path);
~File();
bool isFile();
bool isDirectory();
bool hasAccessRights(int accessRights);
bool hasSize(size_t size);
bool hasSubdirectory(std::string const & subdir);
bool hasContents(std::string const & contents);
private:
std::string path_;
};
}
#endif