mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
62 lines
1.4 KiB
Go
62 lines
1.4 KiB
Go
//go:build linux
|
|
|
|
package trap
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"syscall"
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func buildTestBinary(t *testing.T, prefix string) string {
|
|
t.Helper()
|
|
tmpDir := t.TempDir()
|
|
exePath := filepath.Join(tmpDir, prefix)
|
|
wd, _ := os.Getwd()
|
|
testHelperCode := filepath.Join(wd, "testfiles", "main.go")
|
|
cmd := exec.Command("go", "build", "-o", exePath, testHelperCode)
|
|
assert.NilError(t, cmd.Run())
|
|
return exePath
|
|
}
|
|
|
|
func TestTrap(t *testing.T) {
|
|
sigmap := []struct {
|
|
name string
|
|
signal os.Signal
|
|
multiple bool
|
|
}{
|
|
{"TERM", syscall.SIGTERM, false},
|
|
{"INT", os.Interrupt, false},
|
|
{"TERM", syscall.SIGTERM, true},
|
|
{"INT", os.Interrupt, true},
|
|
}
|
|
exePath := buildTestBinary(t, "main")
|
|
|
|
for _, v := range sigmap {
|
|
t.Run(v.name, func(t *testing.T) {
|
|
cmd := exec.Command(exePath)
|
|
cmd.Env = append(os.Environ(), "SIGNAL_TYPE="+v.name)
|
|
if v.multiple {
|
|
cmd.Env = append(cmd.Env, "IF_MULTIPLE=1")
|
|
}
|
|
err := cmd.Start()
|
|
assert.NilError(t, err)
|
|
err = cmd.Wait()
|
|
e, ok := err.(*exec.ExitError)
|
|
assert.Assert(t, ok, "expected exec.ExitError, got %T", e)
|
|
|
|
code := e.Sys().(syscall.WaitStatus).ExitStatus()
|
|
if v.multiple {
|
|
assert.Check(t, is.DeepEqual(128+int(v.signal.(syscall.Signal)), code))
|
|
} else {
|
|
assert.Check(t, is.Equal(99, code))
|
|
}
|
|
})
|
|
}
|
|
}
|