...

Package mock

import "github.com/go-kivik/kivik/v4/int/mock"
Overview
Index

Overview ▾

Package mock provides minimal mocks for kivik driver interfaces. It is used internally in Kivik for testing.

Index ▾

Constants
type AttachmentMetaGetter
    func (db *AttachmentMetaGetter) GetAttachmentMeta(ctx context.Context, docID, filename string, options driver.Options) (*driver.Attachment, error)
type Attachments
    func (a *Attachments) Close() error
    func (a *Attachments) Next(att *driver.Attachment) error
type Bookmarker
    func (r *Bookmarker) Bookmark() string
type BulkDocer
    func (db *BulkDocer) BulkDocs(ctx context.Context, docs []interface{}, options driver.Options) ([]driver.BulkResult, error)
type BulkGetter
    func (db *BulkGetter) BulkGet(ctx context.Context, docs []driver.BulkGetReference, opts driver.Options) (driver.Rows, error)
type Changes
    func (c *Changes) Close() error
    func (c *Changes) ETag() string
    func (c *Changes) LastSeq() string
    func (c *Changes) Next(change *driver.Change) error
    func (c *Changes) Pending() int64
type Client
    func (c *Client) AllDBs(ctx context.Context, opts driver.Options) ([]string, error)
    func (c *Client) CreateDB(ctx context.Context, dbname string, opts driver.Options) error
    func (c *Client) DB(dbname string, opts driver.Options) (driver.DB, error)
    func (c *Client) DBExists(ctx context.Context, dbname string, opts driver.Options) (bool, error)
    func (c *Client) DestroyDB(ctx context.Context, dbname string, opts driver.Options) error
    func (c *Client) Version(ctx context.Context) (*driver.Version, error)
type ClientCloser
    func (c *ClientCloser) Close() error
type ClientReplicator
    func (c *ClientReplicator) GetReplications(ctx context.Context, opts driver.Options) ([]driver.Replication, error)
    func (c *ClientReplicator) Replicate(ctx context.Context, target, source string, opts driver.Options) (driver.Replication, error)
type Cluster
    func (c *Cluster) ClusterSetup(ctx context.Context, action interface{}) error
    func (c *Cluster) ClusterStatus(ctx context.Context, options driver.Options) (string, error)
    func (c *Cluster) Membership(ctx context.Context) (*driver.ClusterMembership, error)
type Configer
    func (c *Configer) Config(ctx context.Context, node string) (driver.Config, error)
    func (c *Configer) ConfigSection(ctx context.Context, node, section string) (driver.ConfigSection, error)
    func (c *Configer) ConfigValue(ctx context.Context, node, section, key string) (string, error)
    func (c *Configer) DeleteConfigKey(ctx context.Context, node, section, key string) (string, error)
    func (c *Configer) SetConfigValue(ctx context.Context, node, section, key, value string) (string, error)
type Copier
    func (db *Copier) Copy(ctx context.Context, target, source string, options driver.Options) (string, error)
type DB
    func (db *DB) AllDocs(ctx context.Context, options driver.Options) (driver.Rows, error)
    func (db *DB) Changes(ctx context.Context, opts driver.Options) (driver.Changes, error)
    func (db *DB) Close() error
    func (db *DB) Compact(ctx context.Context) error
    func (db *DB) CompactView(ctx context.Context, docID string) error
    func (db *DB) Delete(ctx context.Context, docID string, opts driver.Options) (string, error)
    func (db *DB) DeleteAttachment(ctx context.Context, docID, filename string, opts driver.Options) (string, error)
    func (db *DB) Get(ctx context.Context, docID string, opts driver.Options) (*driver.Document, error)
    func (db *DB) GetAttachment(ctx context.Context, docID, filename string, opts driver.Options) (*driver.Attachment, error)
    func (db *DB) Put(ctx context.Context, docID string, doc interface{}, opts driver.Options) (string, error)
    func (db *DB) PutAttachment(ctx context.Context, docID string, att *driver.Attachment, opts driver.Options) (string, error)
    func (db *DB) Query(ctx context.Context, ddoc, view string, opts driver.Options) (driver.Rows, error)
    func (db *DB) Stats(ctx context.Context) (*driver.DBStats, error)
    func (db *DB) ViewCleanup(ctx context.Context) error
type DBUpdater
    func (c *DBUpdater) DBUpdates(ctx context.Context, options driver.Options) (driver.DBUpdates, error)
