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/web"
|
|
|
|
)
|
|
|
|
|
2021-06-01 15:30:05 +02:00
|
|
|
var (
|
2021-06-01 17:47:37 +02:00
|
|
|
// DBConnection - url to database on setting up default WebService for webtest
|
2021-06-01 15:30:05 +02:00
|
|
|
DBConnection = "user=root password=root dbname=defaultdb host=localhost port=26257 sslmode=disable"
|
|
|
|
)
|
|
|
|
|
2021-06-01 10:51:35 +02:00
|
|
|
type testServer struct {
|
2021-06-22 20:44:24 +02:00
|
|
|
DB *database.Database
|
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{
|
2021-06-01 15:30:05 +02:00
|
|
|
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)
|
|
|
|
|
|
|
|
ws := &web.Service{
|
|
|
|
DB: dbConfig.DB,
|
|
|
|
}
|
|
|
|
ws.Session.Name = "mysession"
|
|
|
|
ws.Session.Secret = "hidden"
|
|
|
|
|
|
|
|
r := gin.Default()
|
|
|
|
ws.LoadSession(r)
|
|
|
|
ws.Bind(r)
|
|
|
|
return &testServer{
|
2021-06-22 20:44:24 +02:00
|
|
|
DB: &dbConfig,
|
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
|
2021-06-22 20:44:24 +02:00
|
|
|
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
|
|
|
|
func (s *testServer) Request(method, url string, body interface{}, expectCode int, jsonObj interface{}) {
|
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-01 17:47:37 +02:00
|
|
|
s.assert.Nil(err, "no request created")
|
2021-06-01 10:51:35 +02:00
|
|
|
jsonBody = bytes.NewBuffer(jsonBodyArray)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
req, err := http.NewRequest(method, url, jsonBody)
|
2021-06-01 17:47:37 +02:00
|
|
|
s.assert.Nil(err, "no request created")
|
|
|
|
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 {
|
|
|
|
fmt.Printf("wrong status code, body:%v\n", w.Body)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if jsonObj != nil {
|
|
|
|
// fetch JSON
|
|
|
|
err = json.NewDecoder(w.Body).Decode(jsonObj)
|
2021-06-01 17:47:37 +02:00
|
|
|
s.assert.Nil(err, "decode json")
|
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-01 17:49:13 +02:00
|
|
|
// Login to API by send request
|
|
|
|
func (s *testServer) Login(login Login) {
|
2021-06-01 10:51:35 +02:00
|
|
|
// POST: correct login
|
2021-06-01 17:49:13 +02:00
|
|
|
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
|
|
|
|
func (s *testServer) TestLogin() {
|
|
|
|
s.Login(Login{
|
2021-06-01 10:51:35 +02:00
|
|
|
Username: "admin",
|
|
|
|
Password: "CHANGEME",
|
|
|
|
})
|
|
|
|
}
|