-
Notifications
You must be signed in to change notification settings - Fork 2
/
client_assertions_internal_test.go
192 lines (172 loc) · 4.13 KB
/
client_assertions_internal_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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package grpcsteps
import (
"errors"
"testing"
"github.com/stretchr/testify/assert"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
func TestAssertServerResponsePayload(t *testing.T) {
t.Parallel()
const expectedPayload = `{"name": "john"}`
testCases := []struct {
scenario string
expected string
request clientRequestDoer
expectedError string
}{
{
scenario: "has error",
request: func() ([]byte, error) {
return nil, errors.New("request error")
},
expectedError: `an error occurred while send grpc request: request error`,
},
{
scenario: "different payload",
expected: expectedPayload,
request: func() ([]byte, error) {
return []byte(`{"name": "foobar"}`), nil
},
expectedError: `not equal:
{
- "name": "john"
+ "name": "foobar"
}
`,
},
{
scenario: "same payload",
expected: expectedPayload,
request: func() ([]byte, error) {
return []byte(`{"name": "john"}`), nil
},
},
{
scenario: "ignore diff",
expected: `{"name": "<ignore-diff>"}`,
request: func() ([]byte, error) {
return []byte(`{"name": "john"}`), nil
},
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.scenario, func(t *testing.T) {
t.Parallel()
err := assertServerResponsePayload(tc.request, tc.expected)
if tc.expectedError == "" {
assert.NoError(t, err)
} else {
assert.EqualError(t, err, tc.expectedError)
}
})
}
}
func TestAssertServerResponseErrorCode(t *testing.T) {
t.Parallel()
testCases := []struct {
scenario string
expected codes.Code
request clientRequestDoer
expectedError string
}{
{
scenario: "no error and expect OK",
expected: codes.OK,
request: func() ([]byte, error) {
return nil, nil
},
},
{
scenario: "no error and expect failure",
expected: codes.Internal,
request: func() ([]byte, error) {
return nil, nil
},
expectedError: `got no error, want "Internal"`,
},
{
scenario: "got error and expect different",
expected: codes.FailedPrecondition,
request: func() ([]byte, error) {
return nil, status.Error(codes.Internal, "internal server error")
},
expectedError: `got rpc error: code = Internal desc = internal server error, want "FailedPrecondition"`,
},
{
scenario: "got expected error",
expected: codes.Internal,
request: func() ([]byte, error) {
return nil, status.Error(codes.Internal, "internal server error")
},
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.scenario, func(t *testing.T) {
t.Parallel()
err := assertServerResponseErrorCode(tc.request, tc.expected)
if tc.expectedError == "" {
assert.NoError(t, err)
} else {
assert.EqualError(t, err, tc.expectedError)
}
})
}
}
func TestAssertServerResponseErrorMessage(t *testing.T) {
t.Parallel()
testCases := []struct {
scenario string
expected string
request clientRequestDoer
expectedError string
}{
{
scenario: "no error and expect OK",
request: func() ([]byte, error) {
return nil, nil
},
},
{
scenario: "no error and expect failure",
expected: "Internal",
request: func() ([]byte, error) {
return nil, nil
},
expectedError: `got no error, want "Internal"`,
},
{
scenario: "got error and expect different",
expected: "server went away",
request: func() ([]byte, error) {
return nil, status.Error(codes.Internal, "internal server error")
},
expectedError: `unexpected error message, got "internal server error", want "server went away"`,
},
{
scenario: "got expected error",
expected: "internal server error",
request: func() ([]byte, error) {
return nil, status.Error(codes.Internal, "internal server error")
},
},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.scenario, func(t *testing.T) {
t.Parallel()
err := assertServerResponseErrorMessage(tc.request, tc.expected)
if tc.expectedError == "" {
assert.NoError(t, err)
} else {
assert.EqualError(t, err, tc.expectedError)
}
})
}
}
type clientRequestDoer func() ([]byte, error)
func (d clientRequestDoer) Do() ([]byte, error) {
return d()
}