forked from pocketbase/pocketbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added after hooks error response tests
- Loading branch information
1 parent
610a948
commit 939653e
Showing
5 changed files
with
478 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
package apis_test | ||
|
||
import ( | ||
"errors" | ||
"net/http" | ||
"strings" | ||
"testing" | ||
"time" | ||
|
||
"github.com/labstack/echo/v5" | ||
"github.com/pocketbase/dbx" | ||
"github.com/pocketbase/pocketbase/core" | ||
"github.com/pocketbase/pocketbase/daos" | ||
"github.com/pocketbase/pocketbase/models" | ||
"github.com/pocketbase/pocketbase/tests" | ||
|
@@ -89,6 +91,26 @@ func TestAdminAuthWithPassword(t *testing.T) { | |
"OnAdminAuthRequest": 1, | ||
}, | ||
}, | ||
{ | ||
Name: "OnAdminAfterAuthWithPasswordRequest error response", | ||
Method: http.MethodPost, | ||
Url: "/api/admins/auth-with-password", | ||
Body: strings.NewReader(`{"identity":"[email protected]","password":"1234567890"}`), | ||
RequestHeaders: map[string]string{ | ||
"Authorization": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6InN5d2JoZWNuaDQ2cmhtMCIsInR5cGUiOiJhZG1pbiIsImV4cCI6MjIwODk4MTYwMH0.han3_sG65zLddpcX2ic78qgy7FKecuPfOpFa8Dvi5Bg", | ||
}, | ||
BeforeTestFunc: func(t *testing.T, app *tests.TestApp, e *echo.Echo) { | ||
app.OnAdminAfterAuthWithPasswordRequest().Add(func(e *core.AdminAuthWithPasswordEvent) error { | ||
return errors.New("error") | ||
}) | ||
}, | ||
ExpectedStatus: 400, | ||
ExpectedContent: []string{`"data":{}`}, | ||
ExpectedEvents: map[string]int{ | ||
"OnAdminBeforeAuthWithPasswordRequest": 1, | ||
"OnAdminAfterAuthWithPasswordRequest": 1, | ||
}, | ||
}, | ||
} | ||
|
||
for _, scenario := range scenarios { | ||
|
@@ -224,6 +246,29 @@ func TestAdminConfirmPasswordReset(t *testing.T) { | |
"OnAdminAfterConfirmPasswordResetRequest": 1, | ||
}, | ||
}, | ||
{ | ||
Name: "OnAdminAfterConfirmPasswordResetRequest error response", | ||
Method: http.MethodPost, | ||
Url: "/api/admins/confirm-password-reset", | ||
Body: strings.NewReader(`{ | ||
"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6InN5d2JoZWNuaDQ2cmhtMCIsInR5cGUiOiJhZG1pbiIsImVtYWlsIjoidGVzdEBleGFtcGxlLmNvbSIsImV4cCI6MjIwODk4MTYwMH0.kwFEler6KSMKJNstuaSDvE1QnNdCta5qSnjaIQ0hhhc", | ||
"password":"1234567891", | ||
"passwordConfirm":"1234567891" | ||
}`), | ||
BeforeTestFunc: func(t *testing.T, app *tests.TestApp, e *echo.Echo) { | ||
app.OnAdminAfterConfirmPasswordResetRequest().Add(func(e *core.AdminConfirmPasswordResetEvent) error { | ||
return errors.New("error") | ||
}) | ||
}, | ||
ExpectedStatus: 400, | ||
ExpectedContent: []string{`"data":{}`}, | ||
ExpectedEvents: map[string]int{ | ||
"OnModelBeforeUpdate": 1, | ||
"OnModelAfterUpdate": 1, | ||
"OnAdminBeforeConfirmPasswordResetRequest": 1, | ||
"OnAdminAfterConfirmPasswordResetRequest": 1, | ||
}, | ||
}, | ||
} | ||
|
||
for _, scenario := range scenarios { | ||
|
@@ -278,6 +323,25 @@ func TestAdminRefresh(t *testing.T) { | |
"OnAdminAfterAuthRefreshRequest": 1, | ||
}, | ||
}, | ||
{ | ||
Name: "OnAdminAfterAuthRefreshRequest error response", | ||
Method: http.MethodPost, | ||
Url: "/api/admins/auth-refresh", | ||
RequestHeaders: map[string]string{ | ||
"Authorization": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6InN5d2JoZWNuaDQ2cmhtMCIsInR5cGUiOiJhZG1pbiIsImV4cCI6MjIwODk4NTI2MX0.M1m--VOqGyv0d23eeUc0r9xE8ZzHaYVmVFw1VZW6gT8", | ||
}, | ||
BeforeTestFunc: func(t *testing.T, app *tests.TestApp, e *echo.Echo) { | ||
app.OnAdminAfterAuthRefreshRequest().Add(func(e *core.AdminAuthRefreshEvent) error { | ||
return errors.New("error") | ||
}) | ||
}, | ||
ExpectedStatus: 400, | ||
ExpectedContent: []string{`"data":{}`}, | ||
ExpectedEvents: map[string]int{ | ||
"OnAdminBeforeAuthRefreshRequest": 1, | ||
"OnAdminAfterAuthRefreshRequest": 1, | ||
}, | ||
}, | ||
} | ||
|
||
for _, scenario := range scenarios { | ||
|
@@ -510,6 +574,27 @@ func TestAdminDelete(t *testing.T) { | |
"OnAdminBeforeDeleteRequest": 1, | ||
}, | ||
}, | ||
{ | ||
Name: "OnAdminAfterDeleteRequest error response", | ||
Method: http.MethodDelete, | ||
Url: "/api/admins/sbmbsdb40jyxf7h", | ||
RequestHeaders: map[string]string{ | ||
"Authorization": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6InN5d2JoZWNuaDQ2cmhtMCIsInR5cGUiOiJhZG1pbiIsImV4cCI6MjIwODk4NTI2MX0.M1m--VOqGyv0d23eeUc0r9xE8ZzHaYVmVFw1VZW6gT8", | ||
}, | ||
BeforeTestFunc: func(t *testing.T, app *tests.TestApp, e *echo.Echo) { | ||
app.OnAdminAfterDeleteRequest().Add(func(e *core.AdminDeleteEvent) error { | ||
return errors.New("error") | ||
}) | ||
}, | ||
ExpectedStatus: 400, | ||
ExpectedContent: []string{`"data":{}`}, | ||
ExpectedEvents: map[string]int{ | ||
"OnModelBeforeDelete": 1, | ||
"OnModelAfterDelete": 1, | ||
"OnAdminBeforeDeleteRequest": 1, | ||
"OnAdminAfterDeleteRequest": 1, | ||
}, | ||
}, | ||
} | ||
|
||
for _, scenario := range scenarios { | ||
|
@@ -637,6 +722,33 @@ func TestAdminCreate(t *testing.T) { | |
"OnAdminAfterCreateRequest": 1, | ||
}, | ||
}, | ||
{ | ||
Name: "OnAdminAfterCreateRequest error response", | ||
Method: http.MethodPost, | ||
Url: "/api/admins", | ||
Body: strings.NewReader(`{ | ||
"email":"[email protected]", | ||
"password":"1234567890", | ||
"passwordConfirm":"1234567890", | ||
"avatar":3 | ||
}`), | ||
RequestHeaders: map[string]string{ | ||
"Authorization": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6InN5d2JoZWNuaDQ2cmhtMCIsInR5cGUiOiJhZG1pbiIsImV4cCI6MjIwODk4NTI2MX0.M1m--VOqGyv0d23eeUc0r9xE8ZzHaYVmVFw1VZW6gT8", | ||
}, | ||
BeforeTestFunc: func(t *testing.T, app *tests.TestApp, e *echo.Echo) { | ||
app.OnAdminAfterCreateRequest().Add(func(e *core.AdminCreateEvent) error { | ||
return errors.New("error") | ||
}) | ||
}, | ||
ExpectedStatus: 400, | ||
ExpectedContent: []string{`"data":{}`}, | ||
ExpectedEvents: map[string]int{ | ||
"OnModelBeforeCreate": 1, | ||
"OnModelAfterCreate": 1, | ||
"OnAdminBeforeCreateRequest": 1, | ||
"OnAdminAfterCreateRequest": 1, | ||
}, | ||
}, | ||
} | ||
|
||
for _, scenario := range scenarios { | ||
|
@@ -729,6 +841,7 @@ func TestAdminUpdate(t *testing.T) { | |
}, | ||
}, | ||
{ | ||
Name: "authorized as admin + valid data", | ||
Method: http.MethodPatch, | ||
Url: "/api/admins/sbmbsdb40jyxf7h", | ||
Body: strings.NewReader(`{ | ||
|
@@ -759,6 +872,33 @@ func TestAdminUpdate(t *testing.T) { | |
"OnAdminAfterUpdateRequest": 1, | ||
}, | ||
}, | ||
{ | ||
Name: "OnAdminAfterUpdateRequest error response", | ||
Method: http.MethodPatch, | ||
Url: "/api/admins/sbmbsdb40jyxf7h", | ||
Body: strings.NewReader(`{ | ||
"email":"[email protected]", | ||
"password":"1234567891", | ||
"passwordConfirm":"1234567891", | ||
"avatar":5 | ||
}`), | ||
RequestHeaders: map[string]string{ | ||
"Authorization": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6InN5d2JoZWNuaDQ2cmhtMCIsInR5cGUiOiJhZG1pbiIsImV4cCI6MjIwODk4NTI2MX0.M1m--VOqGyv0d23eeUc0r9xE8ZzHaYVmVFw1VZW6gT8", | ||
}, | ||
BeforeTestFunc: func(t *testing.T, app *tests.TestApp, e *echo.Echo) { | ||
app.OnAdminAfterUpdateRequest().Add(func(e *core.AdminUpdateEvent) error { | ||
return errors.New("error") | ||
}) | ||
}, | ||
ExpectedStatus: 400, | ||
ExpectedContent: []string{`"data":{}`}, | ||
ExpectedEvents: map[string]int{ | ||
"OnModelBeforeUpdate": 1, | ||
"OnModelAfterUpdate": 1, | ||
"OnAdminBeforeUpdateRequest": 1, | ||
"OnAdminAfterUpdateRequest": 1, | ||
}, | ||
}, | ||
} | ||
|
||
for _, scenario := range scenarios { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.