Skip to content

Commit

Permalink
add mock connection and message
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Mason <mimason@equinix.com>
  • Loading branch information
mikemrm committed Jul 28, 2023
1 parent 33104ae commit 5ec2e6e
Show file tree
Hide file tree
Showing 3 changed files with 186 additions and 0 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ require (
github.com/opencontainers/runc v1.1.7 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
Expand Down
85 changes: 85 additions & 0 deletions testing/eventtools/mock_connection.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
package eventtools

import (
"context"

"github.com/stretchr/testify/mock"

Check failure on line 6 in testing/eventtools/mock_connection.go

View workflow job for this annotation

GitHub Actions / lint

File is not `goimports`-ed with -local go.infratographer.com/x (goimports)
"go.infratographer.com/x/events"
)

var _ events.Connection = (*MockConnection)(nil)

// MockConnection implements events.Connection
type MockConnection struct {
mock.Mock
}

// Close implements events.Connection
func (c *MockConnection) Close(ctx context.Context) error {

Check warning on line 18 in testing/eventtools/mock_connection.go

View workflow job for this annotation

GitHub Actions / lint

unused-parameter: parameter 'ctx' seems to be unused, consider removing or renaming it as _ (revive)
args := c.Called()

return args.Error(0)
}

// Publish implements events.Connection
func (c *MockConnection) Publish(ctx context.Context, topic string, message any) (events.Message[any], error) {

Check warning on line 25 in testing/eventtools/mock_connection.go

View workflow job for this annotation

GitHub Actions / lint

unused-parameter: parameter 'ctx' seems to be unused, consider removing or renaming it as _ (revive)
args := c.Called(topic, message)

return args.Get(0).(events.Message[any]), args.Error(1)
}

// PublishAuthRelationshipRequest implements events.Connection
func (c *MockConnection) PublishAuthRelationshipRequest(ctx context.Context, topic string, message events.AuthRelationshipRequest) (events.Message[events.AuthRelationshipResponse], error) {

Check warning on line 32 in testing/eventtools/mock_connection.go

View workflow job for this annotation

GitHub Actions / lint

unused-parameter: parameter 'ctx' seems to be unused, consider removing or renaming it as _ (revive)
args := c.Called(topic, message)

return args.Get(0).(events.Message[events.AuthRelationshipResponse]), args.Error(1)
}

// PublishChange implements events.Connection
func (c *MockConnection) PublishChange(ctx context.Context, topic string, message events.ChangeMessage) (events.Message[events.ChangeMessage], error) {
args := c.Called(topic, message)

return args.Get(0).(events.Message[events.ChangeMessage]), args.Error(1)
}

// PublishEvent implements events.Connection
func (c *MockConnection) PublishEvent(ctx context.Context, topic string, message events.EventMessage) (events.Message[events.EventMessage], error) {
args := c.Called(topic, message)

return args.Get(0).(events.Message[events.EventMessage]), args.Error(1)
}

// Source implements events.Connection
func (c *MockConnection) Source() any {
args := c.Called()

return args.Error(0)
}

// Subscribe implements events.Connection
func (c *MockConnection) Subscribe(ctx context.Context, topic string) (<-chan events.Message[any], error) {
args := c.Called(topic)

return args.Get(0).(<-chan events.Message[any]), args.Error(1)
}

// SubscribeAuthRelationshipRequests implements events.Connection
func (c *MockConnection) SubscribeAuthRelationshipRequests(ctx context.Context, topic string) (<-chan events.Message[events.AuthRelationshipRequest], error) {
args := c.Called(topic)

return args.Get(0).(<-chan events.Message[events.AuthRelationshipRequest]), args.Error(1)
}

// SubscribeChanges implements events.Connection
func (c *MockConnection) SubscribeChanges(ctx context.Context, topic string) (<-chan events.Message[events.ChangeMessage], error) {
args := c.Called(topic)

return args.Get(0).(<-chan events.Message[events.ChangeMessage]), args.Error(1)
}

// SubscribeEvents implements events.Connection
func (c *MockConnection) SubscribeEvents(ctx context.Context, topic string) (<-chan events.Message[events.EventMessage], error) {
args := c.Called(topic)

return args.Get(0).(<-chan events.Message[events.EventMessage]), args.Error(1)
}
100 changes: 100 additions & 0 deletions testing/eventtools/mock_message.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
package eventtools

import (
"context"
"time"

"github.com/stretchr/testify/mock"

Check failure on line 7 in testing/eventtools/mock_message.go

View workflow job for this annotation

GitHub Actions / lint

File is not `goimports`-ed with -local go.infratographer.com/x (goimports)
"go.infratographer.com/x/events"
)

var _ events.Message[any] = (*MockMessage[interface{}])(nil)

// MockMessage implements events.Message.
type MockMessage[T any] struct {
mock.Mock
}

// Connection implements events.Message.
func (m *MockMessage[T]) Connection() events.Connection {
args := m.Called()

return args.Get(0).(events.Connection)
}

// ID implements events.Message.
func (m *MockMessage[T]) ID() string {
args := m.Called()

return args.String(0)
}

// Topic implements events.Message.
func (m *MockMessage[T]) Topic() string {
args := m.Called()

return args.String(0)
}

// Message implements events.Message.
func (m *MockMessage[T]) Message() T {
args := m.Called()

return args.Get(0).(T)
}

// Ack implements events.Message.
func (m *MockMessage[T]) Ack() error {
args := m.Called()

return args.Error(0)
}

// Nak implements events.Message.
func (m *MockMessage[T]) Nak(delay time.Duration) error {
args := m.Called(delay)

return args.Error(0)
}

// Term implements events.Message.
func (m *MockMessage[T]) Term() error {
args := m.Called()

return args.Error(0)
}

// Timestamp implements events.Message.
func (m *MockMessage[T]) Timestamp() time.Time {
args := m.Called()

return args.Get(0).(time.Time)
}

// Deliveries implements events.Message.
func (m *MockMessage[T]) Deliveries() uint64 {
args := m.Called()

return args.Get(0).(uint64)
}

// Error implements events.Message.
func (m *MockMessage[T]) Error() error {
args := m.Called()

return args.Error(0)
}

// ReplyAuthRelationshipRequest implements events.Message.
func (m *MockMessage[T]) ReplyAuthRelationshipRequest(ctx context.Context, message events.AuthRelationshipResponse) (events.Message[events.AuthRelationshipResponse], error) {
args := m.Called(message)

return args.Get(0).(events.Message[events.AuthRelationshipResponse]), args.Error(1)
}

// Source implements events.Message.
func (m *MockMessage[T]) Source() any {
args := m.Called()

return args.Error(0)
}

0 comments on commit 5ec2e6e

Please sign in to comment.