mocks

package
v0.1.3 Latest Latest
Warning

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

Go to latest
Published: Dec 11, 2020 License: Apache-2.0 Imports: 25 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) DownloadFile added in v0.0.30

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

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

func (*Bucket) Each added in v0.0.28

func (_m *Bucket) Each(ctx context.Context, _a1 string, iterator func(context.Context, *bucket.Bucket, string) error, withRecursive bool) (int, error)

Each provides a mock function with given fields: ctx, _a1, iterator, withRecursive

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) GetClient added in v0.0.22

func (_m *Bucket) GetClient() bucket.BucketsClient

GetClient provides a mock function with given fields:

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() bucket.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) GetThreadID added in v0.0.13

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

GetThreadID provides a mock function with given fields: ctx

func (*Bucket) ItemsCount added in v0.0.23

func (_m *Bucket) ItemsCount(ctx context.Context, _a1 string, withRecursive bool) (int32, error)

ItemsCount provides a mock function with given fields: ctx, _a1, withRecursive

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) (*bucket.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) UpdatedAt added in v0.0.28

func (_m *Bucket) UpdatedAt(ctx context.Context, _a1 string) (int64, error)

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

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 (_m *Client) AcceptSharedFileLink(ctx context.Context, cidHash string, password string, filename string, fileSize string) (*domain.SharedDirEntry, error)

AcceptSharedFileLink provides a mock function with given fields: ctx, cidHash, password, filename, fileSize

func (*Client) AcceptSharedFilesInvitation added in v0.0.13

func (_m *Client) AcceptSharedFilesInvitation(ctx context.Context, invitation domain.Invitation) (domain.Invitation, error)

AcceptSharedFilesInvitation provides a mock function with given fields: ctx, invitation

func (*Client) AttachMailboxNotifier added in v0.0.13

func (_m *Client) AttachMailboxNotifier(notif textile.GrpcMailboxNotifier)

AttachMailboxNotifier provides a mock function with given fields: notif

func (*Client) AttachSynchronizerNotifier added in v0.0.23

func (_m *Client) AttachSynchronizerNotifier(notif sync.EventNotifier)

AttachSynchronizerNotifier provides a mock function with given fields: notif

func (*Client) BucketBackupRestore added in v0.0.28

func (_m *Client) BucketBackupRestore(ctx context.Context, bucketSlug string) error

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

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) DeleteAccount added in v0.0.30

func (_m *Client) DeleteAccount(ctx context.Context) error

DeleteAccount provides a mock function with given fields: ctx

func (*Client) DisableSync added in v0.0.34

func (_m *Client) DisableSync()

DisableSync provides a mock function with given fields:

func (*Client) DownloadPublicItem added in v0.1.3

func (_m *Client) DownloadPublicItem(ctx context.Context, _a1 cid.Cid) (io.ReadCloser, error)

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

func (*Client) GetBucket

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

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

func (*Client) GetDefaultBucket

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

GetDefaultBucket provides a mock function with given fields: ctx

func (*Client) GetFailedHealthchecks added in v0.0.19

func (_m *Client) GetFailedHealthchecks() int

GetFailedHealthchecks provides a mock function with given fields:

func (*Client) GetMailAsNotifications added in v0.0.13

func (_m *Client) GetMailAsNotifications(ctx context.Context, seek string, limit int) ([]*domain.Notification, error)

GetMailAsNotifications provides a mock function with given fields: ctx, seek, limit

func (*Client) GetModel added in v0.0.13

func (_m *Client) GetModel() model.Model

GetModel provides a mock function with given fields:

func (*Client) GetPathAccessRoles added in v0.0.19

func (_m *Client) GetPathAccessRoles(ctx context.Context, b textile.Bucket, path string) ([]domain.Member, error)

GetPathAccessRoles provides a mock function with given fields: ctx, b, path

func (*Client) GetPublicReceivedFile added in v0.0.26

func (_m *Client) GetPublicReceivedFile(ctx context.Context, cidHash string, accepted bool) (*domain.SharedDirEntry, string, error)

GetPublicReceivedFile provides a mock function with given fields: ctx, cidHash, accepted

func (*Client) GetPublicShareBucket added in v0.0.19

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

GetPublicShareBucket provides a mock function with given fields: ctx

func (*Client) GetReceivedFiles added in v0.0.14

func (_m *Client) GetReceivedFiles(ctx context.Context, accepted bool, seek string, limit int) ([]*domain.SharedDirEntry, string, error)

GetReceivedFiles provides a mock function with given fields: ctx, accepted, seek, limit

