-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathbasic_auth_test.go
87 lines (60 loc) · 1.93 KB
/
basic_auth_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
package mango
import (
"net/http"
"testing"
)
func successPage(env Env) (Status, Headers, Body) {
return 200, Headers{"Content-Type": []string{"text/html"}}, Body("auth success")
}
func failurePage(env Env) (Status, Headers, Body) {
return 403, Headers{"Content-Type": []string{"text/html"}}, Body("auth failed")
}
// Example auth function
func auth(username string, password string, req Request, err error) bool {
if username == "foo" && password == "foo" {
return true
}
return false
}
func TestSuccessAuthRequest(t *testing.T) {
basicAuthStack := new(Stack)
basicAuthStack.Middleware(BasicAuth(auth, failurePage))
basicAuthApp := basicAuthStack.Compile(successPage)
request, err := http.NewRequest("GET", "http://localhost:3000/", nil)
request.SetBasicAuth("foo", "foo")
status, _, _ := basicAuthApp(Env{"mango.request": &Request{request}})
if err != nil {
t.Error(err)
}
if status != 200 {
t.Error("Request did not succeed, expected status 200, got:", status)
}
}
func TestFailureAuthRequest(t *testing.T) {
basicAuthStack := new(Stack)
basicAuthStack.Middleware(BasicAuth(auth, failurePage))
basicAuthApp := basicAuthStack.Compile(successPage)
request, err := http.NewRequest("GET", "http://localhost:3000/", nil)
request.SetBasicAuth("fail", "fail")
status, _, _ := basicAuthApp(Env{"mango.request": &Request{request}})
if err != nil {
t.Error(err)
}
if status != 403 {
t.Error("Request did not succeed, expected status 403, got:", status)
}
}
func TestFailByDefault(t *testing.T) {
basicAuthStack := new(Stack)
basicAuthStack.Middleware(BasicAuth(nil, nil))
basicAuthApp := basicAuthStack.Compile(successPage)
request, err := http.NewRequest("GET", "http://localhost:3000/", nil)
status, _, _ := basicAuthApp(Env{"mango.request": &Request{request}})
if err != nil {
t.Error(err)
}
// TODO test header
if status != 401 {
t.Error("Request did not succeed, expected status 403, got:", status)
}
}