type DBUpdates
    func (u *DBUpdates) Close() error
    func (u *DBUpdates) Next(dbupdate *driver.DBUpdate) error
type DBsStatser
    func (c *DBsStatser) DBsStats(ctx context.Context, dbnames []string) ([]*driver.DBStats, error)
type DesignDocer
    func (db *DesignDocer) DesignDocs(ctx context.Context, options driver.Options) (driver.Rows, error)
type DocCreator
    func (db *DocCreator) CreateDoc(ctx context.Context, doc interface{}, opts driver.Options) (string, string, error)
type Driver
    func (d *Driver) NewClient(name string, options driver.Options) (driver.Client, error)
type Finder
    func (db *Finder) CreateIndex(ctx context.Context, ddoc, name string, index interface{}, options driver.Options) error
    func (db *Finder) DeleteIndex(ctx context.Context, ddoc, name string, opts driver.Options) error
    func (db *Finder) Explain(ctx context.Context, query interface{}, opts driver.Options) (*driver.QueryPlan, error)
    func (db *Finder) Find(ctx context.Context, query interface{}, opts driver.Options) (driver.Rows, error)
    func (db *Finder) GetIndexes(ctx context.Context, opts driver.Options) ([]driver.Index, error)
type Flusher
    func (db *Flusher) Flush(ctx context.Context) error
type LastSeqer
    func (l *LastSeqer) LastSeq() (string, error)
type LocalDocer
    func (db *LocalDocer) LocalDocs(ctx context.Context, options driver.Options) (driver.Rows, error)
type OpenRever
    func (db *OpenRever) OpenRevs(ctx context.Context, docID string, revs []string, options driver.Options) (driver.Rows, error)
type PartitionedDB
    func (db *PartitionedDB) PartitionStats(ctx context.Context, name string) (*driver.PartitionStats, error)
type Pinger
    func (c *Pinger) Ping(ctx context.Context) (bool, error)
type Purger
    func (db *Purger) Purge(ctx context.Context, docMap map[string][]string) (*driver.PurgeResult, error)
type Replication
    func (r *Replication) Delete(ctx context.Context) error
    func (r *Replication) EndTime() time.Time
    func (r *Replication) Err() error
    func (r *Replication) ReplicationID() string
    func (r *Replication) Source() string
    func (r *Replication) StartTime() time.Time
    func (r *Replication) State() string
    func (r *Replication) Target() string
    func (r *Replication) Update(ctx context.Context, rep *driver.ReplicationInfo) error
type RevGetter
    func (db *RevGetter) GetRev(ctx context.Context, docID string, opts driver.Options) (string, error)
type RevsDiffer
    func (db *RevsDiffer) RevsDiff(ctx context.Context, revMap interface{}) (driver.Rows, error)
type Rows
    func (r *Rows) Close() error
    func (r *Rows) Next(row *driver.Row) error
    func (r *Rows) Offset() int64
    func (r *Rows) TotalRows() int64
    func (r *Rows) UpdateSeq() string
type RowsWarner
    func (r *RowsWarner) Warning() string
type SecurityDB
    func (db *SecurityDB) Security(ctx context.Context) (*driver.Security, error)
    func (db *SecurityDB) SetSecurity(ctx context.Context, security *driver.Security) error
type Sessioner
    func (s *Sessioner) Session(ctx context.Context) (*driver.Session, error)

Package files

attachments.go bulkdocer.go changes.go client.go db.go dbupdates.go doc.go driver.go options.go replication.go rows.go sessioner.go

Constants

NilOption is a nil option.

const NilOption nilOption = false

type AttachmentMetaGetter

AttachmentMetaGetter mocks a driver.DB and driver.AttachmentMetaGetter

type AttachmentMetaGetter struct {
    *DB
    GetAttachmentMetaFunc func(ctx context.Context, docID, filename string, options driver.Options) (*driver.Attachment, error)
}

func (*AttachmentMetaGetter) GetAttachmentMeta

func (db *AttachmentMetaGetter) GetAttachmentMeta(ctx context.Context, docID, filename string, options driver.Options) (*driver.Attachment, error)

GetAttachmentMeta calls db.GetAttachmentMetaFunc

type Attachments

Attachments mocks driver.Attachments

type Attachments struct {
    // ID identifies a specific Attachments instance
    ID        string
    NextFunc  func(*driver.Attachment) error
    CloseFunc func() error
}

