mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 22:06:20 +00:00
agent: disable ACLs for RPC client tests
This commit is contained in:
parent
79ac4f3512
commit
7aa8539c10
@ -325,6 +325,7 @@ func TestRPCClientListKeys(t *testing.T) {
|
|||||||
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
||||||
c.EncryptKey = key1
|
c.EncryptKey = key1
|
||||||
c.Datacenter = "dc1"
|
c.Datacenter = "dc1"
|
||||||
|
c.ACLDatacenter = ""
|
||||||
})
|
})
|
||||||
defer p1.Close()
|
defer p1.Close()
|
||||||
|
|
||||||
@ -343,6 +344,7 @@ func TestRPCClientInstallKey(t *testing.T) {
|
|||||||
key2 := "xAEZ3uVHRMZD9GcYMZaRQw=="
|
key2 := "xAEZ3uVHRMZD9GcYMZaRQw=="
|
||||||
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
||||||
c.EncryptKey = key1
|
c.EncryptKey = key1
|
||||||
|
c.ACLDatacenter = ""
|
||||||
})
|
})
|
||||||
defer p1.Close()
|
defer p1.Close()
|
||||||
|
|
||||||
@ -387,6 +389,7 @@ func TestRPCClientUseKey(t *testing.T) {
|
|||||||
key2 := "xAEZ3uVHRMZD9GcYMZaRQw=="
|
key2 := "xAEZ3uVHRMZD9GcYMZaRQw=="
|
||||||
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
||||||
c.EncryptKey = key1
|
c.EncryptKey = key1
|
||||||
|
c.ACLDatacenter = ""
|
||||||
})
|
})
|
||||||
defer p1.Close()
|
defer p1.Close()
|
||||||
|
|
||||||
@ -434,7 +437,9 @@ func TestRPCClientUseKey(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestRPCClientKeyOperation_encryptionDisabled(t *testing.T) {
|
func TestRPCClientKeyOperation_encryptionDisabled(t *testing.T) {
|
||||||
p1 := testRPCClient(t)
|
p1 := testRPCClientWithConfig(t, func(c *Config) {
|
||||||
|
c.ACLDatacenter = ""
|
||||||
|
})
|
||||||
defer p1.Close()
|
defer p1.Close()
|
||||||
|
|
||||||
r, err := p1.client.ListKeys("")
|
r, err := p1.client.ListKeys("")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user