mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package command
 | |
| 
 | |
| import (
 | |
| 	"encoding/hex"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/hashicorp/vault/http"
 | |
| 	"github.com/hashicorp/vault/vault"
 | |
| 	"github.com/mitchellh/cli"
 | |
| )
 | |
| 
 | |
| func TestUnseal(t *testing.T) {
 | |
| 	core := vault.TestCore(t)
 | |
| 	key, _ := vault.TestCoreInit(t, core)
 | |
| 	ln, addr := http.TestServer(t, core)
 | |
| 	defer ln.Close()
 | |
| 
 | |
| 	ui := new(cli.MockUi)
 | |
| 	c := &UnsealCommand{
 | |
| 		Key: hex.EncodeToString(key),
 | |
| 		Meta: Meta{
 | |
| 			Ui: ui,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	args := []string{"-address", addr}
 | |
| 	if code := c.Run(args); code != 0 {
 | |
| 		t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
 | |
| 	}
 | |
| 
 | |
| 	sealed, err := core.Sealed()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("err: %s", err)
 | |
| 	}
 | |
| 	if sealed {
 | |
| 		t.Fatal("should not be sealed")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestUnseal_arg(t *testing.T) {
 | |
| 	core := vault.TestCore(t)
 | |
| 	key, _ := vault.TestCoreInit(t, core)
 | |
| 	ln, addr := http.TestServer(t, core)
 | |
| 	defer ln.Close()
 | |
| 
 | |
| 	ui := new(cli.MockUi)
 | |
| 	c := &UnsealCommand{
 | |
| 		Meta: Meta{
 | |
| 			Ui: ui,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	args := []string{"-address", addr, hex.EncodeToString(key)}
 | |
| 	if code := c.Run(args); code != 0 {
 | |
| 		t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
 | |
| 	}
 | |
| 
 | |
| 	sealed, err := core.Sealed()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("err: %s", err)
 | |
| 	}
 | |
| 	if sealed {
 | |
| 		t.Fatal("should not be sealed")
 | |
| 	}
 | |
| }
 | 
