mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 18:32:19 +00:00
More coverage on web package
This commit is contained in:
parent
ac40d81e98
commit
ea860a0790
@ -36,7 +36,7 @@ func viewerPostHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
w.Header().Set("Content-Type", "application/json")
|
w.Header().Set("Content-Type", "application/json")
|
||||||
w.Write(jsonDesc)
|
_, _ = w.Write(jsonDesc)
|
||||||
|
|
||||||
// Increment monitoring
|
// Increment monitoring
|
||||||
monitoring.WebSessions.Inc()
|
monitoring.WebSessions.Inc()
|
||||||
|
@ -19,4 +19,20 @@ func TestViewerPageGET(t *testing.T) {
|
|||||||
if w.Code != http.StatusOK {
|
if w.Code != http.StatusOK {
|
||||||
t.Errorf("Viewer page returned %v != %v on GET", w.Code, http.StatusOK)
|
t.Errorf("Viewer page returned %v != %v on GET", w.Code, http.StatusOK)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Test GET request on not found page
|
||||||
|
r, _ = http.NewRequest("GET", "", nil)
|
||||||
|
w = httptest.NewRecorder()
|
||||||
|
http.HandlerFunc(viewerHandler).ServeHTTP(w, r)
|
||||||
|
if w.Code != http.StatusNotFound {
|
||||||
|
t.Errorf("Viewer page returned %v != %v on GET", w.Code, http.StatusOK)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test GET request on statistics page
|
||||||
|
r, _ = http.NewRequest("GET", "/", nil)
|
||||||
|
w = httptest.NewRecorder()
|
||||||
|
http.HandlerFunc(statisticsHandler).ServeHTTP(w, r)
|
||||||
|
if w.Code != http.StatusOK {
|
||||||
|
t.Errorf("Viewer page returned %v != %v on GET", w.Code, http.StatusOK)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user