mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
e2e: more debugging output for lock and elect etcdctl tests
Meant to debug #6464 and #6934 Dumps the output from the etcd/etcdctl servers and SIGQUITs to get a golang backtrace in case of a hanged process.
This commit is contained in:
parent
71d7c85b6b
commit
b9f5a00b13
@ -23,9 +23,19 @@ import (
|
|||||||
"github.com/coreos/etcd/pkg/expect"
|
"github.com/coreos/etcd/pkg/expect"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCtlV3Elect(t *testing.T) { testCtl(t, testElect) }
|
func TestCtlV3Elect(t *testing.T) {
|
||||||
|
oldenv := os.Getenv("EXPECT_DEBUG")
|
||||||
|
defer os.Setenv("EXPECT_DEBUG", oldenv)
|
||||||
|
os.Setenv("EXPECT_DEBUG", "1")
|
||||||
|
|
||||||
|
testCtl(t, testElect)
|
||||||
|
}
|
||||||
|
|
||||||
func testElect(cx ctlCtx) {
|
func testElect(cx ctlCtx) {
|
||||||
|
// debugging for #6934
|
||||||
|
sig := cx.epc.withStopSignal(debugLockSignal)
|
||||||
|
defer cx.epc.withStopSignal(sig)
|
||||||
|
|
||||||
name := "a"
|
name := "a"
|
||||||
|
|
||||||
holder, ch, err := ctlV3Elect(cx, name, "p1")
|
holder, ch, err := ctlV3Elect(cx, name, "p1")
|
||||||
@ -102,6 +112,7 @@ func ctlV3Elect(cx ctlCtx, name, proposal string) (*expect.ExpectProcess, <-chan
|
|||||||
close(outc)
|
close(outc)
|
||||||
return proc, outc, err
|
return proc, outc, err
|
||||||
}
|
}
|
||||||
|
proc.StopSignal = debugLockSignal
|
||||||
go func() {
|
go func() {
|
||||||
s, xerr := proc.ExpectFunc(func(string) bool { return true })
|
s, xerr := proc.ExpectFunc(func(string) bool { return true })
|
||||||
if xerr != nil {
|
if xerr != nil {
|
||||||
|
@ -16,16 +16,49 @@ package e2e
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
"syscall"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/coreos/etcd/pkg/expect"
|
"github.com/coreos/etcd/pkg/expect"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCtlV3Lock(t *testing.T) { testCtl(t, testLock) }
|
// debugLockSignal forces SIGQUIT to debug etcdctl elect and lock failures
|
||||||
|
var debugLockSignal os.Signal
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
// hacks to ignore SIGQUIT debugging for some builds
|
||||||
|
switch {
|
||||||
|
case os.Getenv("COVERDIR") != "":
|
||||||
|
// SIGQUIT interferes with coverage collection
|
||||||
|
debugLockSignal = syscall.SIGTERM
|
||||||
|
case runtime.GOARCH == "ppc64le":
|
||||||
|
// ppc64le's signal handling won't kill processes with SIGQUIT
|
||||||
|
// in the same way as amd64/i386, so processes won't terminate
|
||||||
|
// as expected. Since this debugging code for CI, just ignore
|
||||||
|
// ppc64le.
|
||||||
|
debugLockSignal = syscall.SIGKILL
|
||||||
|
default:
|
||||||
|
// stack dumping OK
|
||||||
|
debugLockSignal = syscall.SIGQUIT
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCtlV3Lock(t *testing.T) {
|
||||||
|
oldenv := os.Getenv("EXPECT_DEBUG")
|
||||||
|
defer os.Setenv("EXPECT_DEBUG", oldenv)
|
||||||
|
os.Setenv("EXPECT_DEBUG", "1")
|
||||||
|
|
||||||
|
testCtl(t, testLock)
|
||||||
|
}
|
||||||
|
|
||||||
func testLock(cx ctlCtx) {
|
func testLock(cx ctlCtx) {
|
||||||
|
// debugging for #6464
|
||||||
|
sig := cx.epc.withStopSignal(debugLockSignal)
|
||||||
|
defer cx.epc.withStopSignal(sig)
|
||||||
|
|
||||||
name := "a"
|
name := "a"
|
||||||
|
|
||||||
holder, ch, err := ctlV3Lock(cx, name)
|
holder, ch, err := ctlV3Lock(cx, name)
|
||||||
@ -102,6 +135,7 @@ func ctlV3Lock(cx ctlCtx, name string) (*expect.ExpectProcess, <-chan string, er
|
|||||||
close(outc)
|
close(outc)
|
||||||
return proc, outc, err
|
return proc, outc, err
|
||||||
}
|
}
|
||||||
|
proc.StopSignal = debugLockSignal
|
||||||
go func() {
|
go func() {
|
||||||
s, xerr := proc.ExpectFunc(func(string) bool { return true })
|
s, xerr := proc.ExpectFunc(func(string) bool { return true })
|
||||||
if xerr != nil {
|
if xerr != nil {
|
||||||
|
@ -553,3 +553,11 @@ func (epc *etcdProcessCluster) grpcEndpoints() []string {
|
|||||||
}
|
}
|
||||||
return eps
|
return eps
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (epc *etcdProcessCluster) withStopSignal(sig os.Signal) os.Signal {
|
||||||
|
ret := epc.procs[0].proc.StopSignal
|
||||||
|
for _, p := range epc.procs {
|
||||||
|
p.proc.StopSignal = sig
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user