84 lines
1.7 KiB
Go
84 lines
1.7 KiB
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
|
package acl
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/consul/agent"
|
||
|
"github.com/hashicorp/consul/agent/structs"
|
||
|
"github.com/hashicorp/consul/testrpc"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func Test_GetPolicyIDByName_Builtins(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
|
||
|
a := agent.StartTestAgent(t,
|
||
|
agent.TestAgent{
|
||
|
LogOutput: io.Discard,
|
||
|
HCL: `
|
||
|
primary_datacenter = "dc1"
|
||
|
acl {
|
||
|
enabled = true
|
||
|
tokens {
|
||
|
initial_management = "root"
|
||
|
}
|
||
|
}
|
||
|
`,
|
||
|
},
|
||
|
)
|
||
|
|
||
|
defer a.Shutdown()
|
||
|
testrpc.WaitForTestAgent(t, a.RPC, "dc1", testrpc.WithToken("root"))
|
||
|
|
||
|
client := a.Client()
|
||
|
client.AddHeader("X-Consul-Token", "root")
|
||
|
|
||
|
for _, policy := range structs.ACLBuiltinPolicies {
|
||
|
name := fmt.Sprintf("%s policy", policy.Name)
|
||
|
t.Run(name, func(t *testing.T) {
|
||
|
id, err := GetPolicyIDByName(client, policy.Name)
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, policy.ID, id)
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_GetPolicyIDFromPartial_Builtins(t *testing.T) {
|
||
|
t.Parallel()
|
||
|
|
||
|
a := agent.StartTestAgent(t,
|
||
|
agent.TestAgent{
|
||
|
LogOutput: io.Discard,
|
||
|
HCL: `
|
||
|
primary_datacenter = "dc1"
|
||
|
acl {
|
||
|
enabled = true
|
||
|
tokens {
|
||
|
initial_management = "root"
|
||
|
}
|
||
|
}
|
||
|
`,
|
||
|
},
|
||
|
)
|
||
|
|
||
|
defer a.Shutdown()
|
||
|
testrpc.WaitForTestAgent(t, a.RPC, "dc1", testrpc.WithToken("root"))
|
||
|
|
||
|
client := a.Client()
|
||
|
client.AddHeader("X-Consul-Token", "root")
|
||
|
|
||
|
for _, policy := range structs.ACLBuiltinPolicies {
|
||
|
name := fmt.Sprintf("%s policy", policy.Name)
|
||
|
t.Run(name, func(t *testing.T) {
|
||
|
id, err := GetPolicyIDFromPartial(client, policy.Name)
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, policy.ID, id)
|
||
|
})
|
||
|
}
|
||
|
}
|