Documentation
¶
Index ¶
- type MongoDBMock
- func (mock *MongoDBMock) CheckTopicExists(id string) error
- func (mock *MongoDBMock) CheckTopicExistsCalls() []struct{ ... }
- func (mock *MongoDBMock) Checker(in1 context.Context, in2 *healthcheck.CheckState) error
- func (mock *MongoDBMock) CheckerCalls() []struct{ ... }
- func (mock *MongoDBMock) Close(in1 context.Context) error
- func (mock *MongoDBMock) CloseCalls() []struct{ ... }
- func (mock *MongoDBMock) GetContent(id string) (*models.ContentResponse, error)
- func (mock *MongoDBMock) GetContentCalls() []struct{ ... }
- func (mock *MongoDBMock) GetTopic(id string) (*models.TopicResponse, error)
- func (mock *MongoDBMock) GetTopicCalls() []struct{ ... }
- type StorerMock
- func (mock *StorerMock) CheckTopicExists(id string) error
- func (mock *StorerMock) CheckTopicExistsCalls() []struct{ ... }
- func (mock *StorerMock) GetContent(id string) (*models.ContentResponse, error)
- func (mock *StorerMock) GetContentCalls() []struct{ ... }
- func (mock *StorerMock) GetTopic(id string) (*models.TopicResponse, error)
- func (mock *StorerMock) GetTopicCalls() []struct{ ... }
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(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(id string) (*models.ContentResponse, error)
// GetTopicFunc mocks the GetTopic method.
GetTopicFunc func(id string) (*models.TopicResponse, 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(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(id string) (*models.ContentResponse, error) {
panic("mock out the GetContent method")
},
GetTopicFunc: func(id string) (*models.TopicResponse, error) {
panic("mock out the GetTopic 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(id string) error
CheckTopicExists calls CheckTopicExistsFunc.
func (*MongoDBMock) CheckTopicExistsCalls ¶ added in v0.4.0
func (mock *MongoDBMock) CheckTopicExistsCalls() []struct { 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(id string) (*models.ContentResponse, error)
GetContent calls GetContentFunc.
func (*MongoDBMock) GetContentCalls ¶ added in v0.4.0
func (mock *MongoDBMock) GetContentCalls() []struct { ID string }
GetContentCalls gets all the calls that were made to GetContent. Check the length with:
len(mockedMongoDB.GetContentCalls())
func (*MongoDBMock) GetTopic ¶
func (mock *MongoDBMock) GetTopic(id string) (*models.TopicResponse, error)
GetTopic calls GetTopicFunc.
func (*MongoDBMock) GetTopicCalls ¶
func (mock *MongoDBMock) GetTopicCalls() []struct { ID string }
GetTopicCalls gets all the calls that were made to GetTopic. Check the length with:
len(mockedMongoDB.GetTopicCalls())
type StorerMock ¶
type StorerMock struct {
// CheckTopicExistsFunc mocks the CheckTopicExists method.
CheckTopicExistsFunc func(id string) error
// GetContentFunc mocks the GetContent method.
GetContentFunc func(id string) (*models.ContentResponse, error)
// GetTopicFunc mocks the GetTopic method.
GetTopicFunc func(id string) (*models.TopicResponse, 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(id string) error {
panic("mock out the CheckTopicExists method")
},
GetContentFunc: func(id string) (*models.ContentResponse, error) {
panic("mock out the GetContent method")
},
GetTopicFunc: func(id string) (*models.TopicResponse, error) {
panic("mock out the GetTopic 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(id string) error
CheckTopicExists calls CheckTopicExistsFunc.
func (*StorerMock) CheckTopicExistsCalls ¶ added in v0.4.0
func (mock *StorerMock) CheckTopicExistsCalls() []struct { 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(id string) (*models.ContentResponse, error)
GetContent calls GetContentFunc.
func (*StorerMock) GetContentCalls ¶ added in v0.4.0
func (mock *StorerMock) GetContentCalls() []struct { ID string }
GetContentCalls gets all the calls that were made to GetContent. Check the length with:
len(mockedStorer.GetContentCalls())
func (*StorerMock) GetTopic ¶
func (mock *StorerMock) GetTopic(id string) (*models.TopicResponse, error)
GetTopic calls GetTopicFunc.
func (*StorerMock) GetTopicCalls ¶
func (mock *StorerMock) GetTopicCalls() []struct { ID string }
GetTopicCalls gets all the calls that were made to GetTopic. Check the length with:
len(mockedStorer.GetTopicCalls())