func (*Attachments) Close

func (a *Attachments) Close() error

Close calls a.CloseFunc

func (*Attachments) Next

func (a *Attachments) Next(att *driver.Attachment) error

Next calls a.NextFunc

type Bookmarker

Bookmarker wraps driver.Bookmarker

type Bookmarker struct {
    *Rows
    BookmarkFunc func() string
}

func (*Bookmarker) Bookmark

func (r *Bookmarker) Bookmark() string

Bookmark calls r.BookmarkFunc

type BulkDocer

BulkDocer mocks a driver.DB and driver.BulkDocer

type BulkDocer struct {
    *DB
    BulkDocsFunc func(ctx context.Context, docs []interface{}, options driver.Options) ([]driver.BulkResult, error)
}

func (*BulkDocer) BulkDocs

func (db *BulkDocer) BulkDocs(ctx context.Context, docs []interface{}, options driver.Options) ([]driver.BulkResult, error)

BulkDocs calls db.BulkDocsFunc

type BulkGetter

BulkGetter mocks a driver.DB and driver.BulkGetter

type BulkGetter struct {
    *DB
    BulkGetFunc func(context.Context, []driver.BulkGetReference, driver.Options) (driver.Rows, error)
}

func (*BulkGetter) BulkGet

func (db *BulkGetter) BulkGet(ctx context.Context, docs []driver.BulkGetReference, opts driver.Options) (driver.Rows, error)

BulkGet calls db.BulkGetFunc

type Changes

Changes mocks driver.Changes

type Changes struct {
    NextFunc    func(*driver.Change) error
    CloseFunc   func() error
    LastSeqFunc func() string
    PendingFunc func() int64
    ETagFunc    func() string
}

func (*Changes) Close

func (c *Changes) Close() error

Close calls c.CloseFunc

func (*Changes) ETag

func (c *Changes) ETag() string

ETag calls c.ETagFunc

func (*Changes) LastSeq

func (c *Changes) LastSeq() string

LastSeq calls c.LastSeqFunc

func (*Changes) Next

func (c *Changes) Next(change *driver.Change) error

Next calls c.NextFunc

func (*Changes) Pending

func (c *Changes) Pending() int64

Pending calls c.PendingFunc

type Client

Client mocks driver.Client

type Client struct {
    // ID identifies a specific Client instance
    ID            string
    AllDBsFunc    func(context.Context, driver.Options) ([]string, error)
    CreateDBFunc  func(context.Context, string, driver.Options) error
    DBFunc        func(string, driver.Options) (driver.DB, error)
    DBExistsFunc  func(context.Context, string, driver.Options) (bool, error)
    DestroyDBFunc func(context.Context, string, driver.Options) error
    VersionFunc   func(context.Context) (*driver.Version, error)
}

func (*Client) AllDBs

func (c *Client) AllDBs(ctx context.Context, opts driver.Options) ([]string, error)

AllDBs calls c.AllDBsFunc

func (*Client) CreateDB

func (c *Client) CreateDB(ctx context.Context, dbname string, opts driver.Options) error

CreateDB calls c.CreateDBFunc

func (*Client) DB

func (c *Client) DB(dbname string, opts driver.Options) (driver.DB, error)

DB calls c.DBFunc

func (*Client) DBExists

func (c *Client) DBExists(ctx context.Context, dbname string, opts driver.Options) (bool, error)

DBExists calls c.DBExistsFunc

func (*Client) DestroyDB

func (c *Client) DestroyDB(ctx context.Context, dbname string, opts driver.Options) error

DestroyDB calls c.DestroyDBFunc

func (*Client) Version

func (c *Client) Version(ctx context.Context) (*driver.Version, error)

Version calls c.VersionFunc

type ClientCloser

ClientCloser mocks driver.Client and driver.ClientCloser

type ClientCloser struct {
    *Client
    CloseFunc func() error
}

func (*ClientCloser) Close

func (c *ClientCloser) Close() error

Close calls c.CloseFunc

type ClientReplicator

ClientReplicator mocks driver.Client and driver.ClientReplicator

type ClientReplicator struct {
    *Client
    GetReplicationsFunc func(context.Context, driver.Options) ([]driver.Replication, error)
    ReplicateFunc       func(context.Context, string, string, driver.Options) (driver.Replication, error)
}

func (*ClientReplicator) GetReplications

func (c *ClientReplicator) GetReplications(ctx context.Context, opts driver.Options) ([]driver.Replication, error)

