-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreceiver_mock_test.go
111 lines (90 loc) · 2.47 KB
/
receiver_mock_test.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package mediator
import (
"context"
"errors"
"reflect"
"testing"
)
func TestMockReceiver(t *testing.T) {
if len(receivers) > 0 {
t.Fatal("invalid test: one or more receivers are already registered")
}
dataSent := "sent"
dataNotSent := "not sent"
mock, reg := MockReceiver[string]()
defer reg.Remove()
t.Run("registers the receiver", func(t *testing.T) {
wanted := 1
got := len(receivers)
if wanted != got {
t.Errorf("wanted %d, got %d", wanted, got)
}
})
// ACT
err := Send(context.Background(), dataSent)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
t.Run("captures data received", func(t *testing.T) {
wanted := 1
got := len(mock.DataReceived())
if wanted != got {
t.Errorf("wanted %d, got %d", wanted, got)
}
})
t.Run("captures a copy of received data", func(t *testing.T) {
received := mock.DataReceived()
if reflect.ValueOf(received).UnsafePointer() == reflect.ValueOf(mock.received).UnsafePointer() {
t.Error("got same slice")
}
if !reflect.DeepEqual(received, mock.received) {
t.Errorf("wanted %v, got %v", mock.received, received)
}
})
t.Run("captures that data was received", func(t *testing.T) {
wanted := true
got := mock.Received(dataSent)
if wanted != got {
t.Errorf("wanted %v, got %v", wanted, got)
}
})
t.Run("captures that data was not received", func(t *testing.T) {
wanted := false
got := mock.Received(dataNotSent)
if wanted != got {
t.Errorf("wanted %v, got %v", wanted, got)
}
})
t.Run("captures that a receiver was called", func(t *testing.T) {
wantedWc := true
wantedWnc := false
gotWc := mock.WasCalled()
gotWnc := mock.WasNotCalled()
if wantedWc != gotWc || wantedWnc != gotWnc {
t.Errorf("called / not called: wanted %v / %v, got %v / %v", wantedWc, wantedWnc, gotWc, gotWnc)
}
})
t.Run("captures that a receiver was not called", func(t *testing.T) {
mock, reg := MockReceiver[int]()
defer reg.Remove()
wantedWc := false
wantedWnc := true
gotWc := mock.WasCalled()
gotWnc := mock.WasNotCalled()
if wantedWc != gotWc || wantedWnc != gotWnc {
t.Errorf("called / not called: wanted %v / %v, got %v / %v", wantedWc, wantedWnc, gotWc, gotWnc)
}
})
}
func TestMockReceiverReturningError(t *testing.T) {
// ARRANGE
wanted := errors.New("error")
_, reg := MockReceiverReturningError[string](wanted)
defer reg.Remove()
// ACT
got := Send(context.Background(), "test")
// ASSERT
if wanted != got {
t.Errorf("wanted %v, got %v", wanted, got)
}
}