-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathweb_test.go
115 lines (100 loc) · 2.68 KB
/
web_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
package netemx
import (
"fmt"
"net/http"
"net/http/httptest"
"net/url"
"testing"
)
func TestExampleWebPageHandler(t *testing.T) {
t.Run("we're redirected if the host is example.com", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "example.com",
}
rr := httptest.NewRecorder()
handler := ExampleWebPageHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusPermanentRedirect {
t.Fatal("unexpected status code", result.StatusCode)
}
if loc := result.Header.Get("Location"); loc != "https://www.example.com/" {
t.Fatal("unexpected location", loc)
}
})
t.Run("we're redirected if the host is example.org", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "example.org",
}
rr := httptest.NewRecorder()
handler := ExampleWebPageHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusPermanentRedirect {
t.Fatal("unexpected status code", result.StatusCode)
}
if loc := result.Header.Get("Location"); loc != "https://www.example.org/" {
t.Fatal("unexpected location", loc)
}
})
t.Run("we get a 400 for an unknown host", func(t *testing.T) {
req := &http.Request{
URL: &url.URL{Path: "/"},
Body: http.NoBody,
Close: false,
Host: "antani.xyz",
}
rr := httptest.NewRecorder()
handler := ExampleWebPageHandler()
handler.ServeHTTP(rr, req)
result := rr.Result()
if result.StatusCode != http.StatusBadRequest {
t.Fatal("unexpected status code", result.StatusCode)
}
})
}
func TestURLShortenerFactory(t *testing.T) {
handler := URLShortenerFactory(DefaultURLShortenerMapping).NewHandler(nil, nil)
for key, value := range DefaultURLShortenerMapping {
t.Run(fmt.Sprintf("for %s => %s", key, value), func(t *testing.T) {
rr := httptest.NewRecorder()
req := &http.Request{
URL: &url.URL{
Path: key,
},
}
handler.ServeHTTP(rr, req)
res := rr.Result()
if res.StatusCode != http.StatusPermanentRedirect {
t.Fatal("unexpected StatusCode", res.StatusCode)
}
loc := res.Header.Get("Location")
if loc != value {
t.Fatal("expected", value, "got", loc)
}
})
}
t.Run("for nonexistent mapping", func(t *testing.T) {
rr := httptest.NewRecorder()
req := &http.Request{
URL: &url.URL{
Path: "/antani",
},
}
handler.ServeHTTP(rr, req)
res := rr.Result()
if res.StatusCode != http.StatusNotFound {
t.Fatal("unexpected StatusCode", res.StatusCode)
}
loc := res.Header.Get("Location")
if loc != "" {
t.Fatal("expected", `""`, "got", loc)
}
})
}