86272a3064
Co-authored-by: Ben Toogood <ben@micro.mu>
309 lines
8.9 KiB
Go
309 lines
8.9 KiB
Go
package store
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
|
|
"github.com/micro/go-micro/v2/auth"
|
|
memStore "github.com/micro/go-micro/v2/store/memory"
|
|
)
|
|
|
|
func TestGenerate(t *testing.T) {
|
|
s := memStore.NewStore()
|
|
a := NewAuth(auth.Store(s))
|
|
|
|
id := "test"
|
|
roles := []string{"admin"}
|
|
metadata := map[string]string{"foo": "bar"}
|
|
|
|
opts := []auth.GenerateOption{
|
|
auth.WithRoles(roles...),
|
|
auth.WithMetadata(metadata),
|
|
}
|
|
|
|
// generate the account
|
|
acc, err := a.Generate(id, opts...)
|
|
if err != nil {
|
|
t.Fatalf("Generate returned an error: %v, expected nil", err)
|
|
}
|
|
// validate the account attributes were set correctly
|
|
if acc.ID != id {
|
|
t.Errorf("Generate returned %v as the ID, expected %v", acc.ID, id)
|
|
}
|
|
if len(acc.Roles) != len(roles) {
|
|
t.Errorf("Generate returned %v as the roles, expected %v", acc.Roles, roles)
|
|
}
|
|
if len(acc.Metadata) != len(metadata) {
|
|
t.Errorf("Generate returned %v as the metadata, expected %v", acc.Metadata, metadata)
|
|
}
|
|
|
|
// validate the secret is valid
|
|
if _, err := a.Refresh(acc.Secret.Token); err != nil {
|
|
t.Errorf("Generate returned an invalid secret, error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestGrant(t *testing.T) {
|
|
s := memStore.NewStore()
|
|
a := NewAuth(auth.Store(s))
|
|
|
|
res := &auth.Resource{Type: "service", Name: "Test", Endpoint: "Foo.Bar"}
|
|
if err := a.Grant("users.*", res); err != nil {
|
|
t.Fatalf("Grant returned an error: %v, expected nil", err)
|
|
}
|
|
|
|
recs, err := s.List()
|
|
if err != nil {
|
|
t.Fatalf("Could not read from the store: %v", err)
|
|
}
|
|
if len(recs) != 1 {
|
|
t.Errorf("Expected Grant to write 1 record, actually wrote %v", len(recs))
|
|
}
|
|
}
|
|
|
|
func TestRevoke(t *testing.T) {
|
|
s := memStore.NewStore()
|
|
a := NewAuth(auth.Store(s))
|
|
|
|
res := &auth.Resource{Type: "service", Name: "Test", Endpoint: "Foo.Bar"}
|
|
if err := a.Grant("users.*", res); err != nil {
|
|
t.Fatalf("Grant returned an error: %v, expected nil", err)
|
|
}
|
|
|
|
recs, err := s.List()
|
|
if err != nil {
|
|
t.Fatalf("Could not read from the store: %v", err)
|
|
}
|
|
if len(recs) != 1 {
|
|
t.Fatalf("Expected Grant to write 1 record, actually wrote %v", len(recs))
|
|
}
|
|
|
|
if err := a.Revoke("users.*", res); err != nil {
|
|
t.Fatalf("Revoke returned an error: %v, expected nil", err)
|
|
}
|
|
|
|
recs, err = s.List()
|
|
if err != nil {
|
|
t.Fatalf("Could not read from the store: %v", err)
|
|
}
|
|
if len(recs) != 0 {
|
|
t.Fatalf("Expected Revoke to delete 1 record, actually deleted %v", 1-len(recs))
|
|
}
|
|
}
|
|
|
|
func TestInspect(t *testing.T) {
|
|
a := NewAuth()
|
|
|
|
t.Run("Valid Token", func(t *testing.T) {
|
|
id := "test"
|
|
roles := []string{"admin"}
|
|
metadata := map[string]string{"foo": "bar"}
|
|
|
|
opts := []auth.GenerateOption{
|
|
auth.WithRoles(roles...),
|
|
auth.WithMetadata(metadata),
|
|
}
|
|
|
|
// generate and inspect the token
|
|
acc, err := a.Generate("test", opts...)
|
|
if err != nil {
|
|
log.Fatalf("Generate returned an error: %v, expected nil", err)
|
|
}
|
|
tok, err := a.Refresh(acc.Secret.Token)
|
|
if err != nil {
|
|
log.Fatalf("Refresh returned an error: %v, expected nil", err)
|
|
}
|
|
acc2, err := a.Inspect(tok.Token)
|
|
if err != nil {
|
|
log.Fatalf("Inspect returned an error: %v, expected nil", err)
|
|
}
|
|
|
|
// validate the account attributes were retrieved correctly
|
|
if acc2.ID != id {
|
|
t.Errorf("Generate returned %v as the ID, expected %v", acc.ID, id)
|
|
}
|
|
if len(acc2.Roles) != len(roles) {
|
|
t.Errorf("Generate returned %v as the roles, expected %v", acc.Roles, roles)
|
|
}
|
|
if len(acc2.Metadata) != len(metadata) {
|
|
t.Errorf("Generate returned %v as the metadata, expected %v", acc.Metadata, metadata)
|
|
}
|
|
})
|
|
|
|
t.Run("Invalid Token", func(t *testing.T) {
|
|
_, err := a.Inspect("invalid token")
|
|
if err != auth.ErrInvalidToken {
|
|
t.Errorf("Inspect returned %v error, expected %v", err, auth.ErrInvalidToken)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestRefresh(t *testing.T) {
|
|
a := NewAuth()
|
|
|
|
t.Run("Valid Secret", func(t *testing.T) {
|
|
roles := []string{"admin"}
|
|
metadata := map[string]string{"foo": "bar"}
|
|
|
|
opts := []auth.GenerateOption{
|
|
auth.WithRoles(roles...),
|
|
auth.WithMetadata(metadata),
|
|
}
|
|
|
|
// generate the account
|
|
acc, err := a.Generate("test", opts...)
|
|
if err != nil {
|
|
log.Fatalf("Generate returned an error: %v, expected nil", err)
|
|
}
|
|
|
|
// refresh the token
|
|
tok, err := a.Refresh(acc.Secret.Token)
|
|
if err != nil {
|
|
log.Fatalf("Refresh returned an error: %v, expected nil", err)
|
|
}
|
|
|
|
// validate the account attributes were set correctly
|
|
if acc.ID != tok.Subject {
|
|
t.Errorf("Refresh returned %v as the ID, expected %v", acc.ID, tok.Subject)
|
|
}
|
|
if len(acc.Roles) != len(tok.Roles) {
|
|
t.Errorf("Refresh returned %v as the roles, expected %v", acc.Roles, tok.Subject)
|
|
}
|
|
if len(acc.Metadata) != len(tok.Metadata) {
|
|
t.Errorf("Refresh returned %v as the metadata, expected %v", acc.Metadata, tok.Metadata)
|
|
}
|
|
})
|
|
|
|
t.Run("Invalid Secret", func(t *testing.T) {
|
|
_, err := a.Refresh("invalid secret")
|
|
if err != auth.ErrInvalidToken {
|
|
t.Errorf("Inspect returned %v error, expected %v", err, auth.ErrInvalidToken)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestVerify(t *testing.T) {
|
|
testRules := []struct {
|
|
Role string
|
|
Resource *auth.Resource
|
|
}{
|
|
{
|
|
Role: "*",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.PublicList"},
|
|
},
|
|
{
|
|
Role: "*",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.web", Endpoint: "/foo"},
|
|
},
|
|
{
|
|
Role: "*",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.web", Endpoint: "/bar/*"},
|
|
},
|
|
{
|
|
Role: "user.*",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.List"},
|
|
},
|
|
{
|
|
Role: "user.developer",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.Update"},
|
|
},
|
|
{
|
|
Role: "admin",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.Delete"},
|
|
},
|
|
{
|
|
Role: "admin",
|
|
Resource: &auth.Resource{Type: "service", Name: "*", Endpoint: "*"},
|
|
},
|
|
}
|
|
|
|
a := NewAuth()
|
|
for _, r := range testRules {
|
|
if err := a.Grant(r.Role, r.Resource); err != nil {
|
|
t.Fatalf("Grant returned an error: %v, expected nil", err)
|
|
}
|
|
}
|
|
|
|
testTable := []struct {
|
|
Name string
|
|
Roles []string
|
|
Resource *auth.Resource
|
|
Error error
|
|
}{
|
|
{
|
|
Name: "An account with no roles accessing a public endpoint",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.PublicList"},
|
|
},
|
|
{
|
|
Name: "An account with no roles accessing a private endpoint",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.Update"},
|
|
Error: auth.ErrForbidden,
|
|
},
|
|
{
|
|
Name: "An account with the user role accessing a user* endpoint",
|
|
Roles: []string{"user"},
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.List"},
|
|
},
|
|
{
|
|
Name: "An account with the user role accessing a user.admin endpoint",
|
|
Roles: []string{"user"},
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.Delete"},
|
|
Error: auth.ErrForbidden,
|
|
},
|
|
{
|
|
Name: "An account with the developer role accessing a user.developer endpoint",
|
|
Roles: []string{"user.developer"},
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.Update"},
|
|
},
|
|
{
|
|
Name: "An account with the developer role accessing an admin endpoint",
|
|
Roles: []string{"user.developer"},
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.Delete"},
|
|
Error: auth.ErrForbidden,
|
|
},
|
|
{
|
|
Name: "An admin account accessing an admin endpoint",
|
|
Roles: []string{"admin"},
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.apps", Endpoint: "Apps.Delete"},
|
|
},
|
|
{
|
|
Name: "An admin account accessing a generic service endpoint",
|
|
Roles: []string{"admin"},
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.foo", Endpoint: "Foo.Bar"},
|
|
},
|
|
{
|
|
Name: "An admin account accessing an unauthorised endpoint",
|
|
Roles: []string{"admin"},
|
|
Resource: &auth.Resource{Type: "infra", Name: "go.micro.foo", Endpoint: "Foo.Bar"},
|
|
Error: auth.ErrForbidden,
|
|
},
|
|
{
|
|
Name: "A account with no roles accessing an unauthorised endpoint",
|
|
Resource: &auth.Resource{Type: "infra", Name: "go.micro.foo", Endpoint: "Foo.Bar"},
|
|
Error: auth.ErrForbidden,
|
|
},
|
|
{
|
|
Name: "Accessing a public web path",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.web", Endpoint: "/foo"},
|
|
},
|
|
{
|
|
Name: "Accessing a public web path with an invalid wildcard endpoint",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.web", Endpoint: "/foo/foo"},
|
|
Error: auth.ErrForbidden,
|
|
},
|
|
{
|
|
Name: "Accessing a public web path with wildcard endpoint",
|
|
Resource: &auth.Resource{Type: "service", Name: "go.micro.web", Endpoint: "/bar/foo"},
|
|
},
|
|
}
|
|
|
|
for _, tc := range testTable {
|
|
t.Run(tc.Name, func(t *testing.T) {
|
|
acc := &auth.Account{Roles: tc.Roles}
|
|
if err := a.Verify(acc, tc.Resource); err != tc.Error {
|
|
t.Errorf("Verify returned %v error, expected %v", err, tc.Error)
|
|
}
|
|
})
|
|
}
|
|
}
|