mocks

package
v0.0.8 Latest Latest
Warning

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

Go to latest
Published: Jul 9, 2020 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Bucket

type Bucket struct {
	mock.Mock
}

Bucket is an autogenerated mock type for the Bucket type

func (*Bucket) CreateDirectory

func (_m *Bucket) CreateDirectory(ctx context.Context, _a1 string) (path.Resolved, path.Path, error)

CreateDirectory provides a mock function with given fields: ctx, _a1

func (*Bucket) DeleteDirOrFile

func (_m *Bucket) DeleteDirOrFile(ctx context.Context, _a1 string) (path.Resolved, error)

DeleteDirOrFile provides a mock function with given fields: ctx, _a1

func (*Bucket) DirExists

func (_m *Bucket) DirExists(ctx context.Context, _a1 string) (bool, error)

DirExists provides a mock function with given fields: ctx, _a1

func (*Bucket) FileExists

func (_m *Bucket) FileExists(ctx context.Context, _a1 string) (bool, error)

FileExists provides a mock function with given fields: ctx, _a1

func (*Bucket) GetContext

func (_m *Bucket) GetContext(ctx context.Context) (context.Context, *thread.ID, error)

GetContext provides a mock function with given fields: ctx

func (*Bucket) GetData

func (_m *Bucket) GetData() textile.BucketData

GetData provides a mock function with given fields:

func (*Bucket) GetFile

func (_m *Bucket) GetFile(ctx context.Context, _a1 string, w io.Writer) error

GetFile provides a mock function with given fields: ctx, _a1, w

func (*Bucket) Key

func (_m *Bucket) Key() string

Key provides a mock function with given fields:

func (*Bucket) ListDirectory

func (_m *Bucket) ListDirectory(ctx context.Context, _a1 string) (*textile.DirEntries, error)

ListDirectory provides a mock function with given fields: ctx, _a1

func (*Bucket) Slug

func (_m *Bucket) Slug() string

Slug provides a mock function with given fields:

func (*Bucket) UploadFile

func (_m *Bucket) UploadFile(ctx context.Context, _a1 string, reader io.Reader) (path.Resolved, path.Path, error)

UploadFile provides a mock function with given fields: ctx, _a1, reader

type Client

type Client struct {
	mock.Mock
}

Client is an autogenerated mock type for the Client type

func (*Client) CreateBucket

func (_m *Client) CreateBucket(ctx context.Context, bucketSlug string) (textile.Bucket, error)

CreateBucket provides a mock function with given fields: ctx, bucketSlug

func (*Client) GetBaseThreadsContext

func (_m *Client) GetBaseThreadsContext(ctx context.Context) (context.Context, error)

GetBaseThreadsContext provides a mock function with given fields: ctx

func (*Client) GetBucket

func (_m *Client) GetBucket(ctx context.Context, slug string) (textile.Bucket, error)

GetBucket provides a mock function with given fields: ctx, slug

func (*Client) GetBucketContext

func (_m *Client) GetBucketContext(ctx context.Context, bucketSlug string) (context.Context, *thread.ID, error)

GetBucketContext provides a mock function with given fields: ctx, bucketSlug

func (*Client) GetDefaultBucket

func (_m *Client) GetDefaultBucket(ctx context.Context) (textile.Bucket, error)

GetDefaultBucket provides a mock function with given fields: ctx

func (*Client) GetLocalBucketContext

func (_m *Client) GetLocalBucketContext(ctx context.Context, bucketSlug string) (context.Context, *thread.ID, error)

GetLocalBucketContext provides a mock function with given fields: ctx, bucketSlug

func (*Client) GetThreadsConnection

func (_m *Client) GetThreadsConnection() (*client.Client, error)

GetThreadsConnection provides a mock function with given fields:

func (*Client) IsRunning

func (_m *Client) IsRunning() bool

IsRunning provides a mock function with given fields:

func (*Client) JoinBucket added in v0.0.8

func (_m *Client) JoinBucket(ctx context.Context, slug string, ti *domain.ThreadInfo) (bool, error)

JoinBucket provides a mock function with given fields: ctx, slug, ti

func (*Client) ListBuckets

func (_m *Client) ListBuckets(ctx context.Context) ([]textile.Bucket, error)

ListBuckets provides a mock function with given fields: ctx

func (*Client) ShareBucket added in v0.0.8

func (_m *Client) ShareBucket(ctx context.Context, bucketSlug string) (*client.DBInfo, error)

ShareBucket provides a mock function with given fields: ctx, bucketSlug

func (*Client) Shutdown

func (_m *Client) Shutdown() error

