mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Fix https://github.com/coreos/etcd/issues/5947. When we restart, the previous port could have been still bind by the OS. Use Unix port to avoid such rebind cases.
89 lines
2.4 KiB
Go
89 lines
2.4 KiB
Go
// Copyright 2016 The etcd Authors
|
|
//
|
|
// 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"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/coreos/etcd/pkg/fileutil"
|
|
"github.com/coreos/etcd/pkg/testutil"
|
|
)
|
|
|
|
// TestReleaseUpgrade ensures that changes to master branch does not affect
|
|
// upgrade from latest etcd releases.
|
|
func TestReleaseUpgrade(t *testing.T) {
|
|
lastReleaseBinary := "../bin/etcd-last-release"
|
|
if !fileutil.Exist(lastReleaseBinary) {
|
|
t.Skipf("%q does not exist", lastReleaseBinary)
|
|
}
|
|
|
|
defer testutil.AfterTest(t)
|
|
|
|
copiedCfg := configNoTLS
|
|
copiedCfg.execPath = lastReleaseBinary
|
|
copiedCfg.snapCount = 3
|
|
copiedCfg.baseScheme = "unix" // to avoid port conflict
|
|
|
|
epc, err := newEtcdProcessCluster(&copiedCfg)
|
|
if err != nil {
|
|
t.Fatalf("could not start etcd process cluster (%v)", err)
|
|
}
|
|
defer func() {
|
|
if errC := epc.Close(); errC != nil {
|
|
t.Fatalf("error closing etcd processes (%v)", errC)
|
|
}
|
|
}()
|
|
|
|
os.Setenv("ETCDCTL_API", "3")
|
|
defer os.Unsetenv("ETCDCTL_API")
|
|
cx := ctlCtx{
|
|
t: t,
|
|
cfg: configNoTLS,
|
|
dialTimeout: 7 * time.Second,
|
|
quorum: true,
|
|
epc: epc,
|
|
}
|
|
var kvs []kv
|
|
for i := 0; i < 5; i++ {
|
|
kvs = append(kvs, kv{key: fmt.Sprintf("foo%d", i), val: "bar"})
|
|
}
|
|
for i := range kvs {
|
|
if err := ctlV3Put(cx, kvs[i].key, kvs[i].val, ""); err != nil {
|
|
cx.t.Fatalf("#%d: ctlV3Put error (%v)", i, err)
|
|
}
|
|
}
|
|
|
|
for i := range epc.procs {
|
|
if err := epc.procs[i].Stop(); err != nil {
|
|
t.Fatalf("#%d: error closing etcd process (%v)", i, err)
|
|
}
|
|
epc.procs[i].cfg.execPath = "../bin/etcd"
|
|
epc.procs[i].cfg.keepDataDir = true
|
|
|
|
if err := epc.procs[i].Restart(); err != nil {
|
|
t.Fatalf("error restarting etcd process (%v)", err)
|
|
}
|
|
|
|
for j := range kvs {
|
|
if err := ctlV3Get(cx, []string{kvs[j].key}, []kv{kvs[j]}...); err != nil {
|
|
cx.t.Fatalf("#%d-%d: ctlV3Get error (%v)", i, j, err)
|
|
}
|
|
}
|
|
}
|
|
}
|