open-nomad/command/acl_token_delete_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.5 KiB
Go
Raw Normal View History

2017-09-15 15:40:23 +00:00
package command
import (
"fmt"
"testing"
"github.com/hashicorp/nomad/acl"
"github.com/hashicorp/nomad/ci"
2017-09-15 15:40:23 +00:00
"github.com/hashicorp/nomad/command/agent"
"github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/mitchellh/cli"
"github.com/shoenig/test/must"
2017-09-15 15:40:23 +00:00
)
func TestACLTokenDeleteCommand_ViaEnvVariable(t *testing.T) {
ci.Parallel(t)
2017-09-15 15:40:23 +00:00
config := func(c *agent.Config) {
c.ACL.Enabled = true
}
srv, _, url := testServer(t, true, config)
defer stopTestAgent(srv)
2017-09-15 15:40:23 +00:00
// Bootstrap an initial ACL token
token := srv.RootToken
must.NotNil(t, token)
2017-09-15 15:40:23 +00:00
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2017-09-15 15:40:23 +00:00
cmd := &ACLTokenDeleteCommand{Meta: Meta{Ui: ui, flagAddress: url}}
state := srv.Agent.Server().State()
// Create a valid token
mockToken := mock.ACLToken()
2017-09-15 23:13:45 +00:00
mockToken.Policies = []string{acl.PolicyWrite}
mockToken.SetHash()
must.NoError(t, state.UpsertACLTokens(structs.MsgTypeTestSetup, 1000, []*structs.ACLToken{mockToken}))
2017-09-15 15:40:23 +00:00
// Attempt to delete a token without providing a valid token with delete
// permissions
code := cmd.Run([]string{"-address=" + url, "-token=foo", mockToken.AccessorID})
must.One(t, code)
2017-09-15 15:40:23 +00:00
// Delete a token using a valid management token set via an environment
// variable
code = cmd.Run([]string{"-address=" + url, "-token=" + token.SecretID, mockToken.AccessorID})
must.Zero(t, code)
2017-09-15 15:40:23 +00:00
// Check the output
out := ui.OutputWriter.String()
must.StrContains(t, out, fmt.Sprintf("Token %s successfully deleted", mockToken.AccessorID))
2017-09-15 15:40:23 +00:00
}