mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package command
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/api"
 | 
						|
	"github.com/hashicorp/vault/http"
 | 
						|
	"github.com/hashicorp/vault/meta"
 | 
						|
	"github.com/hashicorp/vault/vault"
 | 
						|
	"github.com/mitchellh/cli"
 | 
						|
)
 | 
						|
 | 
						|
func TestAuditDisable(t *testing.T) {
 | 
						|
	core, _, token := vault.TestCoreUnsealed(t)
 | 
						|
	ln, addr := http.TestServer(t, core)
 | 
						|
	defer ln.Close()
 | 
						|
 | 
						|
	ui := new(cli.MockUi)
 | 
						|
	c := &AuditDisableCommand{
 | 
						|
		Meta: meta.Meta{
 | 
						|
			ClientToken: token,
 | 
						|
			Ui:          ui,
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	args := []string{
 | 
						|
		"-address", addr,
 | 
						|
		"noop",
 | 
						|
	}
 | 
						|
 | 
						|
	// Run once to get the client
 | 
						|
	c.Run(args)
 | 
						|
 | 
						|
	// Get the client
 | 
						|
	client, err := c.Client()
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("err: %#v", err)
 | 
						|
	}
 | 
						|
	if err := client.Sys().EnableAudit("noop", "noop", "", nil); err != nil {
 | 
						|
		t.Fatalf("err: %#v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	// Run again
 | 
						|
	if code := c.Run(args); code != 0 {
 | 
						|
		t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestAuditDisableWithOptions(t *testing.T) {
 | 
						|
	core, _, token := vault.TestCoreUnsealed(t)
 | 
						|
	ln, addr := http.TestServer(t, core)
 | 
						|
	defer ln.Close()
 | 
						|
 | 
						|
	ui := new(cli.MockUi)
 | 
						|
	c := &AuditDisableCommand{
 | 
						|
		Meta: meta.Meta{
 | 
						|
			ClientToken: token,
 | 
						|
			Ui:          ui,
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	args := []string{
 | 
						|
		"-address", addr,
 | 
						|
		"noop",
 | 
						|
	}
 | 
						|
 | 
						|
	// Run once to get the client
 | 
						|
	c.Run(args)
 | 
						|
 | 
						|
	// Get the client
 | 
						|
	client, err := c.Client()
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("err: %#v", err)
 | 
						|
	}
 | 
						|
	if err := client.Sys().EnableAuditWithOptions("noop", &api.EnableAuditOptions{
 | 
						|
		Type:        "noop",
 | 
						|
		Description: "noop",
 | 
						|
	}); err != nil {
 | 
						|
		t.Fatalf("err: %#v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	// Run again
 | 
						|
	if code := c.Run(args); code != 0 {
 | 
						|
		t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
 | 
						|
	}
 | 
						|
}
 |