-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler_test.go
More file actions
99 lines (87 loc) · 2.71 KB
/
handler_test.go
File metadata and controls
99 lines (87 loc) · 2.71 KB
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
package head
import (
"encoding/json"
"io/ioutil"
"net/http"
"net/http/httptest"
"strings"
"testing"
)
func TestURLHandler(t *testing.T) {
t.Run("T=normal", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/", strings.NewReader("http://url-example.com"))
w := httptest.NewRecorder()
h := &URLHandler{Client: &http.Client{Transport: &fakeRoundTripper{body: htmlStringGeneral}}}
h.ServeHTTP(w, req)
resp := w.Result()
body, _ := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status code to be %d, got %d (body: %s)", http.StatusOK, resp.StatusCode, body)
return
}
obj := &Object{}
err := json.Unmarshal([]byte(body), obj)
if err != nil {
t.Errorf("expected error to be nil in json unmarshal, got %s", err)
return
}
if obj.Title == "" {
t.Error("expected title not to be empty, got empty")
return
}
})
t.Run("T=bad-request", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/", nil)
w := httptest.NewRecorder()
h := &URLHandler{Client: &http.Client{Transport: &fakeRoundTripper{body: htmlStringGeneral}}}
h.ServeHTTP(w, req)
resp := w.Result()
body, _ := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if resp.StatusCode != http.StatusBadRequest {
t.Errorf("expected status code to be %d, got %d (body: %s)", http.StatusBadRequest, resp.StatusCode,
body)
}
})
}
func TestHTMLHandler(t *testing.T) {
htmlString := strings.Replace(htmlStringGeneral, "\n", "\\n", -1)
htmlString = strings.Replace(htmlString, "\"", "\\\"", -1)
t.Run("T=normal", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/", strings.NewReader(htmlString))
w := httptest.NewRecorder()
h := &HTMLHandler{}
h.ServeHTTP(w, req)
resp := w.Result()
body, _ := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status code to be %d, got %d (body: %s)", http.StatusOK, resp.StatusCode, body)
return
}
obj := &Object{}
err := json.Unmarshal([]byte(body), obj)
if err != nil {
t.Errorf("expected error to be nil in json unmarshal, got %s", err)
return
}
if obj.Title == "" {
t.Error("expected title not to be empty, got empty")
return
}
})
t.Run("T=bad-request", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/", strings.NewReader(""))
w := httptest.NewRecorder()
h := &HTMLHandler{}
h.ServeHTTP(w, req)
resp := w.Result()
body, _ := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if resp.StatusCode != http.StatusBadRequest {
t.Errorf("expected status code to be %d, got %d (body: %s)", http.StatusBadRequest, resp.StatusCode,
body)
}
})
}