genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/test/testrest.go

112 lines
2.6 KiB
Go
Raw Normal View History

2017-05-15 10:22:24 +02:00
// Package that contains a lib to easily create everything for running a virtual api and test the microservice
2017-03-25 16:09:17 +01:00
package test
2017-05-03 08:07:45 +02:00
// Import an easy manager to test the REST-API
2017-03-25 16:09:17 +01:00
import (
"bytes"
"encoding/json"
"errors"
2017-03-25 16:09:17 +01:00
"net/http"
"net/http/httptest"
"testing"
2017-03-30 19:05:33 +02:00
"github.com/genofire/hs_master-kss-monolith/lib/database"
2017-03-25 16:09:17 +01:00
"github.com/stretchr/testify/assert"
goji "goji.io"
)
2017-05-03 08:07:45 +02:00
// Pointer to the server
var srv bool
type mockTransport struct {
handler http.Handler
}
func (t *mockTransport) RoundTrip(req *http.Request) (*http.Response, error) {
if !srv {
return nil, errors.New("mock a error")
}
w := httptest.NewRecorder()
t.handler.ServeHTTP(w, req)
return w.Result(), nil
}
2017-05-03 08:07:45 +02:00
// Function to initialize a test api (with test files of depending microservice)
2017-03-25 16:09:17 +01:00
func Init(t *testing.T) (assertion *assert.Assertions, router *goji.Mux) {
assertion = assert.New(t)
2017-03-30 19:05:33 +02:00
database.Open(database.Config{
Type: "sqlite3",
Logging: true,
2017-03-30 19:05:33 +02:00
Connection: ":memory:",
})
2017-03-25 16:09:17 +01:00
router = goji.NewMux()
srv = true
mockBackend := http.FileServer(http.Dir("../webroot"))
http.DefaultClient.Transport = &mockTransport{handler: mockBackend}
2017-03-25 16:09:17 +01:00
return
}
2017-05-03 08:07:45 +02:00
// Function to close the static webserver
func CloseServer() {
srv = false
}
2017-05-03 08:07:45 +02:00
// Function to close and stop the whole microservice
2017-03-30 19:05:33 +02:00
func Close() {
database.Close()
srv = false
2017-03-30 19:05:33 +02:00
}
2017-05-03 08:07:45 +02:00
// Handle a test session with cookies
2017-03-25 16:09:17 +01:00
type Request struct {
req *http.Request
cookies []*http.Cookie
router *goji.Mux
}
2017-05-15 10:22:24 +02:00
// Function to create a NewSession with the easy manager
2017-03-25 16:09:17 +01:00
func NewSession(router *goji.Mux) *Request {
return &Request{router: router}
}
2017-05-05 11:22:43 +02:00
// Function to send a request to the router and receive the api's answer
2017-03-25 16:09:17 +01:00
func (r *Request) JSONRequest(method string, url string, body interface{}) (jsonResult interface{}, res *http.Response) {
jsonObj, _ := json.Marshal(body)
req, _ := http.NewRequest(method, url, bytes.NewReader(jsonObj))
req.Header.Set("Content-Type", "application/json")
for _, c := range r.cookies {
req.AddCookie(c)
}
w := httptest.NewRecorder()
r.router.ServeHTTP(w, req)
res = w.Result()
cookies := res.Cookies()
if len(cookies) > 0 {
r.cookies = cookies
}
json.NewDecoder(w.Body).Decode(&jsonResult)
return
}
2017-05-03 08:07:45 +02:00
// Function to log the current session
2017-04-29 18:26:36 +02:00
func (r *Request) Login() {
r.cookies = nil
r.cookies = append(r.cookies, &http.Cookie{Name: "session", Value: "testsessionkey"})
}
2017-05-03 08:07:45 +02:00
// Function to logout/quit the current session
2017-04-29 18:26:36 +02:00
func (r *Request) Logout() {
r.cookies = nil
r.cookies = append(r.cookies, &http.Cookie{Name: "session", Value: "trashkey"})
}
2017-05-03 08:07:45 +02:00
// Function to clean the current session
2017-03-25 16:09:17 +01:00
func (r *Request) Clean() {
r.cookies = nil
}