golang-lib/web/webtest/main.go

155 lines
3.2 KiB
Go
Raw Normal View History

2021-06-01 10:51:35 +02:00
package webtest
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"net/http/httptest"
"strings"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
"dev.sum7.eu/genofire/golang-lib/database"
"dev.sum7.eu/genofire/golang-lib/mailer"
2021-06-01 10:51:35 +02:00
"dev.sum7.eu/genofire/golang-lib/web"
)
var (
2021-06-01 17:47:37 +02:00
// DBConnection - url to database on setting up default WebService for webtest
DBConnection = "user=root password=root dbname=defaultdb host=localhost port=26257 sslmode=disable"
)
2021-06-01 10:51:35 +02:00
type testServer struct {
DB *database.Database
Mails chan *mailer.TestingMail
Close func()
2021-06-01 10:51:35 +02:00
gin *gin.Engine
ws *web.Service
assert *assert.Assertions
lastCookies []*http.Cookie
}
2021-06-01 17:47:37 +02:00
// Login Request format (maybe just internal usage)
2021-06-01 10:51:35 +02:00
type Login struct {
Username string `json:"username"`
Password string `json:"password"`
}
2021-06-01 17:47:37 +02:00
// New starts WebService for testing
2021-06-01 10:51:35 +02:00
func New(assert *assert.Assertions) *testServer {
// db setup
dbConfig := database.Database{
Connection: DBConnection,
2021-06-01 10:51:35 +02:00
Testdata: true,
Debug: false,
LogLevel: 0,
}
err := dbConfig.Run()
if err != nil && err != database.ErrNothingToMigrate {
fmt.Println(err.Error())
assert.Nil(err)
}
assert.NotNil(dbConfig.DB)
// api setup
gin.EnableJsonDecoderDisallowUnknownFields()
gin.SetMode(gin.TestMode)
mock, mail := mailer.NewFakeServer()
err = mail.Setup()
assert.Nil(err)
2021-06-01 10:51:35 +02:00
ws := &web.Service{
DB: dbConfig.DB,
Mailer: mail,
2021-06-01 10:51:35 +02:00
}
ws.Session.Name = "mysession"
ws.Session.Secret = "hidden"
r := gin.Default()
ws.LoadSession(r)
ws.Bind(r)
return &testServer{
DB: &dbConfig,
Mails: mock.Mails,
Close: mock.Close,
2021-06-01 10:51:35 +02:00
gin: r,
ws: ws,
assert: assert,
}
}
2021-06-01 17:47:37 +02:00
2021-06-15 17:58:02 +02:00
// DatabaseForget, to run a test without a database
func (s *testServer) DatabaseForget() {
s.ws.DB = nil
s.DB = nil
2021-06-01 10:51:35 +02:00
}
2021-06-01 17:47:37 +02:00
// Request sends a request to webtest WebService
2021-06-28 12:14:20 +02:00
func (s *testServer) Request(method, url string, body interface{}, expectCode int, jsonObj interface{}) error {
2021-06-01 10:51:35 +02:00
var jsonBody io.Reader
if body != nil {
if strBody, ok := body.(string); ok {
jsonBody = strings.NewReader(strBody)
} else {
jsonBodyArray, err := json.Marshal(body)
2021-06-28 12:14:20 +02:00
if err != nil {
return err
}
2021-06-01 10:51:35 +02:00
jsonBody = bytes.NewBuffer(jsonBodyArray)
}
}
req, err := http.NewRequest(method, url, jsonBody)
2021-06-28 12:14:20 +02:00
if err != nil {
return err
}
2021-06-01 17:47:37 +02:00
if len(s.lastCookies) > 0 {
for _, c := range s.lastCookies {
2021-06-01 10:51:35 +02:00
req.AddCookie(c)
}
}
w := httptest.NewRecorder()
2021-06-01 17:47:37 +02:00
s.gin.ServeHTTP(w, req)
2021-06-01 10:51:35 +02:00
// valid statusCode
2021-06-01 17:47:37 +02:00
s.assert.Equal(expectCode, w.Code, "expected http status code")
2021-06-01 10:51:35 +02:00
if expectCode != w.Code {
2021-06-28 12:14:20 +02:00
return fmt.Errorf("wrong status code, body: %v", w.Body)
2021-06-01 10:51:35 +02:00
}
if jsonObj != nil {
// fetch JSON
err = json.NewDecoder(w.Body).Decode(jsonObj)
2021-06-28 12:14:20 +02:00
if err != nil {
return err
}
2021-06-01 10:51:35 +02:00
}
result := w.Result()
if result != nil {
cookies := result.Cookies()
if len(cookies) > 0 {
2021-06-01 17:47:37 +02:00
s.lastCookies = cookies
2021-06-01 10:51:35 +02:00
}
}
2021-06-28 12:14:20 +02:00
return nil
2021-06-01 10:51:35 +02:00
}
2021-06-01 17:49:13 +02:00
// Login to API by send request
2021-06-28 12:14:20 +02:00
func (s *testServer) Login(login Login) error {
2021-06-01 10:51:35 +02:00
// POST: correct login
2021-06-28 12:14:20 +02:00
return s.Request(http.MethodPost, "/api/v1/auth/login", &login, http.StatusOK, nil)
2021-06-01 10:51:35 +02:00
}
2021-06-01 17:49:13 +02:00
// TestLogin to API by default login data
2021-06-28 12:14:20 +02:00
func (s *testServer) TestLogin() error {
return s.Login(Login{
2021-06-01 10:51:35 +02:00
Username: "admin",
Password: "CHANGEME",
})
}