2017-09-15 04:55:25 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/command/agent"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestACLTokenCreateCommand(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
t.Parallel()
|
|
|
|
config := func(c *agent.Config) {
|
|
|
|
c.ACL.Enabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
srv, _, url := testServer(t, true, config)
|
|
|
|
defer srv.Shutdown()
|
|
|
|
|
|
|
|
// Bootstrap an initial ACL token
|
2017-10-04 22:06:21 +00:00
|
|
|
token := srv.RootToken
|
2017-09-15 04:55:25 +00:00
|
|
|
assert.NotNil(token, "failed to bootstrap ACL token")
|
|
|
|
|
2020-10-05 14:07:41 +00:00
|
|
|
ui := cli.NewMockUi()
|
2017-09-15 04:55:25 +00:00
|
|
|
cmd := &ACLTokenCreateCommand{Meta: Meta{Ui: ui, flagAddress: url}}
|
|
|
|
|
2017-09-15 18:08:46 +00:00
|
|
|
// Request to create a new token without providing a valid management token
|
2020-06-25 16:59:25 +00:00
|
|
|
code := cmd.Run([]string{"-address=" + url, "-token=foo", "-policy=foo", "-type=client"})
|
2017-09-15 04:55:25 +00:00
|
|
|
assert.Equal(1, code)
|
|
|
|
|
2017-09-15 18:08:46 +00:00
|
|
|
// Request to create a new token with a valid management token
|
2020-06-25 16:59:25 +00:00
|
|
|
code = cmd.Run([]string{"-address=" + url, "-token=" + token.SecretID, "-policy=foo", "-type=client"})
|
2017-09-15 04:55:25 +00:00
|
|
|
assert.Equal(0, code)
|
|
|
|
|
|
|
|
// Check the output
|
|
|
|
out := ui.OutputWriter.String()
|
|
|
|
if !strings.Contains(out, "[foo]") {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
|
|
|
}
|