mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
test: add unit tests
This commit is contained in:
parent
c8747c0182
commit
afc0347a1b
19 changed files with 358 additions and 31 deletions
38
handlers/annotations_test.go
Normal file
38
handlers/annotations_test.go
Normal file
|
@ -0,0 +1,38 @@
|
|||
package handlers
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
func TestAnnotations(t *testing.T) {
|
||||
url := "/61590/Black-star-respiration/The-new-moon-rode-high-in-the-crown-of-the-metropolis/annotations"
|
||||
|
||||
r, err := http.NewRequest(http.MethodGet, url, nil)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
rr := httptest.NewRecorder()
|
||||
l := logrus.New()
|
||||
m := New(l)
|
||||
|
||||
m.ServeHTTP(rr, r)
|
||||
|
||||
defer rr.Result().Body.Close()
|
||||
|
||||
decoder := json.NewDecoder(rr.Result().Body)
|
||||
annotation := map[string]string{}
|
||||
|
||||
if err := decoder.Decode(&annotation); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if _, exists := annotation["html"]; !exists {
|
||||
t.Fatalf("html field not found on annotation\n")
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue