mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
742ad6db72
Former-commit-id: 20d22c163f8063673536127caec4eecfb3561226
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/iris-contrib/httpexpect"
|
|
"github.com/kataras/iris/httptest"
|
|
)
|
|
|
|
func TestCasbinMiddleware(t *testing.T) {
|
|
app := newApp()
|
|
e := httptest.New(t, app, httptest.Debug(false))
|
|
|
|
type ttcasbin struct {
|
|
username string
|
|
path string
|
|
method string
|
|
status int
|
|
}
|
|
|
|
tt := []ttcasbin{
|
|
{"alice", "/dataset1/resource1", "GET", 200},
|
|
{"alice", "/dataset1/resource1", "POST", 200},
|
|
{"alice", "/dataset1/resource2", "GET", 200},
|
|
{"alice", "/dataset1/resource2", "POST", 404},
|
|
|
|
{"bob", "/dataset2/resource1", "GET", 200},
|
|
{"bob", "/dataset2/resource1", "POST", 200},
|
|
{"bob", "/dataset2/resource1", "DELETE", 200},
|
|
{"bob", "/dataset2/resource2", "GET", 200},
|
|
{"bob", "/dataset2/resource2", "POST", 404},
|
|
{"bob", "/dataset2/resource2", "DELETE", 404},
|
|
|
|
{"bob", "/dataset2/folder1/item1", "GET", 404},
|
|
{"bob", "/dataset2/folder1/item1", "POST", 200},
|
|
{"bob", "/dataset2/folder1/item1", "DELETE", 404},
|
|
{"bob", "/dataset2/folder1/item2", "GET", 404},
|
|
{"bob", "/dataset2/folder1/item2", "POST", 200},
|
|
{"bob", "/dataset2/folder1/item2", "DELETE", 404},
|
|
}
|
|
|
|
for _, tt := range tt {
|
|
check(e, tt.method, tt.path, tt.username, tt.status)
|
|
}
|
|
}
|
|
|
|
func check(e *httpexpect.Expect, method, path, username string, status int) {
|
|
e.Request(method, path).WithBasicAuth(username, "password").Expect().Status(status)
|
|
}
|