filesystem

package
v1.11.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 21, 2024 License: BSD-3-Clause Imports: 5 Imported by: 4

Documentation

Overview

Package filesystem is a generated GoMock package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RenameIfExists added in v1.7.10

func RenameIfExists(a, b string) (renamed bool, err error)

Renames the file "a" to "b" iff "a" exists. It returns "true" and no error, if rename were successful. It returns "false" and no error, if the file "a" does not exist. It returns "false" and an error, if rename failed.

Types

type MockFile

type MockFile struct {
	MockName    string
	MockIsDir   bool
	MockType    fs.FileMode
	MockInfo    fs.FileInfo
	MockInfoErr error
}

MockFile is an implementation of fs.File for unit testing.

func (MockFile) Info added in v1.7.9

func (m MockFile) Info() (fs.FileInfo, error)

func (MockFile) IsDir

func (m MockFile) IsDir() bool

func (MockFile) Name

func (m MockFile) Name() string

func (MockFile) Type added in v1.7.9

func (m MockFile) Type() fs.FileMode

type MockReader

type MockReader struct {
	// contains filtered or unexported fields
}

MockReader is a mock of Reader interface.

func NewMockReader

func NewMockReader(ctrl *gomock.Controller) *MockReader

NewMockReader creates a new mock instance.

func (*MockReader) EXPECT

func (m *MockReader) EXPECT() *MockReaderMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockReader) ReadDir

func (m *MockReader) ReadDir(arg0 string) ([]fs.DirEntry, error)

ReadDir mocks base method.

type MockReaderMockRecorder

type MockReaderMockRecorder struct {
	// contains filtered or unexported fields
}

MockReaderMockRecorder is the mock recorder for MockReader.

func (*MockReaderMockRecorder) ReadDir

func (mr *MockReaderMockRecorder) ReadDir(arg0 any) *gomock.Call

ReadDir indicates an expected call of ReadDir.

type Reader

type Reader interface {
	// ReadDir reads a given directory.
	// Returns the files in the directory.
	ReadDir(string) ([]fs.DirEntry, error)
}

Reader is an interface for reading the filesystem.

func NewReader

func NewReader() Reader

NewReader returns an instance of Reader

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL