mirror of https://github.com/hashicorp/consul
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
286 lines
5.3 KiB
286 lines
5.3 KiB
package acl |
|
|
|
import ( |
|
"testing" |
|
) |
|
|
|
func TestRootACL(t *testing.T) { |
|
if RootACL("allow") != AllowAll() { |
|
t.Fatalf("Bad root") |
|
} |
|
if RootACL("deny") != DenyAll() { |
|
t.Fatalf("Bad root") |
|
} |
|
if RootACL("manage") != ManageAll() { |
|
t.Fatalf("Bad root") |
|
} |
|
if RootACL("foo") != nil { |
|
t.Fatalf("bad root") |
|
} |
|
} |
|
|
|
func TestStaticACL(t *testing.T) { |
|
all := AllowAll() |
|
if _, ok := all.(*StaticACL); !ok { |
|
t.Fatalf("expected static") |
|
} |
|
|
|
none := DenyAll() |
|
if _, ok := none.(*StaticACL); !ok { |
|
t.Fatalf("expected static") |
|
} |
|
|
|
manage := ManageAll() |
|
if _, ok := none.(*StaticACL); !ok { |
|
t.Fatalf("expected static") |
|
} |
|
|
|
if !all.KeyRead("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if !all.KeyWrite("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if !all.ServiceRead("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if !all.ServiceWrite("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if all.ACLList() { |
|
t.Fatalf("should not allow") |
|
} |
|
if all.ACLModify() { |
|
t.Fatalf("should not allow") |
|
} |
|
|
|
if none.KeyRead("foobar") { |
|
t.Fatalf("should not allow") |
|
} |
|
if none.KeyWrite("foobar") { |
|
t.Fatalf("should not allow") |
|
} |
|
if none.ServiceRead("foobar") { |
|
t.Fatalf("should not allow") |
|
} |
|
if none.ServiceWrite("foobar") { |
|
t.Fatalf("should not allow") |
|
} |
|
if none.ACLList() { |
|
t.Fatalf("should not noneow") |
|
} |
|
if none.ACLModify() { |
|
t.Fatalf("should not noneow") |
|
} |
|
|
|
if !manage.KeyRead("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if !manage.KeyWrite("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if !manage.ServiceRead("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if !manage.ServiceWrite("foobar") { |
|
t.Fatalf("should allow") |
|
} |
|
if !manage.ACLList() { |
|
t.Fatalf("should allow") |
|
} |
|
if !manage.ACLModify() { |
|
t.Fatalf("should allow") |
|
} |
|
} |
|
|
|
func TestPolicyACL(t *testing.T) { |
|
all := AllowAll() |
|
policy := &Policy{ |
|
Keys: []*KeyPolicy{ |
|
&KeyPolicy{ |
|
Prefix: "foo/", |
|
Policy: KeyPolicyWrite, |
|
}, |
|
&KeyPolicy{ |
|
Prefix: "foo/priv/", |
|
Policy: KeyPolicyDeny, |
|
}, |
|
&KeyPolicy{ |
|
Prefix: "bar/", |
|
Policy: KeyPolicyDeny, |
|
}, |
|
&KeyPolicy{ |
|
Prefix: "zip/", |
|
Policy: KeyPolicyRead, |
|
}, |
|
}, |
|
Services: []*ServicePolicy{ |
|
&ServicePolicy{ |
|
Name: "", |
|
Policy: ServicePolicyWrite, |
|
}, |
|
&ServicePolicy{ |
|
Name: "foo", |
|
Policy: ServicePolicyRead, |
|
}, |
|
&ServicePolicy{ |
|
Name: "bar", |
|
Policy: ServicePolicyDeny, |
|
}, |
|
}, |
|
} |
|
acl, err := New(all, policy) |
|
if err != nil { |
|
t.Fatalf("err: %v", err) |
|
} |
|
|
|
type keycase struct { |
|
inp string |
|
read bool |
|
write bool |
|
writePrefix bool |
|
} |
|
cases := []keycase{ |
|
{"other", true, true, true}, |
|
{"foo/test", true, true, true}, |
|
{"foo/priv/test", false, false, false}, |
|
{"bar/any", false, false, false}, |
|
{"zip/test", true, false, false}, |
|
{"foo/", true, true, false}, |
|
{"", true, true, false}, |
|
} |
|
for _, c := range cases { |
|
if c.read != acl.KeyRead(c.inp) { |
|
t.Fatalf("Read fail: %#v", c) |
|
} |
|
if c.write != acl.KeyWrite(c.inp) { |
|
t.Fatalf("Write fail: %#v", c) |
|
} |
|
if c.writePrefix != acl.KeyWritePrefix(c.inp) { |
|
t.Fatalf("Write prefix fail: %#v", c) |
|
} |
|
} |
|
|
|
// Test the services |
|
type servicecase struct { |
|
inp string |
|
read bool |
|
write bool |
|
} |
|
scases := []servicecase{ |
|
{"other", true, true}, |
|
{"foo", true, false}, |
|
{"bar", false, false}, |
|
} |
|
for _, c := range scases { |
|
if c.read != acl.ServiceRead(c.inp) { |
|
t.Fatalf("Read fail: %#v", c) |
|
} |
|
if c.write != acl.ServiceWrite(c.inp) { |
|
t.Fatalf("Write fail: %#v", c) |
|
} |
|
} |
|
} |
|
|
|
func TestPolicyACL_Parent(t *testing.T) { |
|
deny := DenyAll() |
|
policyRoot := &Policy{ |
|
Keys: []*KeyPolicy{ |
|
&KeyPolicy{ |
|
Prefix: "foo/", |
|
Policy: KeyPolicyWrite, |
|
}, |
|
&KeyPolicy{ |
|
Prefix: "bar/", |
|
Policy: KeyPolicyRead, |
|
}, |
|
}, |
|
Services: []*ServicePolicy{ |
|
&ServicePolicy{ |
|
Name: "other", |
|
Policy: ServicePolicyWrite, |
|
}, |
|
&ServicePolicy{ |
|
Name: "foo", |
|
Policy: ServicePolicyRead, |
|
}, |
|
}, |
|
} |
|
root, err := New(deny, policyRoot) |
|
if err != nil { |
|
t.Fatalf("err: %v", err) |
|
} |
|
|
|
policy := &Policy{ |
|
Keys: []*KeyPolicy{ |
|
&KeyPolicy{ |
|
Prefix: "foo/priv/", |
|
Policy: KeyPolicyRead, |
|
}, |
|
&KeyPolicy{ |
|
Prefix: "bar/", |
|
Policy: KeyPolicyDeny, |
|
}, |
|
&KeyPolicy{ |
|
Prefix: "zip/", |
|
Policy: KeyPolicyRead, |
|
}, |
|
}, |
|
Services: []*ServicePolicy{ |
|
&ServicePolicy{ |
|
Name: "bar", |
|
Policy: ServicePolicyDeny, |
|
}, |
|
}, |
|
} |
|
acl, err := New(root, policy) |
|
if err != nil { |
|
t.Fatalf("err: %v", err) |
|
} |
|
|
|
type keycase struct { |
|
inp string |
|
read bool |
|
write bool |
|
writePrefix bool |
|
} |
|
cases := []keycase{ |
|
{"other", false, false, false}, |
|
{"foo/test", true, true, true}, |
|
{"foo/priv/test", true, false, false}, |
|
{"bar/any", false, false, false}, |
|
{"zip/test", true, false, false}, |
|
} |
|
for _, c := range cases { |
|
if c.read != acl.KeyRead(c.inp) { |
|
t.Fatalf("Read fail: %#v", c) |
|
} |
|
if c.write != acl.KeyWrite(c.inp) { |
|
t.Fatalf("Write fail: %#v", c) |
|
} |
|
if c.writePrefix != acl.KeyWritePrefix(c.inp) { |
|
t.Fatalf("Write prefix fail: %#v", c) |
|
} |
|
} |
|
|
|
// Test the services |
|
type servicecase struct { |
|
inp string |
|
read bool |
|
write bool |
|
} |
|
scases := []servicecase{ |
|
{"fail", false, false}, |
|
{"other", true, true}, |
|
{"foo", true, false}, |
|
{"bar", false, false}, |
|
} |
|
for _, c := range scases { |
|
if c.read != acl.ServiceRead(c.inp) { |
|
t.Fatalf("Read fail: %#v", c) |
|
} |
|
if c.write != acl.ServiceWrite(c.inp) { |
|
t.Fatalf("Write fail: %#v", c) |
|
} |
|
} |
|
}
|
|
|