-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparams_test.go
230 lines (179 loc) · 5.06 KB
/
params_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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
package otto
import (
"fmt"
"net/http"
"net/http/httptest"
"net/url"
"testing"
"github.com/gorilla/mux"
"github.com/stretchr/testify/assert"
)
func Test_Params_String(t *testing.T) {
r := mux.NewRouter()
r.HandleFunc("/{id}", func(_ http.ResponseWriter, req *http.Request) {
p := Params(mux.Vars(req))
assert.Equal(t, "1", p.String("id"))
})
ts := httptest.NewServer(r)
defer ts.Close()
req, err := http.NewRequest("GET", fmt.Sprintf("%s/1", ts.URL), nil)
assert.NoError(t, err, "should not throw any error")
_, err = http.DefaultClient.Do(req)
assert.NoError(t, err, "should not throw any error")
}
func Test_Params_Int(t *testing.T) {
r := mux.NewRouter()
r.HandleFunc("/{id}", func(_ http.ResponseWriter, req *http.Request) {
p := Params(mux.Vars(req))
id, err := p.Int("id")
assert.NoError(t, err, "should not cast error")
assert.Equal(t, 1, id)
})
ts := httptest.NewServer(r)
defer ts.Close()
req, err := http.NewRequest("GET", fmt.Sprintf("%s/1", ts.URL), nil)
assert.NoError(t, err, "should not throw any error")
_, err = http.DefaultClient.Do(req)
assert.NoError(t, err, "should not throw any error")
}
func Test_Params_Int_Not_Int(t *testing.T) {
r := mux.NewRouter()
r.HandleFunc("/{id}", func(_ http.ResponseWriter, req *http.Request) {
p := Params(mux.Vars(req))
_, err := p.Int("id")
assert.Error(t, err, "should cast error")
assert.Contains(t, err.Error(), "failed to parse 'a' to int")
})
ts := httptest.NewServer(r)
defer ts.Close()
req, err := http.NewRequest("GET", fmt.Sprintf("%s/a", ts.URL), nil)
assert.NoError(t, err, "should not throw any error")
_, err = http.DefaultClient.Do(req)
assert.NoError(t, err, "should not throw any error")
}
func Test_Params_Bool(t *testing.T) {
r := mux.NewRouter()
r.HandleFunc("/{id}", func(_ http.ResponseWriter, req *http.Request) {
p := Params(mux.Vars(req))
b, err := p.Bool("id")
assert.NoError(t, err, "should not cast error")
assert.Equal(t, true, b)
})
ts := httptest.NewServer(r)
defer ts.Close()
req, err := http.NewRequest("GET", fmt.Sprintf("%s/1", ts.URL), nil)
assert.NoError(t, err, "should not throw any error")
_, err = http.DefaultClient.Do(req)
assert.NoError(t, err, "should not throw any error")
}
func Test_Params_Bool_Not_Bool(t *testing.T) {
r := mux.NewRouter()
r.HandleFunc("/{id}", func(_ http.ResponseWriter, req *http.Request) {
p := Params(mux.Vars(req))
_, err := p.Bool("id")
assert.Error(t, err, "should cast error")
assert.Contains(t, err.Error(), "failed to parse 'a' to bool")
})
ts := httptest.NewServer(r)
defer ts.Close()
req, err := http.NewRequest("GET", fmt.Sprintf("%s/a", ts.URL), nil)
assert.NoError(t, err, "should not throw any error")
_, err = http.DefaultClient.Do(req)
assert.NoError(t, err, "should not throw any error")
}
func Test_ValueParams_String(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"123"},
},
}
assert.Equal(t, "123", p.String("id"))
}
func Test_ValueParams_Strings(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"123", "321"},
},
}
assert.Equal(t, []string{"123", "321"}, p.Strings("id"))
}
func Test_ValueParams_Int(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"123"},
},
}
id, err := p.Int("id")
assert.NoError(t, err, "should not cast error")
assert.Equal(t, 123, id)
}
func Test_ValueParams_Int_Not_Int(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"a"},
},
}
_, err := p.Int("id")
assert.Error(t, err, "should cast error")
assert.Contains(t, err.Error(), "failed to parse 'a' to int")
}
func Test_ValueParams_Ints(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"123", "321"},
},
}
IDs, err := p.Ints("id")
assert.NoError(t, err, "should not cast error")
assert.Equal(t, []int{123, 321}, IDs)
}
func Test_ValueParams_Ints_Not_Int(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"a", "123"},
},
}
_, err := p.Ints("id")
assert.Error(t, err, "should cast error")
assert.Contains(t, err.Error(), "failed to parse 'a' to int")
}
func Test_ValueParams_Bool(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"true"},
},
}
id, err := p.Bool("id")
assert.NoError(t, err, "should not cast error")
assert.Equal(t, true, id)
}
func Test_ValueParams_Bool_Not_Bool(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"a"},
},
}
_, err := p.Bool("id")
assert.Error(t, err, "should cast error")
assert.Contains(t, err.Error(), "failed to parse 'a' to bool")
}
func Test_ValueParams_Bools(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"true", "false"},
},
}
bools, err := p.Bools("id")
assert.NoError(t, err, "should not cast error")
assert.Equal(t, []bool{true, false}, bools)
}
func Test_ValueParams_Bools_Not_Bool(t *testing.T) {
p := ValueParams{
vals: url.Values{
"id": []string{"a", "true"},
},
}
_, err := p.Bools("id")
assert.Error(t, err, "should cast error")
assert.Contains(t, err.Error(), "failed to parse 'a' to bool")
}