mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
3945fa68d1
We have to do the same on iris-contrib/examples, iris-contrib/middleware and e.t.c. Former-commit-id: 0860688158f374bc137bc934b81b26dcd0e10964
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kataras/iris/v12/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 *httptest.Expect, method, path, username string, status int) {
|
|
e.Request(method, path).WithBasicAuth(username, "password").Expect().Status(status)
|
|
}
|