From 19a744191f81e4c9da40f04b9f471161eee0ae72 Mon Sep 17 00:00:00 2001 From: Sergey Matyukevich Date: Wed, 8 Sep 2021 09:12:54 -0600 Subject: [PATCH] Allow configuring graceful stop in testutil (#10566) * Allow configuring graceful stop in testutil Signed-off-by: Sergey Matyukevich * add a changelog Co-authored-by: Dhia Ayachi --- .changelog/10566.txt | 3 +++ sdk/testutil/server.go | 8 ++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .changelog/10566.txt diff --git a/.changelog/10566.txt b/.changelog/10566.txt new file mode 100644 index 000000000..4e5820987 --- /dev/null +++ b/.changelog/10566.txt @@ -0,0 +1,3 @@ +```release-note:enhancement +Allow configuring graceful stop in testutil. +``` diff --git a/sdk/testutil/server.go b/sdk/testutil/server.go index b5d4de77e..ba38c8fed 100644 --- a/sdk/testutil/server.go +++ b/sdk/testutil/server.go @@ -101,7 +101,9 @@ type TestServerConfig struct { EnableScriptChecks bool `json:"enable_script_checks,omitempty"` Connect map[string]interface{} `json:"connect,omitempty"` EnableDebug bool `json:"enable_debug,omitempty"` + SkipLeaveOnInt bool `json:"skip_leave_on_interrupt"` ReadyTimeout time.Duration `json:"-"` + StopTimeout time.Duration `json:"-"` Stdout io.Writer `json:"-"` Stderr io.Writer `json:"-"` Args []string `json:"-"` @@ -163,7 +165,9 @@ func defaultServerConfig(t TestingTB) *TestServerConfig { SerfWan: ports[4], Server: ports[5], }, - ReadyTimeout: 10 * time.Second, + ReadyTimeout: 10 * time.Second, + StopTimeout: 10 * time.Second, + SkipLeaveOnInt: true, Connect: map[string]interface{}{ "enabled": true, "ca_config": map[string]interface{}{ @@ -340,7 +344,7 @@ func (s *TestServer) Stop() error { select { case err := <-waitDone: return err - case <-time.After(10 * time.Second): + case <-time.After(s.Config.StopTimeout): s.cmd.Process.Signal(syscall.SIGABRT) <-waitDone return fmt.Errorf("timeout waiting for server to stop gracefully")