This repository has been archived by the owner on May 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathmain_test.go
124 lines (100 loc) · 2.47 KB
/
main_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
package main
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/utils/routetests"
"github.com/stretchr/testify/assert"
)
func TestRoutes(t *testing.T) {
t.Parallel()
app := configure(aero.New())
// Iterate through every route
for _, examples := range routetests.All() {
// Iterate through every example specified for that route
for _, example := range examples {
testRoute(t, app, example)
}
}
}
func TestAnimePages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for anime := range arn.StreamAnime() {
testRoute(t, app, anime.Link())
}
}
func TestSoundTrackPages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for soundtrack := range arn.StreamSoundTracks() {
testRoute(t, app, soundtrack.Link())
assert.NotNil(t, soundtrack.Creator())
}
}
func TestAMVPages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for amv := range arn.StreamAMVs() {
testRoute(t, app, amv.Link())
assert.NotNil(t, amv.Creator())
}
}
func TestCompanyPages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for company := range arn.StreamCompanies() {
testRoute(t, app, company.Link())
}
}
func TestThreadPages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for thread := range arn.StreamThreads() {
testRoute(t, app, thread.Link())
assert.NotNil(t, thread.Creator())
}
}
func TestPostPages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for post := range arn.StreamPosts() {
testRoute(t, app, post.Link())
assert.NotNil(t, post.Creator())
}
}
func TestQuotePages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for quote := range arn.StreamQuotes() {
testRoute(t, app, quote.Link())
assert.NotNil(t, quote.Creator())
}
}
func TestUserPages(t *testing.T) {
t.Parallel()
app := configure(aero.New())
for user := range arn.StreamUsers() {
testRoute(t, app, user.Link())
}
}
func testRoute(t *testing.T, app *aero.Application, route string) {
// Create a new HTTP request
request, err := http.NewRequest("GET", route, nil)
if err != nil {
t.Fatal(err)
}
// Record the response
responseRecorder := httptest.NewRecorder()
app.Handler().ServeHTTP(responseRecorder, request)
status := responseRecorder.Code
switch status {
case 200, 302:
// 200 and 302 are allowed
default:
panic(fmt.Errorf("%s | Wrong status code | %v instead of %v", route, status, http.StatusOK))
}
}