mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-25 08:23:13 +01:00
refactor: remove pocketbase (#1138)
This commit is contained in:
151
testing/api_file_test.go
Normal file
151
testing/api_file_test.go
Normal file
@@ -0,0 +1,151 @@
|
||||
package testing
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"testing"
|
||||
|
||||
"github.com/SecurityBrewery/catalyst/app/data"
|
||||
)
|
||||
|
||||
func TestFilesCollection(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
testSets := []catalystTest{
|
||||
{
|
||||
baseTest: baseTest{
|
||||
Name: "ListFiles",
|
||||
Method: http.MethodGet,
|
||||
URL: "/api/files?ticket=test-ticket",
|
||||
},
|
||||
userTests: []userTest{
|
||||
{
|
||||
Name: "Unauthorized",
|
||||
ExpectedStatus: http.StatusUnauthorized,
|
||||
ExpectedContent: []string{`"invalid bearer token"`},
|
||||
},
|
||||
{
|
||||
Name: "Analyst",
|
||||
AuthRecord: data.AnalystEmail,
|
||||
ExpectedStatus: http.StatusOK,
|
||||
ExpectedHeaders: map[string]string{"X-Total-Count": "1"},
|
||||
ExpectedEvents: map[string]int{},
|
||||
},
|
||||
{
|
||||
Name: "Admin",
|
||||
Admin: data.AdminEmail,
|
||||
ExpectedStatus: http.StatusOK,
|
||||
ExpectedHeaders: map[string]string{"X-Total-Count": "1"},
|
||||
ExpectedEvents: map[string]int{},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
baseTest: baseTest{
|
||||
Name: "CreateFile",
|
||||
Method: http.MethodPost,
|
||||
RequestHeaders: map[string]string{"Content-Type": "application/json"},
|
||||
URL: "/api/files",
|
||||
Body: s(map[string]any{
|
||||
"ticket": "test-ticket",
|
||||
"name": "new.txt",
|
||||
"size": 3,
|
||||
"blob": "data:text/plain;base64,bmV3",
|
||||
}),
|
||||
},
|
||||
userTests: []userTest{
|
||||
{
|
||||
Name: "Unauthorized",
|
||||
ExpectedStatus: http.StatusUnauthorized,
|
||||
ExpectedContent: []string{`"invalid bearer token"`},
|
||||
},
|
||||
{
|
||||
Name: "Analyst",
|
||||
AuthRecord: data.AnalystEmail,
|
||||
ExpectedStatus: http.StatusUnauthorized,
|
||||
ExpectedContent: []string{`"missing required scopes"`},
|
||||
},
|
||||
{
|
||||
Name: "Admin",
|
||||
Admin: data.AdminEmail,
|
||||
ExpectedStatus: http.StatusOK,
|
||||
ExpectedContent: []string{`"ticket":"test-ticket"`},
|
||||
ExpectedEvents: map[string]int{
|
||||
"OnRecordAfterCreateRequest": 1,
|
||||
"OnRecordBeforeCreateRequest": 1,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
baseTest: baseTest{
|
||||
Name: "GetFile",
|
||||
Method: http.MethodGet,
|
||||
URL: "/api/files/b_test_file",
|
||||
},
|
||||
userTests: []userTest{
|
||||
{
|
||||
Name: "Unauthorized",
|
||||
ExpectedStatus: http.StatusUnauthorized,
|
||||
ExpectedContent: []string{`"invalid bearer token"`},
|
||||
},
|
||||
{
|
||||
Name: "Analyst",
|
||||
AuthRecord: data.AnalystEmail,
|
||||
ExpectedStatus: http.StatusOK,
|
||||
ExpectedContent: []string{`"id":"b_test_file"`},
|
||||
ExpectedEvents: map[string]int{"OnRecordViewRequest": 1},
|
||||
},
|
||||
{
|
||||
Name: "Admin",
|
||||
Admin: data.AdminEmail,
|
||||
ExpectedStatus: http.StatusOK,
|
||||
ExpectedContent: []string{`"id":"b_test_file"`},
|
||||
ExpectedEvents: map[string]int{"OnRecordViewRequest": 1},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
baseTest: baseTest{
|
||||
Name: "DeleteFile",
|
||||
Method: http.MethodDelete,
|
||||
URL: "/api/files/b_test_file",
|
||||
},
|
||||
userTests: []userTest{
|
||||
{
|
||||
Name: "Unauthorized",
|
||||
ExpectedStatus: http.StatusUnauthorized,
|
||||
ExpectedContent: []string{`"invalid bearer token"`},
|
||||
},
|
||||
{
|
||||
Name: "Analyst",
|
||||
AuthRecord: data.AnalystEmail,
|
||||
ExpectedStatus: http.StatusUnauthorized,
|
||||
ExpectedContent: []string{`"missing required scopes"`},
|
||||
},
|
||||
{
|
||||
Name: "Admin",
|
||||
Admin: data.AdminEmail,
|
||||
ExpectedStatus: http.StatusNoContent,
|
||||
ExpectedEvents: map[string]int{
|
||||
"OnRecordAfterDeleteRequest": 1,
|
||||
"OnRecordBeforeDeleteRequest": 1,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
for _, testSet := range testSets {
|
||||
t.Run(testSet.baseTest.Name, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
for _, userTest := range testSet.userTests {
|
||||
t.Run(userTest.Name, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
runMatrixTest(t, testSet.baseTest, userTest)
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user