2016-02-02 22:47:02 +00:00
|
|
|
// +build !race
|
2016-02-03 13:41:31 +00:00
|
|
|
|
2015-12-11 20:58:10 +00:00
|
|
|
package command
|
|
|
|
|
2016-02-02 22:47:02 +00:00
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
2015-12-11 20:58:10 +00:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
`
|
|
|
|
)
|
|
|
|
|
2016-02-02 22:47:02 +00:00
|
|
|
// 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())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-11 20:58:10 +00:00
|
|
|
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())
|
|
|
|
}
|
2016-02-02 22:47:02 +00:00
|
|
|
|
|
|
|
if !strings.Contains(ui.OutputWriter.String(), "HA Backend:") {
|
|
|
|
t.Fatalf("did not find HA Backend: %s", ui.OutputWriter.String())
|
|
|
|
}
|
2015-12-11 20:58:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|