mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			123 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !race
 | |
| package command
 | |
| 
 | |
| import (
 | |
| 	"io/ioutil"
 | |
| 	"os"
 | |
| 	"strings"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/mitchellh/cli"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	basehcl = `
 | |
| disable_mlock = true
 | |
| 
 | |
| listener "tcp" {
 | |
|   address = "127.0.0.1:8200"
 | |
|   tls_disable = "true"
 | |
| }
 | |
| `
 | |
| 
 | |
| 	consulhcl = `
 | |
| backend "consul" {
 | |
|     prefix = "foo/"
 | |
| 	advertise_addr = "http://127.0.0.1:8200"
 | |
| }
 | |
| `
 | |
| 	haconsulhcl = `
 | |
| ha_backend "consul" {
 | |
|     prefix = "bar/"
 | |
| 	advertise_addr = "http://127.0.0.1:8200"
 | |
| }
 | |
| `
 | |
| 
 | |
| 	badhaconsulhcl = `
 | |
| ha_backend "file" {
 | |
|     path = "/dev/null"
 | |
| }
 | |
| `
 | |
| )
 | |
| 
 | |
| // The following tests have a go-metrics/exp manager race condition
 | |
| func TestServer_CommonHA(t *testing.T) {
 | |
| 	ui := new(cli.MockUi)
 | |
| 	c := &ServerCommand{
 | |
| 		Meta: Meta{
 | |
| 			Ui: ui,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	tmpfile, err := ioutil.TempFile("", "")
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("error creating temp dir: %v", err)
 | |
| 	}
 | |
| 
 | |
| 	tmpfile.WriteString(basehcl + consulhcl)
 | |
| 	tmpfile.Close()
 | |
| 	defer os.Remove(tmpfile.Name())
 | |
| 
 | |
| 	args := []string{"-config", tmpfile.Name(), "-verify-only", "true"}
 | |
| 
 | |
| 	if code := c.Run(args); code != 0 {
 | |
| 		t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
 | |
| 	}
 | |
| 
 | |
| 	if !strings.Contains(ui.OutputWriter.String(), "(HA available)") {
 | |
| 		t.Fatalf("did not find HA available: %s", ui.OutputWriter.String())
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestServer_GoodSeparateHA(t *testing.T) {
 | |
| 	ui := new(cli.MockUi)
 | |
| 	c := &ServerCommand{
 | |
| 		Meta: Meta{
 | |
| 			Ui: ui,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	tmpfile, err := ioutil.TempFile("", "")
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("error creating temp dir: %v", err)
 | |
| 	}
 | |
| 
 | |
| 	tmpfile.WriteString(basehcl + consulhcl + haconsulhcl)
 | |
| 	tmpfile.Close()
 | |
| 	defer os.Remove(tmpfile.Name())
 | |
| 
 | |
| 	args := []string{"-config", tmpfile.Name(), "-verify-only", "true"}
 | |
| 
 | |
| 	if code := c.Run(args); code != 0 {
 | |
| 		t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
 | |
| 	}
 | |
| 
 | |
| 	if !strings.Contains(ui.OutputWriter.String(), "HA Backend:") {
 | |
| 		t.Fatalf("did not find HA Backend: %s", ui.OutputWriter.String())
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestServer_BadSeparateHA(t *testing.T) {
 | |
| 	ui := new(cli.MockUi)
 | |
| 	c := &ServerCommand{
 | |
| 		Meta: Meta{
 | |
| 			Ui: ui,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	tmpfile, err := ioutil.TempFile("", "")
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("error creating temp dir: %v", err)
 | |
| 	}
 | |
| 
 | |
| 	tmpfile.WriteString(basehcl + consulhcl + badhaconsulhcl)
 | |
| 	tmpfile.Close()
 | |
| 	defer os.Remove(tmpfile.Name())
 | |
| 
 | |
| 	args := []string{"-config", tmpfile.Name()}
 | |
| 
 | |
| 	if code := c.Run(args); code == 0 {
 | |
| 		t.Fatalf("bad: should have gotten an error on a bad HA config")
 | |
| 	}
 | |
| }
 | 
