forked from prest/middlewares
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
342 lines (319 loc) · 9.89 KB
/
config_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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
package middlewares
import (
"encoding/json"
"io/ioutil"
"net/http"
"net/http/httptest"
"os"
"strings"
"testing"
"github.com/gorilla/mux"
"github.com/prest/config"
"github.com/prest/config/router"
"github.com/prest/controllers"
"github.com/urfave/negroni"
)
func init() {
config.Load()
}
func TestInitApp(t *testing.T) {
app = nil
initApp()
if app == nil {
t.Errorf("app should not be nil")
}
MiddlewareStack = []negroni.Handler{}
}
func TestGetApp(t *testing.T) {
app = nil
n := GetApp()
if n == nil {
t.Errorf("should return an app")
}
MiddlewareStack = []negroni.Handler{}
}
func TestGetAppWithReorderedMiddleware(t *testing.T) {
app = nil
MiddlewareStack = []negroni.Handler{
negroni.Handler(negroni.HandlerFunc(customMiddleware)),
}
r := mux.NewRouter()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {})
n := GetApp()
n.UseHandler(r)
server := httptest.NewServer(n)
defer server.Close()
resp, err := http.Get(server.URL)
if err != nil {
t.Fatal("expected run without errors but was", err.Error())
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal("expected run without errors but was", err.Error())
}
defer resp.Body.Close()
if !strings.Contains(string(body), "Calling custom middleware") {
t.Error("do not contains 'Calling custom middleware'")
}
if !strings.Contains(resp.Header.Get("Content-Type"), "application/json") {
t.Error("content type should application/json but wasn't")
}
MiddlewareStack = []negroni.Handler{}
}
func TestGetAppWithoutReorderedMiddleware(t *testing.T) {
app = nil
r := mux.NewRouter()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {})
n := GetApp()
n.UseHandler(r)
server := httptest.NewServer(n)
defer server.Close()
resp, err := http.Get(server.URL)
if err != nil {
t.Fatal("Expected run without errors but was", err.Error())
}
if !strings.Contains(resp.Header.Get("Content-Type"), "application/json") {
t.Error("content type should be application/json but not was", resp.Header.Get("Content-Type"))
}
MiddlewareStack = []negroni.Handler{}
}
func TestMiddlewareAccessNoblockingCustomRoutes(t *testing.T) {
os.Setenv("PREST_DEBUG", "true")
config.Load()
app = nil
r := router.Get()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("custom route")) })
crudRoutes := mux.NewRouter().PathPrefix("/").Subrouter().StrictSlash(true)
crudRoutes.HandleFunc("/{database}/{schema}/{table}", controllers.SelectFromTables).Methods("GET")
r.PathPrefix("/").Handler(negroni.New(
AccessControl(),
negroni.Wrap(crudRoutes),
))
os.Setenv("PREST_CONF", "../testdata/prest.toml")
n := GetApp()
n.UseHandler(r)
server := httptest.NewServer(n)
defer server.Close()
resp, err := http.Get(server.URL)
if err != nil {
t.Fatal("expected run without errors but was", err.Error())
}
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal("expected run without errors but was", err.Error())
}
defer resp.Body.Close()
if !strings.Contains(string(body), "custom route") {
t.Error("do not contains 'custom route'")
}
if !strings.Contains(resp.Header.Get("Content-Type"), "application/json") {
t.Error("content type should be application/json but was", resp.Header.Get("Content-Type"))
}
resp, err = http.Get(server.URL + "/prest/public/test_write_and_delete_access")
if err != nil {
t.Fatal("expected run without errors but was", err.Error())
}
body, err = ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal("expected run without errors but was", err.Error())
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusUnauthorized {
t.Errorf("content type should be http.StatusUnauthorized but was %s", resp.Status)
}
if !strings.Contains(resp.Header.Get("Content-Type"), "application/json") {
t.Error("content type should be application/json but wasn't")
}
if !strings.Contains(string(body), "required authorization to table") {
t.Error("do not contains 'required authorization to table'")
}
MiddlewareStack = []negroni.Handler{}
os.Setenv("PREST_CONF", "")
}
func customMiddleware(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
m := make(map[string]string)
m["msg"] = "Calling custom middleware"
b, _ := json.Marshal(m)
w.Header().Set("Content-Type", "application/json")
w.Write(b)
next(w, r)
}
func TestDebug(t *testing.T) {
os.Setenv("PREST_DEBUG", "true")
config.Load()
nd := appTest()
serverd := httptest.NewServer(nd)
defer serverd.Close()
respd, err := http.Get(serverd.URL)
if err != nil {
t.Errorf("expected no errors, but got %v", err)
}
if respd.StatusCode != http.StatusOK {
t.Errorf("expected status code 200, but got %d", respd.StatusCode)
}
}
func appTest() *negroni.Negroni {
n := GetApp()
r := router.Get()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("test app"))
}).Methods("GET")
n.UseHandler(r)
return n
}
func TestCorsGet(t *testing.T) {
os.Setenv("PREST_DEBUG", "true")
os.Setenv("PREST_CORS_ALLOWORIGIN", "*")
os.Setenv("PREST_CONF", "../testdata/prest.toml")
config.Load()
app = nil
r := router.Get()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("custom route")) })
n := GetApp()
n.UseHandler(r)
server := httptest.NewServer(n)
defer server.Close()
resp, err := http.Get(server.URL)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
if resp.Header.Get("Access-Control-Allow-Origin") != "*" {
t.Errorf("expected allow origin *, but got %q", resp.Header.Get("Access-Control-Allow-Origin"))
}
methods := resp.Header.Get("Access-Control-Allow-Methods")
for _, method := range []string{"GET", "POST", "PUT", "PATCH", "DELETE"} {
if !strings.Contains(methods, method) {
t.Errorf("do not contain %s", method)
}
}
if resp.Request.Method != "GET" {
t.Errorf("expected method GET, but got %v", resp.Request.Method)
}
var body []byte
body, err = ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
if len(body) == 0 {
t.Error("body is empty")
}
}
func TestCorsPost(t *testing.T) {
os.Setenv("PREST_DEBUG", "true")
os.Setenv("PREST_CORS_ALLOWORIGIN", "*")
os.Setenv("PREST_CONF", "../testdata/prest.toml")
config.Load()
app = nil
r := router.Get()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("custom route")) })
n := GetApp()
n.UseHandler(r)
server := httptest.NewServer(n)
defer server.Close()
resp, err := http.Post(server.URL, "application/json", nil)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
if resp.Header.Get("Access-Control-Allow-Origin") != "*" {
t.Errorf("expected allow origin *, but got %q", resp.Header.Get("Access-Control-Allow-Origin"))
}
methods := resp.Header.Get("Access-Control-Allow-Methods")
for _, method := range []string{"GET", "POST", "PUT", "PATCH", "DELETE"} {
if !strings.Contains(methods, method) {
t.Errorf("do not contain %s", method)
}
}
if resp.Request.Method != "POST" {
t.Errorf("expected method POST, but got %v", resp.Request.Method)
}
var body []byte
body, err = ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal("Expected run without errors but was", err)
}
if len(body) == 0 {
t.Error("body is empty")
}
}
func TestCorsHead(t *testing.T) {
os.Setenv("PREST_DEBUG", "true")
os.Setenv("PREST_CORS_ALLOWORIGIN", "*")
os.Setenv("PREST_CONF", "../testdata/prest.toml")
config.Load()
app = nil
r := router.Get()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("custom route")) })
n := GetApp()
n.UseHandler(r)
server := httptest.NewServer(n)
defer server.Close()
client := http.Client{}
req, err := http.NewRequest("HEAD", server.URL, nil)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
var resp *http.Response
resp, err = client.Do(req)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
if resp.Header.Get("Access-Control-Allow-Origin") != "*" {
t.Errorf("expected allow origin *, but got %q", resp.Header.Get("Access-Control-Allow-Origin"))
}
methods := resp.Header.Get("Access-Control-Allow-Methods")
for _, method := range []string{"GET", "POST", "PUT", "PATCH", "DELETE"} {
if !strings.Contains(methods, method) {
t.Errorf("do not contain %s", method)
}
}
if resp.Request.Method != "HEAD" {
t.Errorf("expected method HEAD, but got %v", resp.Request.Method)
}
if resp.StatusCode != http.StatusForbidden {
t.Errorf("expected status code 403 but got %d", resp.StatusCode)
}
}
func TestCorsAllowOriginNotAll(t *testing.T) {
os.Setenv("PREST_DEBUG", "true")
os.Setenv("PREST_CONF", "../testdata/prest.toml")
os.Setenv("PREST_CORS_ALLOWORIGIN", "http://127.0.0.1")
config.Load()
config.PrestConf.CORSAllowOrigin = []string{"http://127.0.0.1"}
app = nil
r := router.Get()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("custom route")) })
n := GetApp()
n.UseHandler(r)
server := httptest.NewServer(n)
defer server.Close()
client := http.Client{}
req, err := http.NewRequest("POST", server.URL, nil)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
req.Header.Set("Origin", "http://127.0.0.1")
resp, err := client.Do(req)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
if resp.Header.Get("Access-Control-Allow-Origin") != "http://127.0.0.1" {
t.Errorf("expected allow origin http://127.0.0.1, but got %q", resp.Header.Get("Access-Control-Allow-Origin"))
}
methods := resp.Header.Get("Access-Control-Allow-Methods")
for _, method := range []string{"GET", "POST", "PUT", "PATCH", "DELETE"} {
if !strings.Contains(methods, method) {
t.Errorf("do not contain %s", method)
}
}
if resp.Request.Method != "POST" {
t.Errorf("expected method POST, but got %v", resp.Request.Method)
}
var body []byte
body, err = ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal("Expected run without errors but was", err)
}
if len(body) == 0 {
t.Error("body is empty")
}
}