-
Notifications
You must be signed in to change notification settings - Fork 1
/
expect_test.go
174 lines (131 loc) · 3.49 KB
/
expect_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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
package gintestutil
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
)
const expectTimeout = 5 * time.Second
func TestExpectCalled_SingleCallReturnsSuccess(t *testing.T) {
t.Parallel()
// Arrange
testObject := new(testing.T)
ginContext := gin.Default()
// Act
expectation := ExpectCalled(testObject, ginContext, "/ping")
// Assert
ginContext.GET("/ping", func(ctx *gin.Context) {
ctx.Status(http.StatusOK)
})
ts := httptest.NewServer(ginContext)
_, err := http.Get(fmt.Sprintf("%s%s", ts.URL, "/ping"))
assert.NoError(t, err)
completionChannel := make(chan struct{})
go func() {
expectation.Wait()
completionChannel <- struct{}{}
}()
select {
case <-completionChannel:
assert.False(t, testObject.Failed())
case <-time.After(expectTimeout):
t.Error("did not complete")
}
}
func TestExpectCalled_ZeroCallsFails(t *testing.T) {
t.Parallel()
// Arrange
testObject := new(testing.T)
ginContext := gin.Default()
// Act
expectation := ExpectCalled(testObject, ginContext, "/ping")
// Assert
ginContext.GET("/ping", func(ctx *gin.Context) {
ctx.Status(http.StatusOK)
})
ts := httptest.NewServer(ginContext)
_, err := http.Get(fmt.Sprintf("%s%s", ts.URL, "/pong"))
// Assert
assert.NoError(t, err)
completionChannel := make(chan struct{})
go func() {
expectation.Wait()
completionChannel <- struct{}{}
}()
select {
case <-completionChannel:
t.Error("should not have completed")
case <-time.After(expectTimeout):
// Success!
}
}
func TestExpectCalled_NilGinContextReturnsError(t *testing.T) {
t.Parallel()
// Arrange
testObject := new(testing.T)
var ginContext *gin.Engine
// Act
expectation := ExpectCalled(testObject, ginContext, "")
// Assert
assert.True(t, testObject.Failed())
assert.Nil(t, expectation)
}
func TestExpectCalled_CalledTooOftenReturnsError(t *testing.T) {
t.Parallel()
// Arrange
testObject := new(testing.T)
ginContext := gin.Default()
// Act
expectation := ExpectCalled(testObject, ginContext, "/ping")
// Assert
ginContext.GET("/ping", func(ctx *gin.Context) {
ctx.Status(http.StatusOK)
})
ts := httptest.NewServer(ginContext)
_, _ = http.Get(fmt.Sprintf("%s%s", ts.URL, "/ping"))
_, _ = http.Get(fmt.Sprintf("%s%s", ts.URL, "/ping"))
completionChannel := make(chan struct{})
go func() {
expectation.Wait()
completionChannel <- struct{}{}
}()
select {
case <-completionChannel:
assert.True(t, testObject.Failed())
case <-time.After(expectTimeout):
t.Error("did not complete")
}
}
func TestExpectCalled_TwoTimesWithTwoEndpointsSucceeds(t *testing.T) {
t.Parallel()
// Arrange
testObject := new(testing.T)
ginContext := gin.Default()
// Act
expectation := ExpectCalled(testObject, ginContext, "/ping", TimesCalled(2))
expectation = ExpectCalled(testObject, ginContext, "/pong", Expectation(expectation))
// Assert
for _, endpoint := range []string{"/ping", "/pong"} {
ginContext.GET(endpoint, func(context *gin.Context) {
context.Status(http.StatusOK)
})
}
ts := httptest.NewServer(ginContext)
_, _ = http.Get(fmt.Sprintf("%s%s", ts.URL, "/ping"))
_, _ = http.Get(fmt.Sprintf("%s%s", ts.URL, "/ping"))
_, _ = http.Get(fmt.Sprintf("%s%s", ts.URL, "/pong"))
completionChannel := make(chan struct{})
go func() {
expectation.Wait()
completionChannel <- struct{}{}
}()
select {
case <-completionChannel:
assert.False(t, testObject.Failed())
case <-time.After(expectTimeout):
t.Error("did not complete")
}
}