open-nomad/command/acl_policy_delete_test.go

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

58 lines
1.5 KiB
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
2017-09-17 04:36:08 +00:00
package command
import (
"fmt"
"testing"
"github.com/hashicorp/nomad/acl"
"github.com/hashicorp/nomad/ci"
2017-09-17 04:36:08 +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-17 04:36:08 +00:00
)
func TestACLPolicyDeleteCommand(t *testing.T) {
ci.Parallel(t)
2017-09-17 04:36:08 +00:00
config := func(c *agent.Config) {
c.ACL.Enabled = true
}
srv, _, url := testServer(t, true, config)
defer srv.Shutdown()
2017-09-17 04:36:08 +00:00
state := srv.Agent.Server().State()
// Bootstrap an initial ACL token
token := srv.RootToken
must.NotNil(t, token)
2017-09-17 04:36:08 +00:00
// Create a test ACLPolicy
policy := &structs.ACLPolicy{
Name: "testPolicy",
Rules: acl.PolicyWrite,
}
policy.SetHash()
must.NoError(t, state.UpsertACLPolicies(structs.MsgTypeTestSetup, 1000, []*structs.ACLPolicy{policy}))
2017-09-17 04:36:08 +00:00
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2017-09-17 04:36:08 +00:00
cmd := &ACLPolicyDeleteCommand{Meta: Meta{Ui: ui, flagAddress: url}}
// Delete the policy without a valid token fails
invalidToken := mock.ACLToken()
code := cmd.Run([]string{"-address=" + url, "-token=" + invalidToken.SecretID, policy.Name})
must.One(t, code)
2017-09-17 04:36:08 +00:00
// Delete the policy with a valid management token
code = cmd.Run([]string{"-address=" + url, "-token=" + token.SecretID, policy.Name})
must.Zero(t, code)
2017-09-17 04:36:08 +00:00
// Check the output
out := ui.OutputWriter.String()
must.StrContains(t, out, fmt.Sprintf("Successfully deleted %s policy", policy.Name))
2017-09-17 04:36:08 +00:00
}