mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package command
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/http"
 | 
						|
	"github.com/hashicorp/vault/meta"
 | 
						|
	"github.com/hashicorp/vault/vault"
 | 
						|
	"github.com/mitchellh/cli"
 | 
						|
)
 | 
						|
 | 
						|
func TestUnwrap(t *testing.T) {
 | 
						|
	core, _, token := vault.TestCoreUnsealed(t)
 | 
						|
	ln, addr := http.TestServer(t, core)
 | 
						|
	defer ln.Close()
 | 
						|
 | 
						|
	ui := new(cli.MockUi)
 | 
						|
	c := &UnwrapCommand{
 | 
						|
		Meta: meta.Meta{
 | 
						|
			ClientToken: token,
 | 
						|
			Ui:          ui,
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	args := []string{
 | 
						|
		"-address", addr,
 | 
						|
		"-field", "zip",
 | 
						|
	}
 | 
						|
 | 
						|
	// Run once so the client is setup, ignore errors
 | 
						|
	c.Run(args)
 | 
						|
 | 
						|
	// Get the client so we can write data
 | 
						|
	client, err := c.Client()
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("err: %s", err)
 | 
						|
	}
 | 
						|
 | 
						|
	wrapLookupFunc := func(method, path string) string {
 | 
						|
		if method == "GET" && path == "secret/foo" {
 | 
						|
			return "60s"
 | 
						|
		}
 | 
						|
		return ""
 | 
						|
	}
 | 
						|
	client.SetWrappingLookupFunc(wrapLookupFunc)
 | 
						|
 | 
						|
	data := map[string]interface{}{"zip": "zap"}
 | 
						|
	if _, err := client.Logical().Write("secret/foo", data); err != nil {
 | 
						|
		t.Fatalf("err: %s", err)
 | 
						|
	}
 | 
						|
 | 
						|
	outer, err := client.Logical().Read("secret/foo")
 | 
						|
	if err != nil {
 | 
						|
		t.Fatalf("err: %s", err)
 | 
						|
	}
 | 
						|
	if outer == nil {
 | 
						|
		t.Fatal("outer response was nil")
 | 
						|
	}
 | 
						|
	if outer.WrapInfo == nil {
 | 
						|
		t.Fatal("outer wrapinfo was nil, response was %#v", *outer)
 | 
						|
	}
 | 
						|
 | 
						|
	args = append(args, outer.WrapInfo.Token)
 | 
						|
 | 
						|
	// Run the read
 | 
						|
	if code := c.Run(args); code != 0 {
 | 
						|
		t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
 | 
						|
	}
 | 
						|
 | 
						|
	output := ui.OutputWriter.String()
 | 
						|
	if output != "zap\n" {
 | 
						|
		t.Fatalf("unexpectd output:\n%s", output)
 | 
						|
	}
 | 
						|
}
 |