-
-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: send SIGTERM signal to --cmd instead of SIGKILL (#687)
Co-authored-by: Adrian Hesketh <[email protected]> Co-authored-by: Adrian Hesketh <[email protected]>
- Loading branch information
1 parent
c7c32aa
commit 3ac3c9d
Showing
4 changed files
with
209 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
package run_test | ||
|
||
import ( | ||
"context" | ||
"embed" | ||
"io" | ||
"net/http" | ||
"os" | ||
"path/filepath" | ||
"syscall" | ||
"testing" | ||
"time" | ||
|
||
"github.com/a-h/templ/cmd/templ/generatecmd/run" | ||
) | ||
|
||
//go:embed testprogram/* | ||
var testprogram embed.FS | ||
|
||
func TestGoRun(t *testing.T) { | ||
if testing.Short() { | ||
t.Skip("Skipping test in short mode.") | ||
} | ||
|
||
// Copy testprogram to a temporary directory. | ||
dir, err := os.MkdirTemp("", "testprogram") | ||
if err != nil { | ||
t.Fatalf("failed to make test dir: %v", err) | ||
} | ||
files, err := testprogram.ReadDir("testprogram") | ||
if err != nil { | ||
t.Fatalf("failed to read embedded dir: %v", err) | ||
} | ||
for _, file := range files { | ||
srcFileName := "testprogram/" + file.Name() | ||
srcData, err := testprogram.ReadFile(srcFileName) | ||
if err != nil { | ||
t.Fatalf("failed to read src file %q: %v", srcFileName, err) | ||
} | ||
tgtFileName := filepath.Join(dir, file.Name()) | ||
tgtFile, err := os.Create(tgtFileName) | ||
if err != nil { | ||
t.Fatalf("failed to create tgt file %q: %v", tgtFileName, err) | ||
} | ||
defer tgtFile.Close() | ||
if _, err := tgtFile.Write(srcData); err != nil { | ||
t.Fatalf("failed to write to tgt file %q: %v", tgtFileName, err) | ||
} | ||
} | ||
// Rename the go.mod.embed file to go.mod. | ||
if err := os.Rename(filepath.Join(dir, "go.mod.embed"), filepath.Join(dir, "go.mod")); err != nil { | ||
t.Fatalf("failed to rename go.mod.embed: %v", err) | ||
} | ||
|
||
tests := []struct { | ||
name string | ||
cmd string | ||
}{ | ||
{ | ||
name: "Well behaved programs get shut down", | ||
cmd: "go run .", | ||
}, | ||
{ | ||
name: "Badly behaved programs get shut down", | ||
cmd: "go run . -badly-behaved", | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
ctx := context.Background() | ||
cmd, err := run.Run(ctx, dir, tt.cmd) | ||
if err != nil { | ||
t.Fatalf("failed to run program: %v", err) | ||
} | ||
|
||
time.Sleep(1 * time.Second) | ||
|
||
pid := cmd.Process.Pid | ||
|
||
if err := run.KillAll(); err != nil { | ||
t.Fatalf("failed to kill all: %v", err) | ||
} | ||
|
||
// Check the parent process is no longer running. | ||
if err := cmd.Process.Signal(os.Signal(syscall.Signal(0))); err == nil { | ||
t.Fatalf("process %d is still running", pid) | ||
} | ||
// Check that the child was stopped. | ||
body, err := readResponse("http://localhost:7777") | ||
if err == nil { | ||
t.Fatalf("child process is still running: %s", body) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func readResponse(url string) (body string, err error) { | ||
resp, err := http.Get(url) | ||
if err != nil { | ||
return body, err | ||
} | ||
defer resp.Body.Close() | ||
b, err := io.ReadAll(resp.Body) | ||
if err != nil { | ||
return body, err | ||
} | ||
return string(b), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module testprogram | ||
|
||
go 1.22.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package main | ||
|
||
import ( | ||
"flag" | ||
"fmt" | ||
"net/http" | ||
"os" | ||
"os/signal" | ||
"syscall" | ||
"time" | ||
) | ||
|
||
// This is a test program. It is used only to test the behaviour of the run package. | ||
// The run package is supposed to be able to run and stop programs. Those programs may start | ||
// child processes, which should also be stopped when the parent program is stopped. | ||
|
||
// For example, running `go run .` will compile an executable and run it. | ||
|
||
// So, this program does nothing. It just waits for a signal to stop. | ||
|
||
// In "Well behaved" mode, the program will stop when it receives a signal. | ||
// In "Badly behaved" mode, the program will ignore the signal and continue running. | ||
|
||
// The run package should be able to stop the program in both cases. | ||
|
||
var badlyBehavedFlag = flag.Bool("badly-behaved", false, "If set, the program will ignore the stop signal and continue running.") | ||
|
||
func main() { | ||
flag.Parse() | ||
|
||
mode := "Well behaved" | ||
if *badlyBehavedFlag { | ||
mode = "Badly behaved" | ||
} | ||
fmt.Printf("%s process %d started.\n", mode, os.Getpid()) | ||
|
||
// Start a web server on a known port so that we can check that this process is | ||
// not running, when it's been started as a child process, and we don't know | ||
// its pid. | ||
go func() { | ||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { | ||
fmt.Fprintf(w, "%d", os.Getpid()) | ||
}) | ||
err := http.ListenAndServe("127.0.0.1:7777", nil) | ||
if err != nil { | ||
fmt.Printf("Error running web server: %v\n", err) | ||
} | ||
}() | ||
|
||
sigs := make(chan os.Signal, 1) | ||
if !*badlyBehavedFlag { | ||
signal.Notify(sigs, os.Interrupt, syscall.SIGTERM) | ||
} | ||
for { | ||
select { | ||
case <-sigs: | ||
fmt.Printf("Process %d received signal. Stopping.\n", os.Getpid()) | ||
return | ||
case <-time.After(1 * time.Second): | ||
fmt.Printf("Process %d still running...\n", os.Getpid()) | ||
} | ||
} | ||
} |