open-nomad/command/acl_policy_info_test.go

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

56 lines
1.4 KiB
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
2017-09-17 05:11:32 +00:00
package command
import (
"testing"
"github.com/hashicorp/nomad/ci"
2017-09-17 05:11:32 +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 05:11:32 +00:00
)
2017-10-13 20:45:10 +00:00
func TestACLPolicyInfoCommand(t *testing.T) {
ci.Parallel(t)
2017-09-17 05:11:32 +00:00
config := func(c *agent.Config) {
c.ACL.Enabled = true
}
srv, _, url := testServer(t, true, config)
state := srv.Agent.Server().State()
defer srv.Shutdown()
2017-09-17 05:11:32 +00:00
// Bootstrap an initial ACL token
token := srv.RootToken
must.NotNil(t, token)
2017-09-17 05:11:32 +00:00
// Create a test ACLPolicy
policy := &structs.ACLPolicy{
Name: "testPolicy",
2019-08-29 21:09:02 +00:00
Rules: "node { policy = \"read\" }",
2017-09-17 05:11:32 +00:00
}
policy.SetHash()
must.NoError(t, state.UpsertACLPolicies(structs.MsgTypeTestSetup, 1000, []*structs.ACLPolicy{policy}))
2017-09-17 05:11:32 +00:00
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2017-09-17 05:11:32 +00:00
cmd := &ACLPolicyInfoCommand{Meta: Meta{Ui: ui, flagAddress: url}}
// Attempt to apply a policy without a valid management token
invalidToken := mock.ACLToken()
code := cmd.Run([]string{"-address=" + url, "-token=" + invalidToken.SecretID, policy.Name})
must.One(t, code)
2017-09-17 05:11:32 +00:00
// Apply a policy with a valid management token
code = cmd.Run([]string{"-address=" + url, "-token=" + token.SecretID, policy.Name})
must.Zero(t, code)
2017-09-17 05:11:32 +00:00
// Check the output
out := ui.OutputWriter.String()
must.StrContains(t, out, policy.Name)
2017-09-17 05:11:32 +00:00
}