open-vault/command/audit_enable_test.go

206 lines
4.2 KiB
Go
Raw Normal View History

2015-04-08 05:42:04 +00:00
package command
import (
"io/ioutil"
"os"
2017-09-05 03:59:03 +00:00
"strings"
2015-04-08 05:42:04 +00:00
"testing"
"github.com/mitchellh/cli"
)
2017-09-05 03:59:03 +00:00
func testAuditEnableCommand(tb testing.TB) (*cli.MockUi, *AuditEnableCommand) {
tb.Helper()
2015-04-08 05:42:04 +00:00
2017-09-05 03:59:03 +00:00
ui := cli.NewMockUi()
return ui, &AuditEnableCommand{
BaseCommand: &BaseCommand{
UI: ui,
2015-04-08 05:42:04 +00:00
},
}
2017-09-05 03:59:03 +00:00
}
2015-04-08 05:42:04 +00:00
2017-09-05 03:59:03 +00:00
func TestAuditEnableCommand_Run(t *testing.T) {
t.Parallel()
2015-04-08 05:42:04 +00:00
2017-09-05 03:59:03 +00:00
cases := []struct {
name string
args []string
out string
code int
}{
{
"empty",
nil,
"Missing TYPE!",
1,
},
{
"not_a_valid_type",
[]string{"nope_definitely_not_a_valid_type_like_ever"},
"",
2,
},
{
"enable",
[]string{"file", "file_path=discard"},
2017-09-08 01:57:32 +00:00
"Success! Enabled the file audit device at: file/",
2017-09-05 03:59:03 +00:00
0,
},
{
"enable_path",
[]string{
"-path", "audit_path",
"file",
"file_path=discard",
},
2017-09-08 01:57:32 +00:00
"Success! Enabled the file audit device at: audit_path/",
2017-09-05 03:59:03 +00:00
0,
},
2015-04-08 05:42:04 +00:00
}
2017-09-05 03:59:03 +00:00
for _, tc := range cases {
tc := tc
2015-04-08 05:42:04 +00:00
2017-09-05 03:59:03 +00:00
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
2015-04-08 05:42:04 +00:00
2017-09-05 03:59:03 +00:00
client, closer := testVaultServer(t)
defer closer()
ui, cmd := testAuditEnableCommand(t)
cmd.client = client
2015-04-08 05:42:04 +00:00
2017-09-05 03:59:03 +00:00
code := cmd.Run(tc.args)
if code != tc.code {
t.Errorf("expected %d to be %d", code, tc.code)
}
combined := ui.OutputWriter.String() + ui.ErrorWriter.String()
if !strings.Contains(combined, tc.out) {
t.Errorf("expected %q to contain %q", combined, tc.out)
}
})
2015-04-08 05:42:04 +00:00
}
2017-09-05 03:59:03 +00:00
t.Run("integration", func(t *testing.T) {
t.Parallel()
client, closer := testVaultServer(t)
defer closer()
ui, cmd := testAuditEnableCommand(t)
cmd.client = client
code := cmd.Run([]string{
"-path", "audit_enable_integration/",
"-description", "The best kind of test",
"file",
"file_path=discard",
})
if exp := 0; code != exp {
t.Errorf("expected %d to be %d", code, exp)
}
2017-09-08 01:57:32 +00:00
expected := "Success! Enabled the file audit device at: audit_enable_integration/"
2017-09-05 03:59:03 +00:00
combined := ui.OutputWriter.String() + ui.ErrorWriter.String()
if !strings.Contains(combined, expected) {
t.Errorf("expected %q to contain %q", combined, expected)
}
audits, err := client.Sys().ListAudit()
if err != nil {
t.Fatal(err)
}
auditInfo, ok := audits["audit_enable_integration/"]
if !ok {
t.Fatalf("expected audit to exist")
}
if exp := "file"; auditInfo.Type != exp {
t.Errorf("expected %q to be %q", auditInfo.Type, exp)
}
if exp := "The best kind of test"; auditInfo.Description != exp {
t.Errorf("expected %q to be %q", auditInfo.Description, exp)
}
filePath, ok := auditInfo.Options["file_path"]
if !ok || filePath != "discard" {
t.Errorf("missing some options: %#v", auditInfo)
}
})
t.Run("communication_failure", func(t *testing.T) {
t.Parallel()
client, closer := testVaultServerBad(t)
defer closer()
ui, cmd := testAuditEnableCommand(t)
cmd.client = client
code := cmd.Run([]string{
"pki",
})
if exp := 2; code != exp {
t.Errorf("expected %d to be %d", code, exp)
}
2017-09-08 01:57:32 +00:00
expected := "Error enabling audit device: "
2017-09-05 03:59:03 +00:00
combined := ui.OutputWriter.String() + ui.ErrorWriter.String()
if !strings.Contains(combined, expected) {
t.Errorf("expected %q to contain %q", combined, expected)
}
})
t.Run("no_tabs", func(t *testing.T) {
t.Parallel()
_, cmd := testAuditEnableCommand(t)
assertNoTabs(t, cmd)
})
t.Run("mount_all", func(t *testing.T) {
t.Parallel()
client, closer := testVaultServerAllBackends(t)
defer closer()
files, err := ioutil.ReadDir("../builtin/audit")
if err != nil {
t.Fatal(err)
}
var backends []string
for _, f := range files {
if f.IsDir() {
backends = append(backends, f.Name())
}
}
for _, b := range backends {
ui, cmd := testAuditEnableCommand(t)
cmd.client = client
args := []string{
b,
}
switch b {
case "file":
args = append(args, "file_path=discard")
case "socket":
args = append(args, "address=127.0.0.1:8888")
case "syslog":
if _, exists := os.LookupEnv("WSLENV"); exists {
t.Log("skipping syslog test on WSL")
continue
}
}
code := cmd.Run(args)
if exp := 0; code != exp {
t.Errorf("type %s, expected %d to be %d - %s", b, code, exp, ui.OutputWriter.String()+ui.ErrorWriter.String())
}
}
})
2015-04-08 05:42:04 +00:00
}