X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/aebc4d3647b9823ae8cbb57b21b1af83bfd011fb..85767504e4dc622c5ff469733e49c0cebcee57f1:/hotline/file_store.go diff --git a/hotline/file_store.go b/hotline/file_store.go index f528c36..ed0ffa4 100644 --- a/hotline/file_store.go +++ b/hotline/file_store.go @@ -12,7 +12,8 @@ type FileStore interface { Stat(name string) (os.FileInfo, error) Open(name string) (*os.File, error) Symlink(oldname, newname string) error - + Remove(name string) error + Create(name string) (*os.File, error) // TODO: implement these // Rename(oldpath string, newpath string) error // RemoveAll(path string) error @@ -36,6 +37,14 @@ func (fs *OSFileStore) Symlink(oldname, newname string) error { return os.Symlink(oldname, newname) } +func (fs *OSFileStore) Remove(name string) error { + return os.Remove(name) +} + +func (fs *OSFileStore) Create(name string) (*os.File, error) { + return os.Create(name) +} + type MockFileStore struct { mock.Mock } @@ -63,3 +72,13 @@ func (mfs *MockFileStore) Symlink(oldname, newname string) error { args := mfs.Called(oldname, newname) return args.Error(0) } + +func (mfs *MockFileStore) Remove(name string) error { + args := mfs.Called(name) + return args.Error(0) +} + +func (mfs *MockFileStore) Create(name string) (*os.File, error) { + args := mfs.Called(name) + return args.Get(0).(*os.File), args.Error(1) +}