GetReplications calls c.GetReplicationsFunc

func (*ClientReplicator) Replicate

func (c *ClientReplicator) Replicate(ctx context.Context, target, source string, opts driver.Options) (driver.Replication, error)

Replicate calls c.ReplicateFunc

type Cluster

Cluster mocks driver.Client and driver.Cluster

type Cluster struct {
    *Client
    ClusterStatusFunc func(context.Context, driver.Options) (string, error)
    ClusterSetupFunc  func(context.Context, interface{}) error
    MembershipFunc    func(context.Context) (*driver.ClusterMembership, error)
}

func (*Cluster) ClusterSetup

func (c *Cluster) ClusterSetup(ctx context.Context, action interface{}) error

ClusterSetup calls c.ClusterSetupFunc

func (*Cluster) ClusterStatus

func (c *Cluster) ClusterStatus(ctx context.Context, options driver.Options) (string, error)

ClusterStatus calls c.ClusterStatusFunc

func (*Cluster) Membership

func (c *Cluster) Membership(ctx context.Context) (*driver.ClusterMembership, error)

Membership calls c.MembershipFunc

type Configer

Configer mocks driver.Client and driver.Configer

type Configer struct {
    *Client
    ConfigFunc          func(context.Context, string) (driver.Config, error)
    ConfigSectionFunc   func(context.Context, string, string) (driver.ConfigSection, error)
    ConfigValueFunc     func(context.Context, string, string, string) (string, error)
    SetConfigValueFunc  func(context.Context, string, string, string, string) (string, error)
    DeleteConfigKeyFunc func(context.Context, string, string, string) (string, error)
}

func (*Configer) Config

func (c *Configer) Config(ctx context.Context, node string) (driver.Config, error)

Config calls c.ConfigFunc

func (*Configer) ConfigSection

func (c *Configer) ConfigSection(ctx context.Context, node, section string) (driver.ConfigSection, error)

ConfigSection calls c.ConfSectionFunc

func (*Configer) ConfigValue

func (c *Configer) ConfigValue(ctx context.Context, node, section, key string) (string, error)

ConfigValue calls c.ConfigValueFunc

func (*Configer) DeleteConfigKey

func (c *Configer) DeleteConfigKey(ctx context.Context, node, section, key string) (string, error)

DeleteConfigKey calls c.DeleteConfigKeyFunc

func (*Configer) SetConfigValue

func (c *Configer) SetConfigValue(ctx context.Context, node, section, key, value string) (string, error)

SetConfigValue calls c.SetConfigValueFunc

type Copier

Copier mocks a driver.DB and driver.Copier.

type Copier struct {
    *DB
    CopyFunc func(context.Context, string, string, driver.Options) (string, error)
}

func (*Copier) Copy

func (db *Copier) Copy(ctx context.Context, target, source string, options driver.Options) (string, error)

Copy calls db.CopyFunc

type DB

DB mocks a driver.DB

type DB struct {
    // ID is a unique identifier for the DB instance.
    ID                   string
    AllDocsFunc          func(ctx context.Context, options driver.Options) (driver.Rows, error)
    GetFunc              func(ctx context.Context, docID string, options driver.Options) (*driver.Document, error)
    PutFunc              func(ctx context.Context, docID string, doc interface{}, options driver.Options) (rev string, err error)
    DeleteFunc           func(ctx context.Context, docID string, options driver.Options) (newRev string, err error)
    StatsFunc            func(ctx context.Context) (*driver.DBStats, error)
    CompactFunc          func(ctx context.Context) error
    CompactViewFunc      func(ctx context.Context, ddocID string) error
    ViewCleanupFunc      func(ctx context.Context) error
    ChangesFunc          func(ctx context.Context, options driver.Options) (driver.Changes, error)
    PutAttachmentFunc    func(ctx context.Context, docID string, att *driver.Attachment, options driver.Options) (newRev string, err error)
    GetAttachmentFunc    func(ctx context.Context, docID, filename string, options driver.Options) (*driver.Attachment, error)
    DeleteAttachmentFunc func(ctx context.Context, docID, filename string, options driver.Options) (newRev string, err error)
    QueryFunc            func(context.Context, string, string, driver.Options) (driver.Rows, error)
    CloseFunc            func() error
}

func (*DB) AllDocs

func (db *DB) AllDocs(ctx context.Context, options driver.Options) (driver.Rows, error)

