forked from web-platform-tests/wpt.fyi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes_test.go
165 lines (137 loc) · 4.55 KB
/
routes_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
// +build small
// Copyright 2017 The WPT Dashboard Project. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package webapp
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/gorilla/mux"
"github.com/stretchr/testify/assert"
"github.com/web-platform-tests/wpt.fyi/shared"
)
func TestLandingPageBound(t *testing.T) {
// Note that init() is always called by the Golang runtime.
assertHandlerIs(t, "/", "results-legacy")
assertHSTS(t, "/")
assertHandlerIs(t, "/2dcontext", "results-legacy")
assertHandlerIs(t, "/BackgroundSync/interfaces.any.html", "results-legacy")
}
func TestAboutBound(t *testing.T) {
assertHandlerIs(t, "/about", "about")
}
func TestAnalyzerBound(t *testing.T) {
assertHandlerIs(t, "/analyzer", "analyzer")
}
func TestFlagsBound(t *testing.T) {
assertHandlerIs(t, "/flags", "flags")
}
func TestInteropBound(t *testing.T) {
assertHandlerIs(t, "/interop", "interop")
assertHandlerIs(t, "/interop/", "interop")
assertHandlerIs(t, "/interop/2dcontext", "interop")
assertHandlerIs(t, "/interop/BackgroundSync/interfaces.any.html", "interop")
}
func TestRunsBound(t *testing.T) {
assertHandlerIs(t, "/test-runs", "test-runs")
}
func TestApiDiffBound(t *testing.T) {
assertHandlerIs(t, "/api/diff", "api-diff")
}
func TestApiInteropBound(t *testing.T) {
assertHandlerIs(t, "/api/interop", "api-interop")
}
func TestApiManifestBound(t *testing.T) {
assertHandlerIs(t, "/api/manifest", "api-manifest")
}
func TestApiRunsBound(t *testing.T) {
assertHandlerIs(t, "/api/runs", "api-test-runs")
}
func TestApiShasBound(t *testing.T) {
assertHandlerIs(t, "/api/shas", "api-shas")
}
func TestApiRunBound(t *testing.T) {
assertHandlerIs(t, "/api/run", "api-test-run")
assertHandlerIs(t, "/api/runs/123", "api-test-run")
}
func TestApiResultsBoundCORS(t *testing.T) {
assertHandlerIs(t, "/api/results", "api-results")
assertHSTS(t, "/api/results/upload")
assertCORS(t, "/api/results")
}
func TestApiResultsUploadBoundHSTS(t *testing.T) {
assertHandlerIs(t, "/api/results/upload", "api-results-upload")
assertHSTS(t, "/api/results/upload")
assertNoCORS(t, "/api/results/upload")
}
func TestApiResultsCreateBoundHSTS(t *testing.T) {
assertHandlerIs(t, "/api/results/create", "api-results-create")
assertHSTS(t, "/api/results/create")
assertNoCORS(t, "/api/results/create")
}
func TestResultsBound(t *testing.T) {
assertHandlerIs(t, "/results", "results")
assertHandlerIs(t, "/results/", "results")
assertHandlerIs(t, "/results/2dcontext", "results")
assertHandlerIs(t, "/results/BackgroundSync/interfaces.any.html", "results")
}
func TestAdminResultsUploadBound(t *testing.T) {
assertHandlerIs(t, "/admin/results/upload", "admin-results-upload")
assertHSTS(t, "/admin/results/upload")
}
func TestAdminCacheFlushBound(t *testing.T) {
assertHandlerIs(t, "/admin/cache/flush", "admin-cache-flush")
assertHSTS(t, "/admin/cache/flush")
}
func assertBound(t *testing.T, path string) mux.RouteMatch {
req := httptest.NewRequest("GET", path, nil)
router := shared.Router()
match := mux.RouteMatch{}
assert.Truef(t, router.Match(req, &match), "%s should match a route", path)
return match
}
func assertHandlerIs(t *testing.T, path string, name string) {
match := assertBound(t, path)
if match.Route != nil {
assert.Equal(t, name, match.Route.GetName())
}
}
func assertHSTS(t *testing.T, path string) {
req := httptest.NewRequest("GET", path, nil)
rr := httptest.NewRecorder()
handler, _ := http.DefaultServeMux.Handler(req)
handler.ServeHTTP(rr, req)
res := rr.Result()
assert.Equal(
t,
"[max-age=31536000; preload]",
fmt.Sprintf("%s", res.Header["Strict-Transport-Security"]))
}
func assertCORS(t *testing.T, path string) {
req := httptest.NewRequest("OPTIONS", path, nil)
req.Header.Set("Access-Control-Request-Headers", "content-type")
rr := httptest.NewRecorder()
handler, _ := http.DefaultServeMux.Handler(req)
handler.ServeHTTP(rr, req)
assert.Equal(t, http.StatusOK, rr.Result().StatusCode)
req = httptest.NewRequest("GET", path, nil)
req.Header.Add("Origin", "localhost:8080")
rr = httptest.NewRecorder()
handler, _ = http.DefaultServeMux.Handler(req)
handler.ServeHTTP(rr, req)
res := rr.Result()
assert.Equal(
t,
"*",
res.Header.Get("Access-Control-Allow-Origin"))
}
func assertNoCORS(t *testing.T, path string) {
req := httptest.NewRequest("GET", path, nil)
rr := httptest.NewRecorder()
handler, _ := http.DefaultServeMux.Handler(req)
handler.ServeHTTP(rr, req)
res := rr.Result()
assert.Equal(t, "", res.Header.Get("Access-Control-Allow-Origin"))
}