-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathservice_test.go
194 lines (147 loc) · 4.34 KB
/
service_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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package main
import (
"bytes"
"net/http"
"net/http/httptest"
"testing"
)
func TestServerCreate(t *testing.T) {
c := Configuration{
Port: 8081,
}
b := Service{
Config: &c,
}
if b.Config.Port != 8081 {
t.Fatal("Missing config value (somehow)")
}
}
func TestServerRegexes(t *testing.T) {
b := Service{}
b.buildRegularExpressions()
// [a-zA-Z0-9\.-]+
if b.validEmailHost.MatchString("test-HOSTval124id.net") == false {
t.Fatal("Invalid email host regex (plain)!")
}
if b.validEmailHost.MatchString("localhost") == false {
t.Fatal("Invalid email host regex (local)!")
}
if b.validEmailHost.MatchString("87dfa@$22") == true {
t.Fatal("Invalid email host regex (invalid characters)!")
}
if b.validEmailHost.MatchString("87dfa@$22.lol") == true {
t.Fatal("Invalid email host regex (invalid characters)!")
}
// ^\d{1-3}\.\d{1-3\.\d{1-3}\.\d{1-3}$
if b.validEmailHostIP.MatchString("12.14.156.255") == false {
t.Fatal("Invalid host IP regex (plain)!")
}
if b.validEmailHostIP.MatchString("12.14.156") == true {
t.Fatal("Invalid host IP regex (missing octet)!")
}
if b.validEmailHostIP.MatchString("12.14.156.123.554") == true {
t.Fatal("Invalid host IP regex (extra octet)!")
}
// [a-zA-Z0-9!#$%&'*+/=\?^_\{\}|~\.-]+
if b.validEmailUser.MatchString("geezer123") == false {
t.Fatal("Invalid user regex (plain)!")
}
if b.validEmailUser.MatchString("") == true {
t.Fatal("Invalid user regex (empty)!")
}
if b.validEmailUser.MatchString("b&l*a4{#'1_+r=gh?12}3~-.|^as%df$!") == false {
t.Fatal("Invalid user regex (special characters)!")
}
}
func TestGetValidResponseOutput(t *testing.T) {
r := request{}
r.inputEmail = "[email protected]"
r.inputHost = "thing.com"
r.inputUser = "testing"
s := Service{}
response := s.getResponseOutput(&r, true)
if response.Status != 200 {
t.Fatal("Invalid response code!")
}
if response.Message != "OK" {
t.Fatal("Invalid message!")
}
if response.Email != r.inputEmail {
t.Fatal("Invalid email address!")
}
if response.Valid != true {
t.Fatal("Invalid response valid!")
}
if response.Host != r.inputHost {
t.Fatal("Invalid response host!")
}
if response.User != r.inputUser {
t.Fatal("Invalid response user!")
}
}
func TestGetResponseError(t *testing.T) {
r := request{}
r.inputEmail = "[email protected]"
r.inputHost = "thing.com"
r.inputUser = "testing"
s := Service{}
response := s.getResponseError(&r, "Something or other")
if response.Status != 500 {
t.Fatal("Invalid response code!")
}
if response.Message != "Something or other" {
t.Fatal("Invalid message!")
}
if response.Email != r.inputEmail {
t.Fatal("Invalid email address!")
}
if response.Valid != false {
t.Fatal("Invalid response valid!")
}
if response.Host != r.inputHost {
t.Fatal("Invalid response host!")
}
if response.User != r.inputUser {
t.Fatal("Invalid response user!")
}
}
func TestServeHTTP(t *testing.T) {
s := Service{
Config: &Configuration{
Port: 8081,
},
}
s.buildRegularExpressions()
rr := httptest.NewRecorder()
handler := http.HandlerFunc(s.ServeHTTP)
body := []byte(`[email protected]`)
req, _ := http.NewRequest("POST", "http://localhost/", bytes.NewBuffer(body))
req.Header.Set("Content-type", "application/x-www-form-urlencoded")
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusOK {
t.Fatalf("Handler returned invalid status! Got %v want %v %v", status, http.StatusOK, rr.Body)
}
}
func TestFailureServeHTTP(t *testing.T) {
s := Service{
Config: &Configuration{
Port: 8081,
},
}
s.buildRegularExpressions()
rr := httptest.NewRecorder()
handler := http.HandlerFunc(s.ServeHTTP)
body := []byte(`email=blargh!`)
req, _ := http.NewRequest("POST", "http://localhost/", bytes.NewBuffer(body))
req.Header.Set("Content-type", "application/x-www-form-urlencoded")
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusInternalServerError {
t.Fatalf("Handler returned invalid status! Got %v want %v %v", status, http.StatusInternalServerError, rr.Body)
}
req, _ = http.NewRequest("POST", "http://localhost/", nil)
req.Header.Set("Content-type", "application/x-www-form-urlencoded")
handler.ServeHTTP(rr, req)
if status := rr.Code; status != http.StatusInternalServerError {
t.Fatalf("Handler returned invalid status! Got %v want %v %v", status, http.StatusInternalServerError, rr.Body)
}
}