AllDocs calls db.AllDocsFunc

func (*DB) Changes

func (db *DB) Changes(ctx context.Context, opts driver.Options) (driver.Changes, error)

Changes calls db.ChangesFunc

func (*DB) Close

func (db *DB) Close() error

Close calls db.CloseFunc

func (*DB) Compact

func (db *DB) Compact(ctx context.Context) error

Compact calls db.CompactFunc

func (*DB) CompactView

func (db *DB) CompactView(ctx context.Context, docID string) error

CompactView calls db.CompactViewFunc

func (*DB) Delete

func (db *DB) Delete(ctx context.Context, docID string, opts driver.Options) (string, error)

Delete calls db.DeleteFunc

func (*DB) DeleteAttachment

func (db *DB) DeleteAttachment(ctx context.Context, docID, filename string, opts driver.Options) (string, error)

DeleteAttachment calls db.DeleteAttachmentFunc

func (*DB) Get

func (db *DB) Get(ctx context.Context, docID string, opts driver.Options) (*driver.Document, error)

Get calls db.GetFunc

func (*DB) GetAttachment

func (db *DB) GetAttachment(ctx context.Context, docID, filename string, opts driver.Options) (*driver.Attachment, error)

GetAttachment calls db.GetAttachmentFunc

func (*DB) Put

func (db *DB) Put(ctx context.Context, docID string, doc interface{}, opts driver.Options) (string, error)

Put calls db.PutFunc

func (*DB) PutAttachment

func (db *DB) PutAttachment(ctx context.Context, docID string, att *driver.Attachment, opts driver.Options) (string, error)

PutAttachment calls db.PutAttachmentFunc

func (*DB) Query

func (db *DB) Query(ctx context.Context, ddoc, view string, opts driver.Options) (driver.Rows, error)

Query calls db.QueryFunc.

func (*DB) Stats

func (db *DB) Stats(ctx context.Context) (*driver.DBStats, error)

Stats calls db.StatsFunc

func (*DB) ViewCleanup

func (db *DB) ViewCleanup(ctx context.Context) error

ViewCleanup calls db.ViewCleanupFunc

type DBUpdater

DBUpdater mocks driver.Client and driver.DBUpdater

type DBUpdater struct {
    *Client
    DBUpdatesFunc func(context.Context, driver.Options) (driver.DBUpdates, error)
}

func (*DBUpdater) DBUpdates

func (c *DBUpdater) DBUpdates(ctx context.Context, options driver.Options) (driver.DBUpdates, error)

DBUpdates calls c.DBUpdatesFunc

type DBUpdates

DBUpdates mocks driver.DBUpdates

type DBUpdates struct {
    // ID identifies a specific DBUpdates instance.
    ID        string
    NextFunc  func(*driver.DBUpdate) error
    CloseFunc func() error
}

func (*DBUpdates) Close

func (u *DBUpdates) Close() error

Close calls u.CloseFunc

func (*DBUpdates) Next

func (u *DBUpdates) Next(dbupdate *driver.DBUpdate) error

Next calls u.NextFunc

type DBsStatser

DBsStatser mocks driver.Client and driver.DBsStatser

type DBsStatser struct {
    *Client
    DBsStatsFunc func(context.Context, []string) ([]*driver.DBStats, error)
}

func (*DBsStatser) DBsStats

func (c *DBsStatser) DBsStats(ctx context.Context, dbnames []string) ([]*driver.DBStats, error)

DBsStats calls c.DBsStatsFunc

type DesignDocer

DesignDocer mocks a driver.DB and driver.DesignDocer

type DesignDocer struct {
    *DB
    DesignDocsFunc func(context.Context, driver.Options) (driver.Rows, error)
}

func (*DesignDocer) DesignDocs

func (db *DesignDocer) DesignDocs(ctx context.Context, options driver.Options) (driver.Rows, error)

DesignDocs calls db.DesignDocsFunc

type DocCreator

DocCreator is a stub for a github.com/go-kivik/v4/driver.DocCreator.

type DocCreator struct {
    DB
    CreateDocFunc func(ctx context.Context, doc interface{}, options driver.Options) (docID, rev string, err error)
}

func (*DocCreator) CreateDoc

func (db *DocCreator) CreateDoc(ctx context.Context, doc interface{}, opts driver.Options) (string, string, error)

CreateDoc calls db.CreateDocFunc

type Driver

