2018-10-24 14:24:29 +00:00
|
|
|
package tokenclone
|
|
|
|
|
|
|
|
import (
|
2020-02-15 15:06:05 +00:00
|
|
|
"encoding/json"
|
2018-10-24 14:24:29 +00:00
|
|
|
"regexp"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
2020-02-15 15:06:05 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2018-10-24 14:24:29 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2021-12-09 20:58:45 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent"
|
|
|
|
"github.com/hashicorp/consul/api"
|
|
|
|
"github.com/hashicorp/consul/testrpc"
|
2018-10-24 14:24:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func parseCloneOutput(t *testing.T, output string) *api.ACLToken {
|
|
|
|
// This will only work for non-legacy tokens
|
2020-02-15 15:06:05 +00:00
|
|
|
re := regexp.MustCompile("AccessorID: ([a-zA-Z0-9\\-]{36})\n" +
|
2019-04-08 17:05:51 +00:00
|
|
|
"SecretID: ([a-zA-Z0-9\\-]{36})\n" +
|
2021-12-09 20:58:45 +00:00
|
|
|
"(?:Partition: default\n)?" +
|
2019-12-06 16:14:56 +00:00
|
|
|
"(?:Namespace: default\n)?" +
|
2019-04-08 17:05:51 +00:00
|
|
|
"Description: ([^\n]*)\n" +
|
|
|
|
"Local: (true|false)\n" +
|
|
|
|
"Create Time: ([^\n]+)\n" +
|
2018-10-24 14:24:29 +00:00
|
|
|
"Policies:\n" +
|
|
|
|
"( [a-zA-Z0-9\\-]{36} - [^\n]+\n)*")
|
|
|
|
|
|
|
|
submatches := re.FindStringSubmatch(output)
|
|
|
|
require.Lenf(t, submatches, 7, "Didn't match: %q", output)
|
|
|
|
|
|
|
|
local, err := strconv.ParseBool(submatches[4])
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
token := &api.ACLToken{
|
|
|
|
AccessorID: submatches[1],
|
|
|
|
SecretID: submatches[2],
|
|
|
|
Description: submatches[3],
|
|
|
|
Local: local,
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(submatches[6]) > 0 {
|
|
|
|
policyRe := regexp.MustCompile(" ([a-zA-Z0-9\\-]{36}) - ([^\n]+)")
|
|
|
|
for _, m := range policyRe.FindAllStringSubmatch(submatches[6], -1) {
|
|
|
|
token.Policies = append(token.Policies, &api.ACLTokenPolicyLink{ID: m[1], Name: m[2]})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return token
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTokenCloneCommand_noTabs(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') {
|
|
|
|
t.Fatal("help has tabs")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-15 15:06:05 +00:00
|
|
|
func TestTokenCloneCommand_Pretty(t *testing.T) {
|
2020-12-07 18:42:55 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("too slow for testing.Short")
|
|
|
|
}
|
|
|
|
|
2018-10-24 14:24:29 +00:00
|
|
|
t.Parallel()
|
2022-01-20 16:45:56 +00:00
|
|
|
require := require.New(t)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
2020-03-31 19:59:56 +00:00
|
|
|
a := agent.NewTestAgent(t, `
|
2018-10-24 14:24:29 +00:00
|
|
|
primary_datacenter = "dc1"
|
|
|
|
acl {
|
|
|
|
enabled = true
|
|
|
|
tokens {
|
2021-12-07 12:48:50 +00:00
|
|
|
initial_management = "root"
|
2018-10-24 14:24:29 +00:00
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
|
|
|
defer a.Shutdown()
|
|
|
|
testrpc.WaitForLeader(t, a.RPC, "dc1")
|
|
|
|
|
|
|
|
// Create a policy
|
|
|
|
client := a.Client()
|
|
|
|
|
|
|
|
_, _, err := client.ACL().PolicyCreate(
|
|
|
|
&api.ACLPolicy{Name: "test-policy"},
|
|
|
|
&api.WriteOptions{Token: "root"},
|
|
|
|
)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.NoError(err)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
// create a token
|
|
|
|
token, _, err := client.ACL().TokenCreate(
|
2020-06-16 17:19:31 +00:00
|
|
|
&api.ACLToken{Description: "test", Policies: []*api.ACLTokenPolicyLink{{Name: "test-policy"}}},
|
2018-10-24 14:24:29 +00:00
|
|
|
&api.WriteOptions{Token: "root"},
|
|
|
|
)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.NoError(err)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
// clone with description
|
|
|
|
t.Run("Description", func(t *testing.T) {
|
|
|
|
ui := cli.NewMockUi()
|
|
|
|
cmd := New(ui)
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
"-http-addr=" + a.HTTPAddr(),
|
|
|
|
"-id=" + token.AccessorID,
|
|
|
|
"-token=root",
|
|
|
|
"-description=test cloned",
|
|
|
|
}
|
|
|
|
|
|
|
|
code := cmd.Run(args)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Empty(ui.ErrorWriter.String())
|
|
|
|
require.Equal(code, 0)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
cloned := parseCloneOutput(t, ui.OutputWriter.String())
|
|
|
|
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Equal("test cloned", cloned.Description)
|
|
|
|
require.Len(cloned.Policies, 1)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
apiToken, _, err := client.ACL().TokenRead(
|
|
|
|
cloned.AccessorID,
|
|
|
|
&api.QueryOptions{Token: "root"},
|
|
|
|
)
|
|
|
|
|
2022-01-20 16:45:56 +00:00
|
|
|
require.NoError(err)
|
|
|
|
require.NotNil(apiToken)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Equal(cloned.AccessorID, apiToken.AccessorID)
|
|
|
|
require.Equal(cloned.SecretID, apiToken.SecretID)
|
|
|
|
require.Equal(cloned.Description, apiToken.Description)
|
|
|
|
require.Equal(cloned.Local, apiToken.Local)
|
|
|
|
require.Equal(cloned.Policies, apiToken.Policies)
|
2018-10-24 14:24:29 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// clone without description
|
|
|
|
t.Run("Without Description", func(t *testing.T) {
|
|
|
|
ui := cli.NewMockUi()
|
|
|
|
cmd := New(ui)
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
"-http-addr=" + a.HTTPAddr(),
|
|
|
|
"-id=" + token.AccessorID,
|
|
|
|
"-token=root",
|
|
|
|
}
|
|
|
|
|
|
|
|
code := cmd.Run(args)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Equal(code, 0)
|
|
|
|
require.Empty(ui.ErrorWriter.String())
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
cloned := parseCloneOutput(t, ui.OutputWriter.String())
|
|
|
|
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Equal("test", cloned.Description)
|
|
|
|
require.Len(cloned.Policies, 1)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
|
|
|
apiToken, _, err := client.ACL().TokenRead(
|
|
|
|
cloned.AccessorID,
|
|
|
|
&api.QueryOptions{Token: "root"},
|
|
|
|
)
|
|
|
|
|
2022-01-20 16:45:56 +00:00
|
|
|
require.NoError(err)
|
|
|
|
require.NotNil(apiToken)
|
2018-10-24 14:24:29 +00:00
|
|
|
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Equal(cloned.AccessorID, apiToken.AccessorID)
|
|
|
|
require.Equal(cloned.SecretID, apiToken.SecretID)
|
|
|
|
require.Equal(cloned.Description, apiToken.Description)
|
|
|
|
require.Equal(cloned.Local, apiToken.Local)
|
|
|
|
require.Equal(cloned.Policies, apiToken.Policies)
|
2018-10-24 14:24:29 +00:00
|
|
|
})
|
|
|
|
}
|
2020-02-15 15:06:05 +00:00
|
|
|
|
|
|
|
func TestTokenCloneCommand_JSON(t *testing.T) {
|
2020-12-07 18:42:55 +00:00
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("too slow for testing.Short")
|
|
|
|
}
|
|
|
|
|
2020-02-15 15:06:05 +00:00
|
|
|
t.Parallel()
|
2022-01-20 16:45:56 +00:00
|
|
|
require := require.New(t)
|
2020-02-15 15:06:05 +00:00
|
|
|
|
2020-03-31 19:59:56 +00:00
|
|
|
a := agent.NewTestAgent(t, `
|
2020-02-15 15:06:05 +00:00
|
|
|
primary_datacenter = "dc1"
|
|
|
|
acl {
|
|
|
|
enabled = true
|
|
|
|
tokens {
|
2021-12-07 12:48:50 +00:00
|
|
|
initial_management = "root"
|
2020-02-15 15:06:05 +00:00
|
|
|
}
|
|
|
|
}`)
|
|
|
|
|
|
|
|
defer a.Shutdown()
|
|
|
|
testrpc.WaitForLeader(t, a.RPC, "dc1")
|
|
|
|
|
|
|
|
// Create a policy
|
|
|
|
client := a.Client()
|
|
|
|
|
|
|
|
_, _, err := client.ACL().PolicyCreate(
|
|
|
|
&api.ACLPolicy{Name: "test-policy"},
|
|
|
|
&api.WriteOptions{Token: "root"},
|
|
|
|
)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.NoError(err)
|
2020-02-15 15:06:05 +00:00
|
|
|
|
|
|
|
// create a token
|
|
|
|
token, _, err := client.ACL().TokenCreate(
|
2020-06-16 17:19:31 +00:00
|
|
|
&api.ACLToken{Description: "test", Policies: []*api.ACLTokenPolicyLink{{Name: "test-policy"}}},
|
2020-02-15 15:06:05 +00:00
|
|
|
&api.WriteOptions{Token: "root"},
|
|
|
|
)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.NoError(err)
|
2020-02-15 15:06:05 +00:00
|
|
|
|
|
|
|
// clone with description
|
|
|
|
t.Run("Description", func(t *testing.T) {
|
|
|
|
ui := cli.NewMockUi()
|
|
|
|
cmd := New(ui)
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
"-http-addr=" + a.HTTPAddr(),
|
|
|
|
"-id=" + token.AccessorID,
|
|
|
|
"-token=root",
|
|
|
|
"-description=test cloned",
|
|
|
|
"-format=json",
|
|
|
|
}
|
|
|
|
|
|
|
|
code := cmd.Run(args)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Empty(ui.ErrorWriter.String())
|
|
|
|
require.Equal(code, 0)
|
2020-02-15 15:06:05 +00:00
|
|
|
|
|
|
|
output := ui.OutputWriter.String()
|
|
|
|
var jsonOutput json.RawMessage
|
|
|
|
err = json.Unmarshal([]byte(output), &jsonOutput)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// clone without description
|
|
|
|
t.Run("Without Description", func(t *testing.T) {
|
|
|
|
ui := cli.NewMockUi()
|
|
|
|
cmd := New(ui)
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
"-http-addr=" + a.HTTPAddr(),
|
|
|
|
"-id=" + token.AccessorID,
|
|
|
|
"-token=root",
|
|
|
|
"-format=json",
|
|
|
|
}
|
|
|
|
|
|
|
|
code := cmd.Run(args)
|
2022-01-20 16:45:56 +00:00
|
|
|
require.Empty(ui.ErrorWriter.String())
|
|
|
|
require.Equal(code, 0)
|
2020-02-15 15:06:05 +00:00
|
|
|
|
|
|
|
output := ui.OutputWriter.String()
|
|
|
|
var jsonOutput json.RawMessage
|
|
|
|
err = json.Unmarshal([]byte(output), &jsonOutput)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
})
|
|
|
|
}
|