-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
cloudeventsfakeclient.go
78 lines (63 loc) · 2.4 KB
/
cloudeventsfakeclient.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
Copyright 2019 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cloudevent
import (
"context"
"fmt"
cloudevents "github.com/cloudevents/sdk-go/v2"
"github.com/cloudevents/sdk-go/v2/protocol"
)
const bufferSize = 100
// FakeClientBehaviour defines how the client will behave
type FakeClientBehaviour struct {
SendSuccessfully bool
}
// FakeClient is a fake CloudEvent client for unit testing
// Holding pointer to the behaviour allows to change the behaviour of a client
type FakeClient struct {
behaviour *FakeClientBehaviour
// Modelled after k8s.io/client-go fake recorder
Events chan string
}
// newFakeClient is a FakeClient factory, it returns a client for the target
func newFakeClient(behaviour *FakeClientBehaviour) cloudevents.Client {
return FakeClient{
behaviour: behaviour,
Events: make(chan string, bufferSize),
}
}
var _ cloudevents.Client = (*FakeClient)(nil)
// Send fakes the Send method from cloudevents.Client
func (c FakeClient) Send(ctx context.Context, event cloudevents.Event) protocol.Result {
if c.behaviour.SendSuccessfully {
c.Events <- fmt.Sprintf("%s", event.String())
return nil
}
return fmt.Errorf("Had to fail. Event ID: %s", event.ID())
}
// Request fakes the Request method from cloudevents.Client
func (c FakeClient) Request(ctx context.Context, event cloudevents.Event) (*cloudevents.Event, protocol.Result) {
if c.behaviour.SendSuccessfully {
c.Events <- fmt.Sprintf("%v", event.String())
return &event, nil
}
return nil, fmt.Errorf("Had to fail. Event ID: %s", event.ID())
}
// StartReceiver fakes StartReceiver method from cloudevents.Client
func (c FakeClient) StartReceiver(ctx context.Context, fn interface{}) error {
return nil
}
// WithClient adds to the context a fake client with the desired behaviour
func WithClient(ctx context.Context, behaviour *FakeClientBehaviour) context.Context {
return context.WithValue(ctx, ceKey{}, newFakeClient(behaviour))
}