This repository has been archived by the owner on Jul 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig_test.go
342 lines (311 loc) · 9.85 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/adapters/postgres"
"github.com/prest/config"
"github.com/prest/config/router"
"github.com/prest/controllers"
"github.com/urfave/negroni"
)
func init() {
config.Load()
postgres.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()
postgres.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 TestEnableDefaultJWT(t *testing.T) {
app = nil
os.Setenv("PREST_JWT_DEFAULT", "false")
os.Setenv("PREST_DEBUG", "false")
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.StatusNotImplemented {
t.Errorf("expected status code 501, but got %d", respd.StatusCode)
}
}
func TestJWTIsRequired(t *testing.T) {
MiddlewareStack = []negroni.Handler{}
app = nil
os.Setenv("PREST_JWT_DEFAULT", "true")
os.Setenv("PREST_DEBUG", "false")
config.Load()
nd := appTestWithJwt()
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.StatusUnauthorized {
t.Errorf("expected status code 401, but got %d", respd.StatusCode)
}
}
func TestJWTSignatureOk(t *testing.T) {
app = nil
MiddlewareStack = nil
bearer := "Bearer eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImpvaG4uZG9lQHNvbWV3aGVyZS5jb20iLCJpYXQiOjE1MTc1NjM2MTYsImlzcyI6InByaXZhdGUiLCJqdGkiOiJjZWZhNzRmZS04OTRjLWZmNjMtZDgxNi00NjIwYjhjZDkyZWUiLCJvcmciOiJwcml2YXRlIiwic3ViIjoiam9obi5kb2UifQ.zLWkEd4hP4XdCD_DlRy6mgPeKwEl1dcdtx5A_jHSfmc87EsrGgNSdi8eBTzCgSU0jgV6ssTgQwzY6x4egze2xA"
os.Setenv("PREST_JWT_DEFAULT", "true")
os.Setenv("PREST_DEBUG", "false")
os.Setenv("PREST_JWT_KEY", "s3cr3t")
os.Setenv("PREST_JWT_ALGO", "HS512")
config.Load()
nd := appTestWithJwt()
serverd := httptest.NewServer(nd)
defer serverd.Close()
req, err := http.NewRequest("GET", serverd.URL, nil)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
req.Header.Add("authorization", bearer)
client := http.Client{}
respd, err := client.Do(req)
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 TestJWTSignatureKo(t *testing.T) {
app = nil
bearer := "Bearer: eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImpvaG4uZG9lQHNvbWV3aGVyZS5jb20iLCJleHAiOjE1MjUzMzk2MTYsImlhdCI6MTUxNzU2MzYxNiwiaXNzIjoicHJpdmF0ZSIsImp0aSI6ImNlZmE3NGZlLTg5NGMtZmY2My1kODE2LTQ2MjBiOGNkOTJlZSIsIm9yZyI6InByaXZhdGUiLCJzdWIiOiJqb2huLmRvZSJ9.zGP1Xths2bK2r9FN0Gv1SzyoisO0dhRwvqrPvunGxUyU5TbkfdnTcQRJNYZzJfGILeQ9r3tbuakWm-NIoDlbbA"
os.Setenv("PREST_JWT_DEFAULT", "true")
os.Setenv("PREST_DEBUG", "false")
os.Setenv("PREST_JWT_KEY", "s3cr3t")
os.Setenv("PREST_JWT_ALGO", "HS256")
config.Load()
nd := appTestWithJwt()
serverd := httptest.NewServer(nd)
defer serverd.Close()
req, err := http.NewRequest("GET", serverd.URL, nil)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
req.Header.Add("authorization", bearer)
client := http.Client{}
respd, err := client.Do(req)
if err != nil {
t.Errorf("expected no errors, but got %v", err)
}
if respd.StatusCode != http.StatusUnauthorized {
t.Errorf("expected status code 401, but got %d", respd.StatusCode)
}
}
func appTest() *negroni.Negroni {
n := GetApp()
r := router.Get()
if !config.PrestConf.Debug && !config.PrestConf.EnableDefaultJWT {
n.UseHandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNotImplemented)
})
}
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("test app"))
}).Methods("GET")
n.UseHandler(r)
return n
}
func appTestWithJwt() *negroni.Negroni {
n := GetApp()
r := mux.NewRouter()
r.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("test app"))
}).Methods("GET")
n.UseHandler(r)
return n
}
func TestCors(t *testing.T) {
MiddlewareStack = []negroni.Handler{}
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()
req, err := http.NewRequest("OPTIONS", server.URL, nil)
if err != nil {
t.Fatal("expected run without errors but was", err)
}
req.Header.Set("Access-Control-Request-Method", "GET")
client := http.Client{}
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 != "OPTIONS" {
t.Errorf("expected method OPTIONS, but got %v", resp.Request.Method)
}
if resp.StatusCode != http.StatusOK {
t.Errorf("expected HTTP status code 200, but got %v", resp.StatusCode)
}
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 not empty")
}
}