2014-11-19 00:25:57 +01:00
# pragma once
# ifndef TEST_TESTUTILS_FUSETEST_H_
# define TEST_TESTUTILS_FUSETEST_H_
# include "gtest/gtest.h"
# include "gmock/gmock.h"
# include "fspp/impl/Filesystem.h"
# include "fspp/impl/FuseErrnoException.h"
2014-11-19 16:16:43 +01:00
# include "fspp/fuse/Fuse.h"
2014-11-19 00:25:57 +01:00
# include <boost/filesystem.hpp>
# include "TempDir.h"
2014-11-19 00:40:46 +01:00
# include "FuseThread.h"
2014-11-19 00:25:57 +01:00
# define MOCK_PATH_METHOD1(NAME, RETURNTYPE) \
RETURNTYPE NAME ( const boost : : filesystem : : path & path ) override { \
return NAME ( path . c_str ( ) ) ; \
} \
MOCK_METHOD1 ( NAME , RETURNTYPE ( const char * ) ) ; \
# define MOCK_PATH_METHOD2(NAME, RETURNTYPE, PARAM1) \
RETURNTYPE NAME ( const boost : : filesystem : : path & path , PARAM1 param1 ) override { \
return NAME ( path . c_str ( ) , param1 ) ; \
} \
MOCK_METHOD2 ( NAME , RETURNTYPE ( const char * , PARAM1 ) ) ; \
# define MOCK_PATH_METHOD4(NAME, RETURNTYPE, PARAM1, PARAM2, PARAM3) \
RETURNTYPE NAME ( const boost : : filesystem : : path & path , PARAM1 p1 , PARAM2 p2 , PARAM3 p3 ) override { \
return NAME ( path . c_str ( ) , p1 , p2 , p3 ) ; \
} \
MOCK_METHOD4 ( NAME , RETURNTYPE ( const char * , PARAM1 , PARAM2 , PARAM3 ) ) ; \
class MockFilesystem : public fspp : : Filesystem {
public :
2014-11-25 15:01:33 +01:00
MockFilesystem ( ) ;
virtual ~ MockFilesystem ( ) ;
2014-11-19 00:25:57 +01:00
MOCK_PATH_METHOD2 ( openFile , int , int ) ;
MOCK_METHOD1 ( closeFile , void ( int ) ) ;
MOCK_PATH_METHOD2 ( lstat , void , struct : : stat * ) ;
MOCK_METHOD2 ( fstat , void ( int , struct : : stat * ) ) ;
MOCK_PATH_METHOD2 ( truncate , void , off_t ) ;
MOCK_METHOD2 ( ftruncate , void ( int , off_t ) ) ;
MOCK_METHOD4 ( read , int ( int , void * , size_t , off_t ) ) ;
MOCK_METHOD4 ( write , void ( int , const void * , size_t , off_t ) ) ;
2014-11-21 01:11:24 +01:00
MOCK_METHOD1 ( flush , void ( int ) ) ;
2014-11-19 00:25:57 +01:00
MOCK_METHOD1 ( fsync , void ( int ) ) ;
MOCK_METHOD1 ( fdatasync , void ( int ) ) ;
MOCK_PATH_METHOD2 ( access , void , int ) ;
MOCK_PATH_METHOD2 ( createAndOpenFile , int , mode_t ) ;
MOCK_PATH_METHOD2 ( mkdir , void , mode_t ) ;
MOCK_PATH_METHOD1 ( rmdir , void ) ;
MOCK_PATH_METHOD1 ( unlink , void ) ;
void rename ( const boost : : filesystem : : path & from , const boost : : filesystem : : path & to ) override {
return rename ( from . c_str ( ) , to . c_str ( ) ) ;
}
MOCK_METHOD2 ( rename , void ( const char * , const char * ) ) ;
std : : unique_ptr < std : : vector < std : : string > > readDir ( const boost : : filesystem : : path & path ) {
return std : : unique_ptr < std : : vector < std : : string > > ( readDir ( path . c_str ( ) ) ) ;
}
MOCK_METHOD1 ( readDir , std : : vector < std : : string > * ( const char * ) ) ;
void utimens ( const boost : : filesystem : : path & path , const timespec ts [ 2 ] ) override {
return utimens ( path . c_str ( ) , ts ) ;
}
MOCK_METHOD2 ( utimens , void ( const char * , const timespec [ 2 ] ) ) ;
MOCK_PATH_METHOD2 ( statfs , void , struct statvfs * ) ;
} ;
class FuseTest : public : : testing : : Test {
public :
2014-11-25 14:29:44 +01:00
const char * FILENAME = " /myfile " ;
2014-11-19 00:25:57 +01:00
FuseTest ( ) : fsimpl ( ) {
2014-11-25 13:07:15 +01:00
auto defaultAction = : : testing : : Throw ( fspp : : FuseErrnoException ( EIO ) ) ;
ON_CALL ( fsimpl , openFile ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , closeFile ( : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , lstat ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , fstat ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , truncate ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , ftruncate ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , read ( : : testing : : _ , : : testing : : _ , : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , write ( : : testing : : _ , : : testing : : _ , : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , fsync ( : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , fdatasync ( : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , access ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , createAndOpenFile ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , mkdir ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , rmdir ( : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , unlink ( : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , rename ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , readDir ( : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , utimens ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
ON_CALL ( fsimpl , statfs ( : : testing : : _ , : : testing : : _ ) ) . WillByDefault ( defaultAction ) ;
2014-11-19 00:25:57 +01:00
}
class TempTestFS {
public :
TempTestFS ( MockFilesystem * fsimpl ) : _mountDir ( ) , _fuse ( fsimpl ) , _fuse_thread ( & _fuse ) {
std : : string dirpath = _mountDir . path ( ) . native ( ) ;
int argc = 3 ;
const char * argv [ ] = { " test " , " -f " , dirpath . c_str ( ) } ;
_fuse_thread . start ( argc , const_cast < char * * > ( argv ) ) ;
}
~ TempTestFS ( ) {
_fuse_thread . stop ( ) ;
}
public :
const boost : : filesystem : : path & mountDir ( ) const {
return _mountDir . path ( ) ;
}
private :
TempDir _mountDir ;
fspp : : fuse : : Fuse _fuse ;
FuseThread _fuse_thread ;
} ;
std : : unique_ptr < TempTestFS > TestFS ( ) {
return std : : make_unique < TempTestFS > ( & fsimpl ) ;
}
2014-11-25 13:07:15 +01:00
MockFilesystem fsimpl ;
2014-11-19 00:38:41 +01:00
2014-11-25 14:29:44 +01:00
//TODO Combine ReturnIsFile and ReturnIsFileFstat. This should be possible in gmock by either (a) using ::testing::Undefined as parameter type or (b) using action macros
2014-11-20 13:19:15 +01:00
: : testing : : Action < void ( const char * , struct : : stat * ) > ReturnIsFile =
: : testing : : Invoke ( [ ] ( const char * , struct : : stat * result ) {
result - > st_mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH ;
result - > st_nlink = 1 ;
} ) ;
2014-11-25 14:29:44 +01:00
: : testing : : Action < void ( int , struct : : stat * ) > ReturnIsFileFstat =
: : testing : : Invoke ( [ ] ( int , struct : : stat * result ) {
result - > st_mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH ;
result - > st_nlink = 1 ;
} ) ;
2014-11-20 13:19:15 +01:00
: : testing : : Action < void ( const char * , struct : : stat * ) > ReturnIsDir =
: : testing : : Invoke ( [ ] ( const char * , struct : : stat * result ) {
result - > st_mode = S_IFDIR | S_IRUSR | S_IRGRP | S_IROTH | S_IXUSR | S_IXGRP | S_IXOTH ;
result - > st_nlink = 1 ;
} ) ;
2014-11-25 14:29:44 +01:00
: : testing : : Action < void ( const char * , struct : : stat * ) > ReturnDoesntExist = : : testing : : Throw ( fspp : : FuseErrnoException ( ENOENT ) ) ;
2014-11-25 18:43:50 +01:00
void ReturnIsFileOnLstat ( const bf : : path & path ) ;
void ReturnIsDirOnLstat ( const bf : : path & path ) ;
void ReturnDoesntExistOnLstat ( const bf : : path & path ) ;
void OnOpenReturnFileDescriptor ( const char * filename , int descriptor ) ;
void ReturnIsFileOnFstat ( int descriptor ) ;
2014-11-19 00:25:57 +01:00
} ;
# endif