Driver mocks a Kivik Driver.

type Driver struct {
    NewClientFunc func(name string, options driver.Options) (driver.Client, error)
}

func (*Driver) NewClient

func (d *Driver) NewClient(name string, options driver.Options) (driver.Client, error)

NewClient calls d.NewClientFunc

type Finder

Finder mocks a driver.DB and driver.Finder

type Finder struct {
    *DB
    CreateIndexFunc func(context.Context, string, string, interface{}, driver.Options) error
    DeleteIndexFunc func(context.Context, string, string, driver.Options) error
    FindFunc        func(context.Context, interface{}, driver.Options) (driver.Rows, error)
    GetIndexesFunc  func(context.Context, driver.Options) ([]driver.Index, error)
    ExplainFunc     func(context.Context, interface{}, driver.Options) (*driver.QueryPlan, error)
}

func (*Finder) CreateIndex

func (db *Finder) CreateIndex(ctx context.Context, ddoc, name string, index interface{}, options driver.Options) error

CreateIndex calls db.CreateIndexFunc

func (*Finder) DeleteIndex

func (db *Finder) DeleteIndex(ctx context.Context, ddoc, name string, opts driver.Options) error

DeleteIndex calls db.DeleteIndexFunc

func (*Finder) Explain

func (db *Finder) Explain(ctx context.Context, query interface{}, opts driver.Options) (*driver.QueryPlan, error)

Explain calls db.ExplainFunc

func (*Finder) Find

func (db *Finder) Find(ctx context.Context, query interface{}, opts driver.Options) (driver.Rows, error)

Find calls db.FindFunc

func (*Finder) GetIndexes

func (db *Finder) GetIndexes(ctx context.Context, opts driver.Options) ([]driver.Index, error)

GetIndexes calls db.GetIndexesFunc

type Flusher

Flusher mocks a driver.DB and driver.Flusher

type Flusher struct {
    *DB
    FlushFunc func(context.Context) error
}

func (*Flusher) Flush

func (db *Flusher) Flush(ctx context.Context) error

Flush calls db.FlushFunc

type LastSeqer

LastSeqer mocks driver.DBUpdates and driver.LastSeqer.

type LastSeqer struct {
    *DBUpdates
    LastSeqFunc func() (string, error)
}

func (*LastSeqer) LastSeq

func (l *LastSeqer) LastSeq() (string, error)

LastSeq calls l.LastSeqFunc.

type LocalDocer

LocalDocer mocks a driver.DB and driver.DesignDocer

type LocalDocer struct {
    *DB
    LocalDocsFunc func(context.Context, driver.Options) (driver.Rows, error)
}

func (*LocalDocer) LocalDocs

func (db *LocalDocer) LocalDocs(ctx context.Context, options driver.Options) (driver.Rows, error)

LocalDocs calls db.LocalDocsFunc

type OpenRever

OpenRever mocks a driver.DB and driver.OpenRever.

type OpenRever struct {
    *DB
    OpenRevsFunc func(context.Context, string, []string, driver.Options) (driver.Rows, error)
}

func (*OpenRever) OpenRevs

func (db *OpenRever) OpenRevs(ctx context.Context, docID string, revs []string, options driver.Options) (driver.Rows, error)

OpenRevs calls db.OpenRevsFunc.

type PartitionedDB

PartitionedDB mocks a driver.DB and a driver.PartitionedDB.

type PartitionedDB struct {
    *DB
    PartitionStatsFunc func(context.Context, string) (*driver.PartitionStats, error)
}

func (*PartitionedDB) PartitionStats

func (db *PartitionedDB) PartitionStats(ctx context.Context, name string) (*driver.PartitionStats, error)

PartitionStats calls db.PartitionStatsFunc.

type Pinger

Pinger mocks driver.Client and driver.Pinger

type Pinger struct {
    *Client
    PingFunc func(context.Context) (bool, error)
}

func (*Pinger) Ping

func (c *Pinger) Ping(ctx context.Context) (bool, error)

Ping calls c.PingFunc

type Purger

Purger mocks a driver.DB and driver.Purger

type Purger struct {
    *DB
    PurgeFunc func(context.Context, map[string][]string) (*driver.PurgeResult, error)
}

func (*Purger) Purge

func (db *Purger) Purge(ctx context.Context, docMap map[string][]string) (*driver.PurgeResult, error)

Purge calls db.PurgeFunc

type Replication

Replication mocks driver.Replication

