More API tests and removal of dead code

This commit is contained in:
Joona Hoikkala
2016-11-24 01:37:24 +02:00
parent 41243793be
commit 2406bf8d44
3 changed files with 62 additions and 22 deletions

View File

@ -1,14 +1,16 @@
package main
import (
"errors"
"github.com/gavv/httpexpect"
"github.com/kataras/iris"
"github.com/kataras/iris/httptest"
"github.com/op/go-logging"
"gopkg.in/DATA-DOG/go-sqlmock.v1"
"testing"
)
func SetupIris(t *testing.T, debug bool) *httpexpect.Expect {
func SetupIris(t *testing.T, debug bool, noauth bool) *httpexpect.Expect {
iris.ResetDefault()
var dbcfg = dbsettings{
Engine: "sqlite3",
@ -33,14 +35,18 @@ func SetupIris(t *testing.T, debug bool) *httpexpect.Expect {
var ForceAuth = authMiddleware{}
iris.Get("/register", webRegisterGet)
iris.Post("/register", webRegisterPost)
iris.Post("/update", ForceAuth.Serve, webUpdatePost)
if noauth {
iris.Post("/update", webUpdatePost)
} else {
iris.Post("/update", ForceAuth.Serve, webUpdatePost)
}
httptestcfg := httptest.DefaultConfiguration()
httptestcfg.Debug = debug
return httptest.New(iris.Default, t, httptestcfg)
}
func TestApiRegister(t *testing.T) {
e := SetupIris(t, false)
e := SetupIris(t, false, false)
defer DB.DB.Close()
e.GET("/register").Expect().
Status(iris.StatusCreated).
@ -60,8 +66,22 @@ func TestApiRegister(t *testing.T) {
NotContainsKey("error")
}
func TestApiRegisterWithMockDB(t *testing.T) {
e := SetupIris(t, false, false)
DB.DB.Close()
db, mock, _ := sqlmock.New()
DB.DB = db
defer DB.DB.Close()
mock.ExpectBegin()
mock.ExpectPrepare("INSERT INTO records").WillReturnError(errors.New("error"))
e.GET("/register").Expect().
Status(iris.StatusInternalServerError).
JSON().Object().
ContainsKey("error")
}
func TestApiUpdateWithoutCredentials(t *testing.T) {
e := SetupIris(t, false)
e := SetupIris(t, false, false)
defer DB.DB.Close()
e.POST("/update").Expect().
Status(iris.StatusUnauthorized).
@ -77,7 +97,7 @@ func TestApiUpdateWithCredentials(t *testing.T) {
"subdomain": "",
"txt": ""}
e := SetupIris(t, false)
e := SetupIris(t, false, false)
defer DB.DB.Close()
newUser, err := DB.Register()
if err != nil {
@ -97,19 +117,43 @@ func TestApiUpdateWithCredentials(t *testing.T) {
ContainsKey("txt").
NotContainsKey("error").
ValueEqual("txt", validTxtData)
}
func TestApiUpdateWithCredentialsMockDB(t *testing.T) {
validTxtData := "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
updateJSON := map[string]interface{}{
"subdomain": "",
"txt": ""}
// Valid data
updateJSON["subdomain"] = "a097455b-52cc-4569-90c8-7a4b97c6eba8"
updateJSON["txt"] = validTxtData
e := SetupIris(t, false, true)
DB.DB.Close()
db, mock, _ := sqlmock.New()
DB.DB = db
defer DB.DB.Close()
mock.ExpectBegin()
mock.ExpectPrepare("UPDATE records").WillReturnError(errors.New("error"))
e.POST("/update").
WithJSON(updateJSON).
Expect().
Status(iris.StatusInternalServerError).
JSON().Object().
ContainsKey("error")
}
func TestApiManyUpdateWithCredentials(t *testing.T) {
// TODO: transfer to using httpexpect builder
// If test fails and more debuf info is needed, use SetupIris(t, true)
// If test fails and more debuf info is needed, use SetupIris(t, true, false)
validTxtData := "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
updateJSON := map[string]interface{}{
"subdomain": "",
"txt": ""}
e := SetupIris(t, false)
e := SetupIris(t, true, false)
defer DB.DB.Close()
newUser, err := DB.Register()
if err != nil {
@ -119,7 +163,7 @@ func TestApiManyUpdateWithCredentials(t *testing.T) {
user string
pass string
subdomain string
txt string
txt interface{}
status int
}{
{"non-uuid-user", "tooshortpass", "non-uuid-subdomain", validTxtData, 401},
@ -127,6 +171,7 @@ func TestApiManyUpdateWithCredentials(t *testing.T) {
{"a097455b-52cc-4569-90c8-7a4b97c6eba8", "LongEnoughPassButNoUserExists___________", "bb97455b-52cc-4569-90c8-7a4b97c6eba8", validTxtData, 401},
{newUser.Username.String(), newUser.Password, "a097455b-52cc-4569-90c8-7a4b97c6eba8", validTxtData, 401},
{newUser.Username.String(), newUser.Password, newUser.Subdomain, "tooshortfortxt", 400},
{newUser.Username.String(), newUser.Password, newUser.Subdomain, 1234567890, 400},
{newUser.Username.String(), newUser.Password, newUser.Subdomain, validTxtData, 200},
} {
updateJSON = map[string]interface{}{