added REST API and simple unit test - and compose starter, still WIP for integ test

This commit is contained in:
josebarn
2017-08-15 21:14:14 -03:00
parent bd8a3f2ddd
commit 5e945440d0
58 changed files with 9040 additions and 25 deletions

71
api/api_test.go Normal file
View File

@@ -0,0 +1,71 @@
package api
import (
"encoding/json"
"github.com/go-chi/chi"
"io"
"io/ioutil"
"net/http"
"net/http/httptest"
"reflect"
"testing"
)
func TestGetRoute(t *testing.T) {
r := chi.NewRouter()
addRoutes(r)
ts := httptest.NewServer(r)
defer ts.Close()
rx := Response{}
_, resp := testRequest(t, ts, "GET", "/app/1", nil)
err := json.Unmarshal([]byte(resp), &rx)
if err != nil {
t.Fatalf("Response incorrect form ", resp)
}
if !reflect.DeepEqual(Response{Operation: "GET", Identifier: 1}, rx) {
t.Fatalf("Response not equal expected values ", resp)
}
}
func TestPostRoute(t *testing.T) {
r := chi.NewRouter()
addRoutes(r)
ts := httptest.NewServer(r)
defer ts.Close()
rx := Response{}
_, resp := testRequest(t, ts, "POST", "/app/1", nil)
err := json.Unmarshal([]byte(resp), &rx)
if err != nil {
t.Fatalf("Response incorrect form ", resp)
}
if !reflect.DeepEqual(Response{Operation: "POST", Identifier: 1}, rx) {
t.Fatalf("Response not equal expected values ", resp)
}
}
//----------------------------------------------------------------------------
// HELPER METHOD
//----------------------------------------------------------------------------
func testRequest(t *testing.T, ts *httptest.Server, method, path string, body io.Reader) (int, string) {
req, err := http.NewRequest(method, ts.URL+path, body)
if err != nil {
t.Fatal(err)
return 0, ""
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
t.Fatal(err)
return resp.StatusCode, ""
}
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
return resp.StatusCode, ""
}
defer resp.Body.Close()
return resp.StatusCode, string(respBody)
}