storetest

package
v0.14.0 Latest Latest
Warning

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

Go to latest
Published: Oct 28, 2022 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MongoDBMock

type MongoDBMock struct {
	// CheckTopicExistsFunc mocks the CheckTopicExists method.
	CheckTopicExistsFunc func(ctx context.Context, id string) error

	// CheckerFunc mocks the Checker method.
	CheckerFunc func(in1 context.Context, in2 *healthcheck.CheckState) error

	// CloseFunc mocks the Close method.
	CloseFunc func(in1 context.Context) error

	// GetContentFunc mocks the GetContent method.
	GetContentFunc func(ctx context.Context, id string, queryTypeFlags int) (*models.ContentResponse, error)

	// GetTopicFunc mocks the GetTopic method.
	GetTopicFunc func(ctx context.Context, id string) (*models.TopicResponse, error)

	// UpdateReleaseDateFunc mocks the UpdateReleaseDate method.
	UpdateReleaseDateFunc func(ctx context.Context, id string, releaseDate time.Time) error
	// contains filtered or unexported fields
}

MongoDBMock is a mock implementation of store.MongoDB.

    func TestSomethingThatUsesMongoDB(t *testing.T) {

        // make and configure a mocked store.MongoDB
        mockedMongoDB := &MongoDBMock{
            CheckTopicExistsFunc: func(ctx context.Context, id string) error {
	               panic("mock out the CheckTopicExists method")
            },
            CheckerFunc: func(in1 context.Context, in2 *healthcheck.CheckState) error {
	               panic("mock out the Checker method")
            },
            CloseFunc: func(in1 context.Context) error {
	               panic("mock out the Close method")
            },
            GetContentFunc: func(ctx context.Context, id string, queryTypeFlags int) (*models.ContentResponse, error) {
	               panic("mock out the GetContent method")
            },
            GetTopicFunc: func(ctx context.Context, id string) (*models.TopicResponse, error) {
	               panic("mock out the GetTopic method")
            },
            UpdateReleaseDateFunc: func(ctx context.Context, id string, releaseDate time.Time) error {
	               panic("mock out the UpdateReleaseDate method")
            },
        }

        // use mockedMongoDB in code that requires store.MongoDB
        // and then make assertions.

    }

func (*MongoDBMock) CheckTopicExists added in v0.4.0

func (mock *MongoDBMock) CheckTopicExists(ctx context.Context, id string) error

CheckTopicExists calls CheckTopicExistsFunc.

func (*MongoDBMock) CheckTopicExistsCalls added in v0.4.0

func (mock *MongoDBMock) CheckTopicExistsCalls() []struct {
	Ctx context.Context
	ID  string
}

CheckTopicExistsCalls gets all the calls that were made to CheckTopicExists. Check the length with:

len(mockedMongoDB.CheckTopicExistsCalls())

func (*MongoDBMock) Checker

func (mock *MongoDBMock) Checker(in1 context.Context, in2 *healthcheck.CheckState) error

Checker calls CheckerFunc.

func (*MongoDBMock) CheckerCalls

func (mock *MongoDBMock) CheckerCalls() []struct {
	In1 context.Context
	In2 *healthcheck.CheckState
}

CheckerCalls gets all the calls that were made to Checker. Check the length with:

len(mockedMongoDB.CheckerCalls())

func (*MongoDBMock) Close

func (mock *MongoDBMock) Close(in1 context.Context) error

Close calls CloseFunc.

func (*MongoDBMock) CloseCalls

func (mock *MongoDBMock) CloseCalls() []struct {
	In1 context.Context
}

CloseCalls gets all the calls that were made to Close. Check the length with:

len(mockedMongoDB.CloseCalls())

func (*MongoDBMock) GetContent added in v0.4.0

func (mock *MongoDBMock) GetContent(ctx context.Context, id string, queryTypeFlags int) (*models.ContentResponse, error)

GetContent calls GetContentFunc.

func (*MongoDBMock) GetContentCalls added in v0.4.0

func (mock *MongoDBMock) GetContentCalls() []struct {
	Ctx            context.Context
	ID             string
	QueryTypeFlags int
}

GetContentCalls gets all the calls that were made to GetContent. Check the length with:

len(mockedMongoDB.GetContentCalls())

func (*MongoDBMock) GetTopic

func (mock *MongoDBMock) GetTopic(ctx context.Context, id string) (*models.TopicResponse, error)

GetTopic calls GetTopicFunc.

func (*MongoDBMock) GetTopicCalls

func (mock *MongoDBMock) GetTopicCalls() []struct {
	Ctx context.Context
	ID  string
}

GetTopicCalls gets all the calls that were made to GetTopic. Check the length with:

len(mockedMongoDB.GetTopicCalls())

func (*MongoDBMock) UpdateReleaseDate added in v0.14.0

func (mock *MongoDBMock) UpdateReleaseDate(ctx context.Context, id string, releaseDate time.Time) error

UpdateReleaseDate calls UpdateReleaseDateFunc.

func (*MongoDBMock) UpdateReleaseDateCalls added in v0.14.0

func (mock *MongoDBMock) UpdateReleaseDateCalls() []struct {
	Ctx         context.Context
	ID          string
	ReleaseDate time.Time
}

UpdateReleaseDateCalls gets all the calls that were made to UpdateReleaseDate. Check the length with:

len(mockedMongoDB.UpdateReleaseDateCalls())

type StorerMock

type StorerMock struct {
	// CheckTopicExistsFunc mocks the CheckTopicExists method.
	CheckTopicExistsFunc func(ctx context.Context, id string) error

	// GetContentFunc mocks the GetContent method.
	GetContentFunc func(ctx context.Context, id string, queryTypeFlags int) (*models.ContentResponse, error)

	// GetTopicFunc mocks the GetTopic method.
	GetTopicFunc func(ctx context.Context, id string) (*models.TopicResponse, error)

	// UpdateReleaseDateFunc mocks the UpdateReleaseDate method.
	UpdateReleaseDateFunc func(ctx context.Context, id string, releaseDate time.Time) error
	// contains filtered or unexported fields
}

StorerMock is a mock implementation of store.Storer.

    func TestSomethingThatUsesStorer(t *testing.T) {

        // make and configure a mocked store.Storer
        mockedStorer := &StorerMock{
            CheckTopicExistsFunc: func(ctx context.Context, id string) error {
	               panic("mock out the CheckTopicExists method")
            },
            GetContentFunc: func(ctx context.Context, id string, queryTypeFlags int) (*models.ContentResponse, error) {
	               panic("mock out the GetContent method")
            },
            GetTopicFunc: func(ctx context.Context, id string) (*models.TopicResponse, error) {
	               panic("mock out the GetTopic method")
            },
            UpdateReleaseDateFunc: func(ctx context.Context, id string, releaseDate time.Time) error {
	               panic("mock out the UpdateReleaseDate method")
            },
        }

        // use mockedStorer in code that requires store.Storer
        // and then make assertions.

    }

func (*StorerMock) CheckTopicExists added in v0.4.0

func (mock *StorerMock) CheckTopicExists(ctx context.Context, id string) error

CheckTopicExists calls CheckTopicExistsFunc.

func (*StorerMock) CheckTopicExistsCalls added in v0.4.0

func (mock *StorerMock) CheckTopicExistsCalls() []struct {
	Ctx context.Context
	ID  string
}

CheckTopicExistsCalls gets all the calls that were made to CheckTopicExists. Check the length with:

len(mockedStorer.CheckTopicExistsCalls())

func (*StorerMock) GetContent added in v0.4.0

func (mock *StorerMock) GetContent(ctx context.Context, id string, queryTypeFlags int) (*models.ContentResponse, error)

GetContent calls GetContentFunc.

func (*StorerMock) GetContentCalls added in v0.4.0

func (mock *StorerMock) GetContentCalls() []struct {
	Ctx            context.Context
	ID             string
	QueryTypeFlags int
}

GetContentCalls gets all the calls that were made to GetContent. Check the length with:

len(mockedStorer.GetContentCalls())

func (*StorerMock) GetTopic

func (mock *StorerMock) GetTopic(ctx context.Context, id string) (*models.TopicResponse, error)

GetTopic calls GetTopicFunc.

func (*StorerMock) GetTopicCalls

func (mock *StorerMock) GetTopicCalls() []struct {
	Ctx context.Context
	ID  string
}

GetTopicCalls gets all the calls that were made to GetTopic. Check the length with:

len(mockedStorer.GetTopicCalls())

func (*StorerMock) UpdateReleaseDate added in v0.14.0

func (mock *StorerMock) UpdateReleaseDate(ctx context.Context, id string, releaseDate time.Time) error

UpdateReleaseDate calls UpdateReleaseDateFunc.

func (*StorerMock) UpdateReleaseDateCalls added in v0.14.0

func (mock *StorerMock) UpdateReleaseDateCalls() []struct {
	Ctx         context.Context
	ID          string
	ReleaseDate time.Time
}

UpdateReleaseDateCalls gets all the calls that were made to UpdateReleaseDate. Check the length with:

len(mockedStorer.UpdateReleaseDateCalls())

Jump to

Keyboard shortcuts

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