func (*Client) GetSentFiles added in v0.0.34

func (_m *Client) GetSentFiles(ctx context.Context, seek string, limit int) ([]*domain.SharedDirEntry, string, error)

GetSentFiles provides a mock function with given fields: ctx, seek, limit

func (*Client) GetThreadsConnection

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

GetThreadsConnection provides a mock function with given fields:

func (*Client) IsHealthy added in v0.0.19

func (_m *Client) IsHealthy() bool

IsHealthy provides a mock function with given fields:

func (*Client) IsInitialized added in v0.0.19

func (_m *Client) IsInitialized() bool

IsInitialized 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) Listen added in v0.0.30

func (_m *Client) Listen(ctx context.Context, dbID string, threadName string) (<-chan client.ListenEvent, error)

Listen provides a mock function with given fields: ctx, dbID, threadName

func (*Client) ManageShareFilesViaPublicKey added in v0.1.3

func (_m *Client) ManageShareFilesViaPublicKey(ctx context.Context, paths []domain.FullPath, pubkeys []crypto.PubKey, keys [][]byte, role domain.SharedFilesRoleAction) error

ManageShareFilesViaPublicKey provides a mock function with given fields: ctx, paths, pubkeys, keys, role

func (*Client) RejectSharedFilesInvitation added in v0.0.13

func (_m *Client) RejectSharedFilesInvitation(ctx context.Context, invitation domain.Invitation) (domain.Invitation, error)

RejectSharedFilesInvitation provides a mock function with given fields: ctx, invitation

func (*Client) RemoveKeys added in v0.0.13

func (_m *Client) RemoveKeys(ctx context.Context) error

RemoveKeys provides a mock function with given fields: ctx

func (*Client) RestoreDB added in v0.0.30

func (_m *Client) RestoreDB(ctx context.Context) error

RestoreDB provides a mock function with given fields: ctx

func (*Client) SendMessage added in v0.0.13

func (_m *Client) SendMessage(ctx context.Context, recipient crypto.PubKey, body []byte) (*usersdclient.Message, error)

SendMessage provides a mock function with given fields: ctx, recipient, body

func (*Client) ShareBucket added in v0.0.8

func (_m *Client) ShareBucket(ctx context.Context, bucketSlug string) (*db.Info, 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) Start added in v0.0.10

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

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

func (*Client) ToggleBucketBackup added in v0.0.13

func (_m *Client) ToggleBucketBackup(ctx context.Context, bucketSlug string, bucketBackup bool) (bool, error)

ToggleBucketBackup provides a mock function with given fields: ctx, bucketSlug, bucketBackup

func (*Client) WaitForHealthy added in v0.0.19

func (_m *Client) WaitForHealthy() chan error

WaitForHealthy provides a mock function with given fields:

func (*Client) WaitForInitialized added in v0.0.19

func (_m *Client) WaitForInitialized() chan bool

WaitForInitialized provides a mock function with given fields:

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) GetBool added in v0.0.13

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

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

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 FilesSearchEngine added in v0.0.33

type FilesSearchEngine struct {
	mock.Mock
}

FilesSearchEngine is an autogenerated mock type for the FilesSearchEngine type

func (*FilesSearchEngine) DeleteFileData added in v0.0.33

func (_m *FilesSearchEngine) DeleteFileData(ctx context.Context, data *search.DeleteIndexRecord) error

DeleteFileData provides a mock function with given fields: ctx, data

func (*FilesSearchEngine) InsertFileData added in v0.0.33

func (_m *FilesSearchEngine) InsertFileData(ctx context.Context, data *search.InsertIndexRecord) (*search.IndexRecord, error)

InsertFileData provides a mock function with given fields: ctx, data

func (*FilesSearchEngine) QueryFileData added in v0.0.33

func (_m *FilesSearchEngine) QueryFileData(ctx context.Context, query string, limit int) ([]*search.IndexRecord, error)

QueryFileData provides a mock function with given fields: ctx, query, limit

func (*FilesSearchEngine) Start added in v0.0.33

func (_m *FilesSearchEngine) Start() error

Start provides a mock function with given fields:

type HubAuth added in v0.0.13

type HubAuth struct {
	mock.Mock
}

HubAuth is an autogenerated mock type for the HubAuth type

func (*HubAuth) ClearCache added in v0.0.13

func (_m *HubAuth) ClearCache() error

ClearCache provides a mock function with given fields:

func (*HubAuth) GetHubContext added in v0.0.13

func (_m *HubAuth) GetHubContext(ctx context.Context) (context.Context, error)

GetHubContext provides a mock function with given fields: ctx

