From e539d23e6499b0505f8217a875cc3c94c6e01566 Mon Sep 17 00:00:00 2001 From: Ben Morrison Date: Sun, 9 Jun 2019 23:26:18 -0400 Subject: handler unit tests finished --- svc/handlers_test.go | 23 +++++++++++++++++++++-- svc/init_test.go | 1 + 2 files changed, 22 insertions(+), 2 deletions(-) (limited to 'svc') diff --git a/svc/handlers_test.go b/svc/handlers_test.go index 82a8d86..41a8851 100644 --- a/svc/handlers_test.go +++ b/svc/handlers_test.go @@ -154,17 +154,36 @@ func Benchmark_apiTagsBaseHandler(b *testing.B) { } func Test_apiTagsHandler(t *testing.T) { initTestConf() + mockRegistry() t.Run("apiTagsHandler", func(t *testing.T) { w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "localhost"+testport+"/api/plain/tags/tag", nil) + req := httptest.NewRequest("GET", "http://localhost"+testport+"/api/plain/tags/programming", nil) apiTagsHandler(w, req) resp := w.Result() + data, err := ioutil.ReadAll(resp.Body) + if err != nil { + t.Errorf("%v\n", err) + } if resp.StatusCode != http.StatusOK { t.Errorf(fmt.Sprintf("%v", resp.StatusCode)) } + if len(data) == 0 { + t.Errorf("Got no data: %v\n", data) + } }) } +func Benchmark_apiTagsHandler(b *testing.B) { + initTestConf() + mockRegistry() + w := httptest.NewRecorder() + r := httptest.NewRequest("GET", "http://localhost"+testport+"/api/plain/tags/programming", nil) + b.ResetTimer() + for i := 0; i < b.N; i++ { + apiTagsHandler(w, r) + } +} + func Test_cssHandler(t *testing.T) { initTestConf() @@ -175,7 +194,7 @@ func Test_cssHandler(t *testing.T) { } w := httptest.NewRecorder() - req := httptest.NewRequest("GET", "localhost"+testport+"/css", nil) + req := httptest.NewRequest("GET", "http://localhost"+testport+"/css", nil) t.Run(name, func(t *testing.T) { cssHandler(w, req) diff --git a/svc/init_test.go b/svc/init_test.go index b2fcd9a..51f72e2 100644 --- a/svc/init_test.go +++ b/svc/init_test.go @@ -93,6 +93,7 @@ func testConfig() { } func mockRegistry() { + twtxtCache = registry.NewIndex() statuses, _, _ := registry.GetTwtxt("https://gbmor.dev/twtxt.txt") parsed, _ := registry.ParseUserTwtxt(statuses, "gbmor", "https://gbmor.dev/twtxt.txt") _ = twtxtCache.AddUser("gbmor", "https://gbmor.dev/twtxt.txt", "1", net.ParseIP("127.0.0.1"), parsed) -- cgit 1.4.1-2-gfad0 i-tty/tree/?id=75c13d492225d51d6594ace508bad33cd26ff293'>root/themes/batman
blob: fa7e7f185d79bdd7fdc71d0020b422093b3bc356 (plain) (blame)
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