123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- // Copyright 2016 CoreOS, Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package e2e
- import (
- "fmt"
- "io/ioutil"
- "math/rand"
- "net/url"
- "os"
- "strings"
- "testing"
- "github.com/coreos/etcd/Godeps/_workspace/src/github.com/coreos/gexpect"
- "github.com/coreos/etcd/pkg/fileutil"
- "github.com/coreos/etcd/pkg/testutil"
- )
- const (
- etcdProcessBasePort = 20000
- certPath = "../integration/fixtures/server.crt"
- privateKeyPath = "../integration/fixtures/server.key.insecure"
- caPath = "../integration/fixtures/ca.crt"
- )
- var (
- configNoTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- proxySize: 0,
- isClientTLS: false,
- isPeerTLS: false,
- initialToken: "new",
- }
- configTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- proxySize: 0,
- isClientTLS: true,
- isPeerTLS: true,
- initialToken: "new",
- }
- configClientTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- proxySize: 0,
- isClientTLS: true,
- isPeerTLS: false,
- initialToken: "new",
- }
- configPeerTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- proxySize: 0,
- isClientTLS: false,
- isPeerTLS: true,
- initialToken: "new",
- }
- configWithProxy = etcdProcessClusterConfig{
- clusterSize: 3,
- proxySize: 1,
- isClientTLS: false,
- isPeerTLS: false,
- initialToken: "new",
- }
- configWithProxyTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- proxySize: 1,
- isClientTLS: true,
- isPeerTLS: true,
- initialToken: "new",
- }
- configWithProxyPeerTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- proxySize: 1,
- isClientTLS: false,
- isPeerTLS: true,
- initialToken: "new",
- }
- )
- func configStandalone(cfg etcdProcessClusterConfig) *etcdProcessClusterConfig {
- ret := cfg
- ret.clusterSize = 1
- return &ret
- }
- func TestBasicOpsNoTLS(t *testing.T) { testBasicOpsPutGet(t, &configNoTLS) }
- func TestBasicOpsAllTLS(t *testing.T) { testBasicOpsPutGet(t, &configTLS) }
- func TestBasicOpsPeerTLS(t *testing.T) { testBasicOpsPutGet(t, &configPeerTLS) }
- func TestBasicOpsClientTLS(t *testing.T) { testBasicOpsPutGet(t, &configClientTLS) }
- func TestBasicOpsProxyNoTLS(t *testing.T) { testBasicOpsPutGet(t, &configWithProxy) }
- func TestBasicOpsProxyTLS(t *testing.T) { testBasicOpsPutGet(t, &configWithProxyTLS) }
- func TestBasicOpsProxyPeerTLS(t *testing.T) { testBasicOpsPutGet(t, &configWithProxyPeerTLS) }
- func testBasicOpsPutGet(t *testing.T, cfg *etcdProcessClusterConfig) {
- defer testutil.AfterTest(t)
- // test doesn't use quorum gets, so ensure there are no followers to avoid
- // stale reads that will break the test
- cfg = configStandalone(*cfg)
- epc, err := newEtcdProcessCluster(cfg)
- if err != nil {
- t.Fatalf("could not start etcd process cluster (%v)", err)
- }
- defer func() {
- if err := epc.Close(); err != nil {
- t.Fatalf("error closing etcd processes (%v)", err)
- }
- }()
- expectPut := `{"action":"set","node":{"key":"/testKey","value":"foo","`
- if err := cURLPut(epc, "testKey", "foo", expectPut); err != nil {
- t.Fatalf("failed put with curl (%v)", err)
- }
- expectGet := `{"action":"get","node":{"key":"/testKey","value":"foo","`
- if err := cURLGet(epc, "testKey", expectGet); err != nil {
- t.Fatalf("failed get with curl (%v)", err)
- }
- }
- // cURLPrefixArgs builds the beginning of a curl command for a given key
- // addressed to a random URL in the given cluster.
- func cURLPrefixArgs(clus *etcdProcessCluster, key string) []string {
- cmdArgs := []string{"curl"}
- if clus.cfg.isClientTLS {
- cmdArgs = append(cmdArgs, "--cacert", caPath, "--cert", certPath, "--key", privateKeyPath)
- }
- acurl := clus.procs[rand.Intn(clus.cfg.clusterSize)].cfg.acurl
- keyURL := acurl.String() + "/v2/keys/testKey"
- cmdArgs = append(cmdArgs, "-L", keyURL)
- return cmdArgs
- }
- func cURLPut(clus *etcdProcessCluster, key, val, expected string) error {
- args := append(cURLPrefixArgs(clus, key), "-XPUT", "-d", "value="+val)
- return spawnWithExpectedString(args, expected)
- }
- func cURLGet(clus *etcdProcessCluster, key, expected string) error {
- return spawnWithExpectedString(cURLPrefixArgs(clus, key), expected)
- }
- type etcdProcessCluster struct {
- cfg *etcdProcessClusterConfig
- procs []*etcdProcess
- }
- type etcdProcess struct {
- cfg *etcdProcessConfig
- proc *gexpect.ExpectSubprocess
- donec chan struct{} // closed when Interact() terminates
- }
- type etcdProcessConfig struct {
- args []string
- dataDirPath string
- acurl url.URL
- isProxy bool
- }
- type etcdProcessClusterConfig struct {
- clusterSize int
- proxySize int
- isClientTLS bool
- isPeerTLS bool
- initialToken string
- }
- // newEtcdProcessCluster launches a new cluster from etcd processes, returning
- // a new etcdProcessCluster once all nodes are ready to accept client requests.
- func newEtcdProcessCluster(cfg *etcdProcessClusterConfig) (*etcdProcessCluster, error) {
- etcdCfgs := cfg.etcdProcessConfigs()
- epc := &etcdProcessCluster{
- cfg: cfg,
- procs: make([]*etcdProcess, cfg.clusterSize+cfg.proxySize),
- }
- // launch etcd processes
- for i := range etcdCfgs {
- proc, err := newEtcdProcess(etcdCfgs[i])
- if err != nil {
- epc.Close()
- return nil, err
- }
- epc.procs[i] = proc
- }
- // wait for cluster to start
- readyC := make(chan error, cfg.clusterSize+cfg.proxySize)
- readyStr := "etcdserver: set the initial cluster version to"
- for i := range etcdCfgs {
- go func(etcdp *etcdProcess) {
- rs := readyStr
- if etcdp.cfg.isProxy {
- // rs = "proxy: listening for client requests on"
- rs = "proxy: endpoints found"
- }
- ok, err := etcdp.proc.ExpectRegex(rs)
- if err != nil {
- readyC <- err
- } else if !ok {
- readyC <- fmt.Errorf("couldn't get expected output: '%s'", rs)
- } else {
- readyC <- nil
- }
- etcdp.proc.ReadLine()
- etcdp.proc.Interact() // this blocks(leaks) if another goroutine is reading
- etcdp.proc.ReadLine() // wait for leaky goroutine to accept an EOF
- close(etcdp.donec)
- }(epc.procs[i])
- }
- for range etcdCfgs {
- if err := <-readyC; err != nil {
- epc.Close()
- return nil, err
- }
- }
- return epc, nil
- }
- func newEtcdProcess(cfg *etcdProcessConfig) (*etcdProcess, error) {
- if fileutil.Exist("../bin/etcd") == false {
- return nil, fmt.Errorf("could not find etcd binary")
- }
- if err := os.RemoveAll(cfg.dataDirPath); err != nil {
- return nil, err
- }
- child, err := spawnCmd(append([]string{"../bin/etcd"}, cfg.args...))
- if err != nil {
- return nil, err
- }
- return &etcdProcess{cfg: cfg, proc: child, donec: make(chan struct{})}, nil
- }
- func (cfg *etcdProcessClusterConfig) etcdProcessConfigs() []*etcdProcessConfig {
- clientScheme := "http"
- if cfg.isClientTLS {
- clientScheme = "https"
- }
- peerScheme := "http"
- if cfg.isPeerTLS {
- peerScheme = "https"
- }
- etcdCfgs := make([]*etcdProcessConfig, cfg.clusterSize+cfg.proxySize)
- initialCluster := make([]string, cfg.clusterSize)
- for i := 0; i < cfg.clusterSize; i++ {
- port := etcdProcessBasePort + 2*i
- curl := url.URL{Scheme: clientScheme, Host: fmt.Sprintf("localhost:%d", port)}
- purl := url.URL{Scheme: peerScheme, Host: fmt.Sprintf("localhost:%d", port+1)}
- name := fmt.Sprintf("testname%d", i)
- dataDirPath, derr := ioutil.TempDir("", name+".etcd")
- if derr != nil {
- panic("could not get tempdir for datadir")
- }
- initialCluster[i] = fmt.Sprintf("%s=%s", name, purl.String())
- args := []string{
- "--name", name,
- "--listen-client-urls", curl.String(),
- "--advertise-client-urls", curl.String(),
- "--listen-peer-urls", purl.String(),
- "--initial-advertise-peer-urls", purl.String(),
- "--initial-cluster-token", cfg.initialToken,
- "--data-dir", dataDirPath,
- }
- args = append(args, cfg.tlsArgs()...)
- etcdCfgs[i] = &etcdProcessConfig{
- args: args,
- dataDirPath: dataDirPath,
- acurl: curl,
- }
- }
- for i := 0; i < cfg.proxySize; i++ {
- port := etcdProcessBasePort + 2*cfg.clusterSize + i + 1
- curl := url.URL{Scheme: clientScheme, Host: fmt.Sprintf("localhost:%d", port)}
- name := fmt.Sprintf("testname-proxy%d", i)
- dataDirPath, derr := ioutil.TempDir("", name+".etcd")
- if derr != nil {
- panic("could not get tempdir for datadir")
- }
- args := []string{
- "--name", name,
- "--proxy", "on",
- "--listen-client-urls", curl.String(),
- "--data-dir", dataDirPath,
- }
- args = append(args, cfg.tlsArgs()...)
- etcdCfgs[cfg.clusterSize+i] = &etcdProcessConfig{
- args: args,
- dataDirPath: dataDirPath,
- acurl: curl,
- isProxy: true,
- }
- }
- initialClusterArgs := []string{"--initial-cluster", strings.Join(initialCluster, ",")}
- for i := range etcdCfgs {
- etcdCfgs[i].args = append(etcdCfgs[i].args, initialClusterArgs...)
- }
- return etcdCfgs
- }
- func (cfg *etcdProcessClusterConfig) tlsArgs() (args []string) {
- if cfg.isClientTLS {
- tlsClientArgs := []string{
- "--cert-file", certPath,
- "--key-file", privateKeyPath,
- "--ca-file", caPath,
- }
- args = append(args, tlsClientArgs...)
- }
- if cfg.isPeerTLS {
- tlsPeerArgs := []string{
- "--peer-cert-file", certPath,
- "--peer-key-file", privateKeyPath,
- "--peer-ca-file", caPath,
- }
- args = append(args, tlsPeerArgs...)
- }
- return args
- }
- func (epc *etcdProcessCluster) Close() (err error) {
- for _, p := range epc.procs {
- if p == nil {
- continue
- }
- os.RemoveAll(p.cfg.dataDirPath)
- if curErr := p.proc.Close(); curErr != nil {
- if err != nil {
- err = fmt.Errorf("%v; %v", err, curErr)
- } else {
- err = curErr
- }
- }
- <-p.donec
- }
- return err
- }
- func spawnCmd(args []string) (*gexpect.ExpectSubprocess, error) {
- // redirect stderr to stdout since gexpect only uses stdout
- cmd := `/bin/sh -c "` + strings.Join(args, " ") + ` 2>&1 "`
- return gexpect.Spawn(cmd)
- }
- func spawnWithExpect(args []string, expected string) error {
- proc, err := spawnCmd(args)
- if err != nil {
- return err
- }
- ok, err := proc.ExpectRegex(expected)
- perr := proc.Close()
- if err != nil {
- return err
- }
- if !ok {
- return fmt.Errorf("couldn't get expected output: '%s'", expected)
- }
- return perr
- }
- // spawnWithExpectedString compares outputs in string format.
- // This is useful when gexpect does not match regex correctly with
- // some UTF-8 format characters.
- func spawnWithExpectedString(args []string, expected string) error {
- proc, err := spawnCmd(args)
- if err != nil {
- return err
- }
- s, err := proc.ReadLine()
- perr := proc.Close()
- if err != nil {
- return err
- }
- if !strings.Contains(s, expected) {
- return fmt.Errorf("expected %q, got %q", expected, s)
- }
- return perr
- }
- // proxies returns only the proxy etcdProcess.
- func (epc *etcdProcessCluster) proxies() []*etcdProcess {
- return epc.procs[epc.cfg.clusterSize:]
- }
- func (epc *etcdProcessCluster) backends() []*etcdProcess {
- return epc.procs[:epc.cfg.clusterSize]
- }
|