func (*HubAuth) GetTokensWithCache added in v0.0.13

func (_m *HubAuth) GetTokensWithCache(ctx context.Context) (*hub.AuthTokens, error)

GetTokensWithCache provides a mock function with given fields: ctx

type Keychain

type Keychain struct {
	mock.Mock
}

Keychain is an autogenerated mock type for the Keychain type

func (*Keychain) DeleteKeypair added in v0.0.13

func (_m *Keychain) DeleteKeypair() error

DeleteKeypair provides a mock function with given fields:

func (*Keychain) GenerateKeyFromMnemonic added in v0.0.13

func (_m *Keychain) GenerateKeyFromMnemonic(_a0 ...keychain.GenerateKeyFromMnemonicOpts) (string, error)

GenerateKeyFromMnemonic provides a mock function with given fields: _a0

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) GetAppToken added in v0.1.0

func (_m *Keychain) GetAppToken(key string) (*permissions.AppToken, error)

GetAppToken provides a mock function with given fields: key

func (*Keychain) GetManagedThreadKey added in v0.0.19

func (_m *Keychain) GetManagedThreadKey(threadKeyName string) (thread.Key, error)

GetManagedThreadKey provides a mock function with given fields: threadKeyName

func (*Keychain) GetStoredKeyPairInLibP2PFormat

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

GetStoredKeyPairInLibP2PFormat provides a mock function with given fields:

func (*Keychain) GetStoredMnemonic added in v0.0.13

func (_m *Keychain) GetStoredMnemonic() (string, error)

GetStoredMnemonic provides a mock function with given fields:

func (*Keychain) GetStoredPublicKey added in v0.0.13

func (_m *Keychain) GetStoredPublicKey() (crypto.PubKey, error)

GetStoredPublicKey provides a mock function with given fields:

func (*Keychain) ImportExistingKeyPair added in v0.0.13

func (_m *Keychain) ImportExistingKeyPair(priv crypto.PrivKey, mnemonic string) error

ImportExistingKeyPair provides a mock function with given fields: priv, mnemonic

func (*Keychain) Sign

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

Sign provides a mock function with given fields: _a0

func (*Keychain) StoreAppToken added in v0.1.0

func (_m *Keychain) StoreAppToken(tok *permissions.AppToken) error

StoreAppToken provides a mock function with given fields: tok

type Keyring added in v0.0.13

type Keyring struct {
	mock.Mock
}

Keyring is an autogenerated mock type for the Keyring type

func (*Keyring) Get added in v0.0.13

func (_m *Keyring) Get(_a0 string) (keyring.Item, error)

Get provides a mock function with given fields: _a0

func (*Keyring) GetMetadata added in v0.0.13

func (_m *Keyring) GetMetadata(_a0 string) (keyring.Metadata, error)

GetMetadata provides a mock function with given fields: _a0

func (*Keyring) Remove added in v0.0.13

func (_m *Keyring) Remove(_a0 string) error

Remove provides a mock function with given fields: _a0

func (*Keyring) Set added in v0.0.13

func (_m *Keyring) Set(_a0 keyring.Item) error

Set provides a mock function with given fields: _a0

type Mailbox added in v0.0.13

type Mailbox struct {
	mock.Mock
}

Mailbox is an autogenerated mock type for the Mailbox type

func (*Mailbox) Identity added in v0.0.13

func (_m *Mailbox) Identity() thread.Identity

Identity provides a mock function with given fields:

func (*Mailbox) ListInboxMessages added in v0.0.13

func (_m *Mailbox) ListInboxMessages(ctx context.Context, opts ...client.ListOption) ([]client.Message, error)

ListInboxMessages provides a mock function with given fields: ctx, opts

func (*Mailbox) SendMessage added in v0.0.13

func (_m *Mailbox) SendMessage(ctx context.Context, to thread.PubKey, body []byte) (client.Message, error)

SendMessage provides a mock function with given fields: ctx, to, body

func (*Mailbox) WatchInbox added in v0.0.13

func (_m *Mailbox) WatchInbox(ctx context.Context, mevents chan<- local.MailboxEvent, offline bool) (<-chan cmd.WatchState, error)

WatchInbox provides a mock function with given fields: ctx, mevents, offline

type Model added in v0.0.19

type Model struct {
	mock.Mock
}

Model is an autogenerated mock type for the Model type

func (*Model) BucketBackupToggle added in v0.0.19

func (_m *Model) BucketBackupToggle(ctx context.Context, bucketSlug string, backup bool) (*model.BucketSchema, error)

BucketBackupToggle provides a mock function with given fields: ctx, bucketSlug, backup

