summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--handlers_test.go23
1 files changed, 15 insertions, 8 deletions
diff --git a/handlers_test.go b/handlers_test.go
index 63b7c3d..b4e9096 100644
--- a/handlers_test.go
+++ b/handlers_test.go
@@ -9,8 +9,12 @@ import (
 	"testing"
 )
 
-// these will be expanded later. currently, they only
-// test for a 200 status code.
+// Currently, these only test for a 200 status code.
+// More in-depth unit tests are planned, however, several
+// of these will quickly turn into integration tests as
+// they'll need more than a barebones test environment to
+// get any real information. The HTTP responses are being
+// tested by me by hand, mostly.
 func Test_indexHandler(t *testing.T) {
 	initTestConf()
 	t.Run("indexHandler", func(t *testing.T) {
@@ -28,7 +32,7 @@ func Test_apiBaseHandler(t *testing.T) {
 	t.Run("apiBaseHandler", func(t *testing.T) {
 		w := httptest.NewRecorder()
 		req := httptest.NewRequest("GET", "localhost"+testport+"/api", nil)
-		indexHandler(w, req)
+		apiBaseHandler(w, req)
 		resp := w.Result()
 		if resp.StatusCode != http.StatusOK {
 			t.Errorf(fmt.Sprintf("%v", resp.StatusCode))
@@ -40,7 +44,7 @@ func Test_apiFormatHandler(t *testing.T) {
 	t.Run("apiFormatHandler", func(t *testing.T) {
 		w := httptest.NewRecorder()
 		req := httptest.NewRequest("GET", "localhost"+testport+"/api/plain", nil)
-		indexHandler(w, req)
+		apiFormatHandler(w, req)
 		resp := w.Result()
 		if resp.StatusCode != http.StatusOK {
 			t.Errorf(fmt.Sprintf("%v", resp.StatusCode))
@@ -52,19 +56,21 @@ func Test_apiEndpointHandler(t *testing.T) {
 	t.Run("apiEndpointHandler", func(t *testing.T) {
 		w := httptest.NewRecorder()
 		req := httptest.NewRequest("GET", "localhost"+testport+"/api/plain/users", nil)
-		indexHandler(w, req)
+		apiEndpointHandler(w, req)
 		resp := w.Result()
 		if resp.StatusCode != http.StatusOK {
 			t.Errorf(fmt.Sprintf("%v", resp.StatusCode))
 		}
 	})
 }
+
+/*
 func Test_apiTagsBaseHandler(t *testing.T) {
 	initTestConf()
 	t.Run("apiTagsBaseHandler", func(t *testing.T) {
 		w := httptest.NewRecorder()
 		req := httptest.NewRequest("GET", "localhost"+testport+"/api/plain/tags", nil)
-		indexHandler(w, req)
+		apiTagsBaseHandler(w, req)
 		resp := w.Result()
 		if resp.StatusCode != http.StatusOK {
 			t.Errorf(fmt.Sprintf("%v", resp.StatusCode))
@@ -73,16 +79,17 @@ func Test_apiTagsBaseHandler(t *testing.T) {
 }
 func Test_apiTagsHandler(t *testing.T) {
 	initTestConf()
-	t.Run("indexHandler", func(t *testing.T) {
+	t.Run("apiTagsHandler", func(t *testing.T) {
 		w := httptest.NewRecorder()
 		req := httptest.NewRequest("GET", "localhost"+testport+"/api/plain/tags/tag", nil)
-		indexHandler(w, req)
+		apiTagsHandler(w, req)
 		resp := w.Result()
 		if resp.StatusCode != http.StatusOK {
 			t.Errorf(fmt.Sprintf("%v", resp.StatusCode))
 		}
 	})
 }
+*/
 func Test_cssHandler(t *testing.T) {
 	initTestConf()
 
n68' href='#n68'>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