e2e: test booting etcd with multiple peer listeners

This commit is contained in:
Anthony Romano 2017-08-17 11:01:26 -07:00
parent f4183c68cc
commit 15c511ea6a

View File

@ -15,7 +15,13 @@
package e2e
import (
"fmt"
"io/ioutil"
"os"
"strings"
"testing"
"github.com/coreos/etcd/pkg/expect"
)
const exampleConfigFile = "../etcd.conf.yml.sample"
@ -32,3 +38,49 @@ func TestEtcdExampleConfig(t *testing.T) {
t.Fatal(err)
}
}
func TestEtcdMultiPeer(t *testing.T) {
peers, tmpdirs := make([]string, 3), make([]string, 3)
for i := range peers {
peers[i] = fmt.Sprintf("e%d=http://127.0.0.1:%d", i, etcdProcessBasePort+i)
d, err := ioutil.TempDir("", fmt.Sprintf("e%d.etcd", i))
if err != nil {
t.Fatal(err)
}
tmpdirs[i] = d
}
ic := strings.Join(peers, ",")
procs := make([]*expect.ExpectProcess, len(peers))
defer func() {
for i := range procs {
if procs[i] != nil {
procs[i].Stop()
}
os.RemoveAll(tmpdirs[i])
}
}()
for i := range procs {
args := []string{
binDir + "/etcd",
"--name", fmt.Sprintf("e%d", i),
"--listen-client-urls", "http://0.0.0.0:0",
"--data-dir", tmpdirs[i],
"--advertise-client-urls", "http://0.0.0.0:0",
"--listen-peer-urls", fmt.Sprintf("http://127.0.0.1:%d,http://127.0.0.1:%d", etcdProcessBasePort+i, etcdProcessBasePort+len(peers)+i),
"--initial-advertise-peer-urls", fmt.Sprintf("http://127.0.0.1:%d", etcdProcessBasePort+i),
"--initial-cluster", ic,
}
p, err := spawnCmd(args)
if err != nil {
t.Fatal(err)
}
procs[i] = p
}
for _, p := range procs {
if err := waitReadyExpectProc(p, etcdServerReadyLines); err != nil {
t.Fatal(err)
}
}
}