func (*Model) CreateBucket added in v0.0.19

func (_m *Model) CreateBucket(ctx context.Context, bucketSlug string, dbID string) (*model.BucketSchema, error)

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

func (*Model) CreateMirrorBucket added in v0.0.19

func (_m *Model) CreateMirrorBucket(ctx context.Context, bucketSlug string, mirrorBucket *model.MirrorBucketSchema) (*model.BucketSchema, error)

CreateMirrorBucket provides a mock function with given fields: ctx, bucketSlug, mirrorBucket

func (*Model) CreateMirrorFile added in v0.0.19

func (_m *Model) CreateMirrorFile(ctx context.Context, mirrorFile *domain.MirrorFile) (*model.MirrorFileSchema, error)

CreateMirrorFile provides a mock function with given fields: ctx, mirrorFile

func (*Model) CreateReceivedFileViaInvitation added in v0.0.26

func (_m *Model) CreateReceivedFileViaInvitation(ctx context.Context, file domain.FullPath, invitationId string, accepted bool, key []byte, sharedBy string) (*model.ReceivedFileSchema, error)

CreateReceivedFileViaInvitation provides a mock function with given fields: ctx, file, invitationId, accepted, key, sharedBy

func (_m *Model) CreateReceivedFileViaPublicLink(ctx context.Context, ipfsHash string, password string, filename string, filesize string, accepted bool) (*model.ReceivedFileSchema, error)

CreateReceivedFileViaPublicLink provides a mock function with given fields: ctx, ipfsHash, password, filename, filesize, accepted

func (*Model) CreateSentFileViaInvitation added in v0.0.34

func (_m *Model) CreateSentFileViaInvitation(ctx context.Context, file domain.FullPath, invitationId string, key []byte) (*model.SentFileSchema, error)

CreateSentFileViaInvitation provides a mock function with given fields: ctx, file, invitationId, key

func (*Model) CreateSharedPublicKey added in v0.0.19

func (_m *Model) CreateSharedPublicKey(ctx context.Context, pubKey string) (*model.SharedPublicKeySchema, error)

CreateSharedPublicKey provides a mock function with given fields: ctx, pubKey

func (*Model) DeleteReceivedFiles added in v0.1.3

func (_m *Model) DeleteReceivedFiles(ctx context.Context, paths []domain.FullPath, keys [][]byte) error

DeleteReceivedFiles provides a mock function with given fields: ctx, paths, keys

func (*Model) DeleteSearchIndexRecord added in v0.0.30

func (_m *Model) DeleteSearchIndexRecord(ctx context.Context, name string, path string, bucketSlug string, dbId string) error

DeleteSearchIndexRecord provides a mock function with given fields: ctx, name, path, bucketSlug, dbId

func (*Model) FindBucket added in v0.0.19

func (_m *Model) FindBucket(ctx context.Context, bucketSlug string) (*model.BucketSchema, error)

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

func (*Model) FindMirrorFileByPathAndBucketSlug added in v0.0.19

func (_m *Model) FindMirrorFileByPathAndBucketSlug(ctx context.Context, path string, bucketSlug string) (*model.MirrorFileSchema, error)

FindMirrorFileByPathAndBucketSlug provides a mock function with given fields: ctx, path, bucketSlug

func (*Model) FindMirrorFileByPaths added in v0.0.19

func (_m *Model) FindMirrorFileByPaths(ctx context.Context, paths []string) (map[string]*model.MirrorFileSchema, error)

FindMirrorFileByPaths provides a mock function with given fields: ctx, paths

func (*Model) FindPublicLinkReceivedFile added in v0.0.26

func (_m *Model) FindPublicLinkReceivedFile(ctx context.Context, ipfsHash string) (*model.ReceivedFileSchema, error)

FindPublicLinkReceivedFile provides a mock function with given fields: ctx, ipfsHash

func (*Model) FindReceivedFile added in v0.0.19

func (_m *Model) FindReceivedFile(ctx context.Context, remoteDbID string, bucket string, path string) (*model.ReceivedFileSchema, error)

FindReceivedFile provides a mock function with given fields: ctx, remoteDbID, bucket, path

func (*Model) FindReceivedFilesByIds added in v0.0.19

func (_m *Model) FindReceivedFilesByIds(ctx context.Context, ids []string) ([]*model.ReceivedFileSchema, error)

FindReceivedFilesByIds provides a mock function with given fields: ctx, ids

func (*Model) FindSentFile added in v0.0.34

func (_m *Model) FindSentFile(ctx context.Context, remoteDbID string, bucket string, path string) (*model.SentFileSchema, error)

