about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-09 23:26:18 -0400
committerBen Morrison <ben@gbmor.dev>2019-06-09 23:30:07 -0400
commite539d23e6499b0505f8217a875cc3c94c6e01566 (patch)
tree46dd171bd8d39523b23126baa5703d1ed1b61d1b
parent45d67236e16365e0c6ea90e9b8baa3008d50996d (diff)
downloadgetwtxt-e539d23e6499b0505f8217a875cc3c94c6e01566.tar.gz
handler unit tests finished
-rw-r--r--svc/handlers_test.go23
-rw-r--r--svc/init_test.go1
2 files changed, 22 insertions, 2 deletions
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)
href='#n211'>211 212 213 214 215 216 217 218 219 220