open-nomad/command/acl_policy_apply_test.go

59 lines
1.4 KiB
Go
Raw Normal View History

2017-09-15 04:19:56 +00:00
package command
import (
"io/ioutil"
"os"
"strings"
"testing"
"github.com/hashicorp/nomad/ci"
2017-09-15 04:19:56 +00:00
"github.com/hashicorp/nomad/command/agent"
"github.com/hashicorp/nomad/nomad/mock"
"github.com/mitchellh/cli"
"github.com/stretchr/testify/assert"
)
func TestACLPolicyApplyCommand(t *testing.T) {
ci.Parallel(t)
2017-09-15 04:19:56 +00:00
assert := assert.New(t)
config := func(c *agent.Config) {
c.ACL.Enabled = true
}
srv, _, url := testServer(t, true, config)
defer srv.Shutdown()
// Bootstrap an initial ACL token
token := srv.RootToken
2017-09-15 04:19:56 +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:19:56 +00:00
cmd := &ACLPolicyApplyCommand{Meta: Meta{Ui: ui, flagAddress: url}}
// Create a test policy
policy := mock.ACLPolicy()
// Get a file
f, err := ioutil.TempFile("", "nomad-test")
assert.Nil(err)
defer os.Remove(f.Name())
// Write the policy to the file
err = ioutil.WriteFile(f.Name(), []byte(policy.Rules), 0700)
assert.Nil(err)
2017-09-15 18:12:17 +00:00
// Attempt to apply a policy without a valid management token
code := cmd.Run([]string{"-address=" + url, "-token=foo", "test-policy", f.Name()})
2017-09-15 04:19:56 +00:00
assert.Equal(1, code)
2017-09-15 18:12:17 +00:00
// Apply a policy with a valid management token
code = cmd.Run([]string{"-address=" + url, "-token=" + token.SecretID, "test-policy", f.Name()})
2017-09-15 04:19:56 +00:00
assert.Equal(0, code)
// Check the output
out := ui.OutputWriter.String()
if !strings.Contains(out, "Successfully wrote") {
t.Fatalf("bad: %v", out)
}
}