FindSentFile provides a mock function with given fields: ctx, remoteDbID, bucket, path

func (*Model) InitSearchIndexCollection added in v0.0.30

func (_m *Model) InitSearchIndexCollection(ctx context.Context) error

InitSearchIndexCollection provides a mock function with given fields: ctx

func (*Model) ListBuckets added in v0.0.19

func (_m *Model) ListBuckets(ctx context.Context) ([]*model.BucketSchema, error)

ListBuckets provides a mock function with given fields: ctx

func (*Model) ListReceivedFiles added in v0.0.19

func (_m *Model) ListReceivedFiles(ctx context.Context, accepted bool, seek string, limit int) ([]*model.ReceivedFileSchema, error)

ListReceivedFiles provides a mock function with given fields: ctx, accepted, seek, limit

func (*Model) ListReceivedPublicFiles added in v0.0.26

func (_m *Model) ListReceivedPublicFiles(ctx context.Context, cidHash string, accepted bool) ([]*model.ReceivedFileSchema, error)

ListReceivedPublicFiles provides a mock function with given fields: ctx, cidHash, accepted

func (*Model) ListSentFiles added in v0.0.34

func (_m *Model) ListSentFiles(ctx context.Context, seek string, limit int) ([]*model.SentFileSchema, error)

ListSentFiles provides a mock function with given fields: ctx, seek, limit

func (*Model) ListSharedPublicKeys added in v0.0.19

func (_m *Model) ListSharedPublicKeys(ctx context.Context) ([]*model.SharedPublicKeySchema, error)

ListSharedPublicKeys provides a mock function with given fields: ctx

func (*Model) QuerySearchIndex added in v0.0.30

func (_m *Model) QuerySearchIndex(ctx context.Context, query string) ([]*model.SearchIndexRecord, error)

QuerySearchIndex provides a mock function with given fields: ctx, query

func (*Model) UpdateMirrorFile added in v0.0.19

func (_m *Model) UpdateMirrorFile(ctx context.Context, mirrorFile *model.MirrorFileSchema) (*model.MirrorFileSchema, error)

UpdateMirrorFile provides a mock function with given fields: ctx, mirrorFile

func (*Model) UpdateSearchIndexRecord added in v0.0.30

func (_m *Model) UpdateSearchIndexRecord(ctx context.Context, name string, path string, itemType model.SearchItemType, bucketSlug string, dbId string) (*model.SearchIndexRecord, error)

UpdateSearchIndexRecord provides a mock function with given fields: ctx, name, path, itemType, bucketSlug, dbId

func (*Model) UpsertBucket added in v0.0.19

func (_m *Model) UpsertBucket(ctx context.Context, bucketSlug string, dbID string) (*model.BucketSchema, error)

UpsertBucket provides a mock function with given fields: ctx, bucketSlug, dbID

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) DropAll added in v0.0.19

func (_m *Store) DropAll() error

DropAll 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, dbID string, cid string) (string, bool)

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

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

type UsersClient added in v0.0.13

type UsersClient struct {
	mock.Mock
}

UsersClient is an autogenerated mock type for the UsersClient type

func (*UsersClient) ListInboxMessages added in v0.0.13

func (_m *UsersClient) ListInboxMessages(ctx context.Context, opts ...client.ListOption) ([]client.Message, error)

ListInboxMessages provides a mock function with given fields: ctx, opts

func (*UsersClient) SendMessage added in v0.0.13

func (_m *UsersClient) SendMessage(ctx context.Context, from thread.Identity, to thread.PubKey, body []byte) (client.Message, error)

SendMessage provides a mock function with given fields: ctx, from, to, body

func (*UsersClient) SetupMailbox added in v0.0.13

func (_m *UsersClient) SetupMailbox(ctx context.Context) (thread.ID, error)

SetupMailbox provides a mock function with given fields: ctx

type Vault added in v0.0.13

type Vault struct {
	mock.Mock
}

Vault is an autogenerated mock type for the Vault type

func (*Vault) Retrieve added in v0.0.13

func (_m *Vault) Retrieve(uuid string, passphrase string, backupType domain.KeyBackupType) ([]vault.VaultItem, error)

Retrieve provides a mock function with given fields: uuid, passphrase, backupType

func (*Vault) Store added in v0.0.13

func (_m *Vault) Store(uuid string, passphrase string, backupType domain.KeyBackupType, apiToken string, items []vault.VaultItem) (*vault.StoredVault, error)

Store provides a mock function with given fields: uuid, passphrase, backupType, apiToken, items

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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