This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain_test.go
165 lines (134 loc) · 3.88 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
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
//
// Simple testing of the HTTP-server
//
//
package main
import (
"bytes"
"net/http"
"net/http/httptest"
"strings"
"testing"
)
//
// Submitting JSON must be done via a POST.
//
func TestTestMethod(t *testing.T) {
req, err := http.NewRequest("GET", "/", nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(SpamTestHandler)
handler.ServeHTTP(rr, req)
// Check the status code is what we expect.
if status := rr.Code; status != http.StatusInternalServerError {
t.Errorf("Unexpected status-code: %v", status)
}
// Check the response body is what we expect.
expected := "Must be called via HTTP-POST\n"
if rr.Body.String() != expected {
t.Errorf("handler returned unexpected body: got '%v' want '%v'",
rr.Body.String(), expected)
}
}
//
// Test that we can POST to the end-point
//
func TestSpam(t *testing.T) {
body := []byte("{\"comment\":\"Moi Kissa\",\"name\":\"http://example.com\"}")
req, err := http.NewRequest("POST", "/", bytes.NewReader(body))
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(SpamTestHandler)
// Our handlers satisfy http.Handler, so we can call their ServeHTTP method
// directly and pass in our Request and ResponseRecorder.
handler.ServeHTTP(rr, req)
// Check the status code is what we expect.
if status := rr.Code; status != http.StatusOK {
t.Errorf("Unexpected status-code: %v", status)
}
if !strings.Contains(rr.Body.String(), "SPAM") {
t.Errorf("Body was '%v' not spam",
rr.Body.String())
}
}
//
// Test that we can handle bogus JSON POSTed to the end-point
//
func TestBogusJSON(t *testing.T) {
body := []byte("{\"comment\",\"Moi Kissa\",\"name\":\"http://example.com\"}")
req, err := http.NewRequest("POST", "/", bytes.NewReader(body))
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(SpamTestHandler)
// Our handlers satisfy http.Handler, so we can call their ServeHTTP method
// directly and pass in our Request and ResponseRecorder.
handler.ServeHTTP(rr, req)
// Check the status code is what we expect.
if status := rr.Code; status != http.StatusInternalServerError {
t.Errorf("Unexpected status-code: %v", status)
}
if !strings.Contains(rr.Body.String(), "invalid character") {
t.Errorf("Body was '%v' not a bogus JSON error",
rr.Body.String())
}
}
//
// The name-check plugin will mark a field as spam, so we'll test that
// we can exclude that.
//
func TestSpamExclusion(t *testing.T) {
body := []byte("{\"options\":\"exclude=name\",\"comment\":\"Moi Kissa\",\"name\":\"http://example.com\", \"site\":\"example.com\", \"ip\": \"127.0.0.1\"}")
req, err := http.NewRequest("POST", "/", bytes.NewReader(body))
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
handler := http.HandlerFunc(SpamTestHandler)
// Our handlers satisfy http.Handler, so we can call their ServeHTTP method
// directly and pass in our Request and ResponseRecorder.
handler.ServeHTTP(rr, req)
// Check the status code is what we expect.
if status := rr.Code; status != http.StatusOK {
t.Errorf("Unexpected status-code: %v", status)
}
if !strings.Contains(rr.Body.String(), "OK") {
t.Errorf("Body was '%v' not OK",
rr.Body.String())
}
}
//
// Test that we can retrieve content from the plugins-list end-point
//
func TestPluginList(t *testing.T) {
//
// Make the request
//
req, err := http.NewRequest("GET", "/list/", nil)
if err != nil {
t.Fatal(err)
}
//
// Fake it out
//
rr := httptest.NewRecorder()
handler := http.HandlerFunc(PluginListHandler)
handler.ServeHTTP(rr, req)
//
// Test the status-code is OK
//
if status := rr.Code; status != http.StatusOK {
t.Errorf("Unexpected status-code: %v", status)
}
//
// Test that the body contained our expected content.
//
if !strings.Contains(rr.Body.String(), "requiremx") {
t.Fatalf("Unexpected body: '%s'", rr.Body.String())
}
}