Shutdown provides a mock function with given fields:

func (*Client) StartAndBootstrap

func (_m *Client) StartAndBootstrap(ctx context.Context, cfg config.Config) error

StartAndBootstrap provides a mock function with given fields: ctx, cfg

func (*Client) WaitForReady

func (_m *Client) WaitForReady() chan bool

WaitForReady provides a mock function with given fields:

type Config

type Config struct {
	mock.Mock
}

Config is an autogenerated mock type for the Config type

func (*Config) GetInt

func (_m *Config) GetInt(key string, defaultValue interface{}) int

GetInt provides a mock function with given fields: key, defaultValue

func (*Config) GetString

func (_m *Config) GetString(key string, defaultValue interface{}) string

GetString provides a mock function with given fields: key, defaultValue

type Keychain

type Keychain struct {
	mock.Mock
}

Keychain is an autogenerated mock type for the Keychain type

func (*Keychain) GenerateKeyPair

func (_m *Keychain) GenerateKeyPair() ([]byte, []byte, error)

GenerateKeyPair provides a mock function with given fields:

func (*Keychain) GenerateKeyPairWithForce

func (_m *Keychain) GenerateKeyPairWithForce() ([]byte, []byte, error)

GenerateKeyPairWithForce provides a mock function with given fields:

func (*Keychain) GetStoredKeyPairInLibP2PFormat

func (_m *Keychain) GetStoredKeyPairInLibP2PFormat() (crypto.PrivKey, crypto.PubKey, error)

GetStoredKeyPairInLibP2PFormat provides a mock function with given fields:

func (*Keychain) Sign

func (_m *Keychain) Sign(_a0 []byte) ([]byte, error)

Sign provides a mock function with given fields: _a0

type Path

type Path struct {
	mock.Mock
}

func (Path) IsValid

func (m Path) IsValid() error

func (Path) Mutable

func (m Path) Mutable() bool

func (Path) Namespace

func (m Path) Namespace() string

func (Path) String

func (m Path) String() string

type SpaceEnv

type SpaceEnv struct {
	mock.Mock
}

SpaceEnv is an autogenerated mock type for the SpaceEnv type

func (*SpaceEnv) CurrentFolder

func (_m *SpaceEnv) CurrentFolder() (string, error)

CurrentFolder provides a mock function with given fields:

func (*SpaceEnv) LogLevel

func (_m *SpaceEnv) LogLevel() string

LogLevel provides a mock function with given fields:

func (*SpaceEnv) WorkingFolder

func (_m *SpaceEnv) WorkingFolder() string

WorkingFolder provides a mock function with given fields:

type Store

type Store struct {
	mock.Mock
}

Store is an autogenerated mock type for the Store type

func (*Store) Close

func (_m *Store) Close() error

Close provides a mock function with given fields:

func (*Store) Get

func (_m *Store) Get(key []byte) ([]byte, error)

Get provides a mock function with given fields: key

func (*Store) IsOpen

func (_m *Store) IsOpen() bool

IsOpen provides a mock function with given fields:

func (*Store) KeysWithPrefix

func (_m *Store) KeysWithPrefix(prefix string) ([]string, error)

KeysWithPrefix provides a mock function with given fields: prefix

func (*Store) Open

func (_m *Store) Open() error

Open provides a mock function with given fields:

func (*Store) Remove

func (_m *Store) Remove(key []byte) error

Remove provides a mock function with given fields: key

func (*Store) Set

func (_m *Store) Set(key []byte, value []byte) error

Set provides a mock function with given fields: key, value

func (*Store) SetString

func (_m *Store) SetString(key string, value string) error

SetString provides a mock function with given fields: key, value

type Syncer

type Syncer struct {
	mock.Mock
}

Syncer is an autogenerated mock type for the Syncer type

func (*Syncer) AddFileWatch

func (_m *Syncer) AddFileWatch(addFileInfo domain.AddWatchFile) error

AddFileWatch provides a mock function with given fields: addFileInfo

func (*Syncer) GetOpenFilePath

func (_m *Syncer) GetOpenFilePath(bucketSlug string, bucketPath string) (string, bool)

GetOpenFilePath provides a mock function with given fields: bucketSlug, bucketPath

type TextileNotifier

type TextileNotifier struct {
	mock.Mock
}

TextileNotifier is an autogenerated mock type for the TextileNotifier type

func (*TextileNotifier) SendTextileEvent

func (_m *TextileNotifier) SendTextileEvent(event events.TextileEvent)

SendTextileEvent provides a mock function with given fields: event

Jump to

Keyboard shortcuts

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