type Replication struct {
    // ID identifies a specific Replication instance
    ID                string
    DeleteFunc        func(context.Context) error
    StartTimeFunc     func() time.Time
    EndTimeFunc       func() time.Time
    ErrFunc           func() error
    ReplicationIDFunc func() string
    SourceFunc        func() string
    TargetFunc        func() string
    StateFunc         func() string
    UpdateFunc        func(context.Context, *driver.ReplicationInfo) error
}

func (*Replication) Delete

func (r *Replication) Delete(ctx context.Context) error

Delete calls r.DeleteFunc

func (*Replication) EndTime

func (r *Replication) EndTime() time.Time

EndTime calls r.EndTimeFunc

func (*Replication) Err

func (r *Replication) Err() error

Err calls r.ErrFunc

func (*Replication) ReplicationID

func (r *Replication) ReplicationID() string

ReplicationID calls r.ReplicationIDFunc

func (*Replication) Source

func (r *Replication) Source() string

Source calls r.SourceFunc or returns a default value if SourceFunc is nil

func (*Replication) StartTime

func (r *Replication) StartTime() time.Time

StartTime calls r.StartTimeFunc

func (*Replication) State

func (r *Replication) State() string

State calls r.StateFunc

func (*Replication) Target

func (r *Replication) Target() string

Target calls r.TargetFunc or returns a default if TargetFunc is nil

func (*Replication) Update

func (r *Replication) Update(ctx context.Context, rep *driver.ReplicationInfo) error

Update calls r.UpdateFunc

type RevGetter

RevGetter mocks a driver.DB and driver.RevGetter

type RevGetter struct {
    *DB
    GetRevFunc func(context.Context, string, driver.Options) (string, error)
}

func (*RevGetter) GetRev

func (db *RevGetter) GetRev(ctx context.Context, docID string, opts driver.Options) (string, error)

GetRev calls db.GetRevFunc

type RevsDiffer

RevsDiffer mocks a driver.DB and driver.RevsDiffer.

type RevsDiffer struct {
    *BulkDocer
    RevsDiffFunc func(context.Context, interface{}) (driver.Rows, error)
}

func (*RevsDiffer) RevsDiff

func (db *RevsDiffer) RevsDiff(ctx context.Context, revMap interface{}) (driver.Rows, error)

RevsDiff calls db.RevsDiffFunc

type Rows

Rows mocks driver.Rows

type Rows struct {
    // ID identifies a specific Rows instance.
    ID            string
    CloseFunc     func() error
    NextFunc      func(*driver.Row) error
    OffsetFunc    func() int64
    TotalRowsFunc func() int64
    UpdateSeqFunc func() string
}

func (*Rows) Close

func (r *Rows) Close() error

Close calls r.CloseFunc

func (*Rows) Next

func (r *Rows) Next(row *driver.Row) error

Next calls r.NextFunc

func (*Rows) Offset

func (r *Rows) Offset() int64

Offset calls r.OffsetFunc

func (*Rows) TotalRows

func (r *Rows) TotalRows() int64

TotalRows calls r.TotalRowsFunc

func (*Rows) UpdateSeq

func (r *Rows) UpdateSeq() string

UpdateSeq calls r.UpdateSeqFunc

type RowsWarner

RowsWarner wraps driver.RowsWarner

type RowsWarner struct {
    *Rows
    WarningFunc func() string
}

func (*RowsWarner) Warning

func (r *RowsWarner) Warning() string

Warning calls r.WarningFunc

type SecurityDB

SecurityDB is a stub for a driver.SecurityDB.

type SecurityDB struct {
    DB
    SecurityFunc    func(ctx context.Context) (*driver.Security, error)
    SetSecurityFunc func(ctx context.Context, security *driver.Security) error
}

func (*SecurityDB) Security

func (db *SecurityDB) Security(ctx context.Context) (*driver.Security, error)

Security calls db.SecurityFunc

func (*SecurityDB) SetSecurity

func (db *SecurityDB) SetSecurity(ctx context.Context, security *driver.Security) error

SetSecurity calls db.SetSecurityFunc

type Sessioner

Sessioner mocks driver.Client and driver.Sessioner

type Sessioner struct {
    *Client
    SessionFunc func(context.Context) (*driver.Session, error)
}

func (*Sessioner) Session

func (s *Sessioner) Session(ctx context.Context) (*driver.Session, error)

Session calls s.SessionFunc