-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathe2e_misc_test.go
More file actions
236 lines (212 loc) · 6.97 KB
/
Copy pathe2e_misc_test.go
File metadata and controls
236 lines (212 loc) · 6.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright 2026 HAProxy Technologies LLC
//
// 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 main
import (
"fmt"
"os"
"os/exec"
"path/filepath"
"strings"
"syscall"
"testing"
"time"
"github.com/haproxytech/gopherd/control"
"github.com/haproxytech/gopherd/version"
)
// daemonStdout starts the daemon with a minimal config plus extraEnv, waits
// for the control socket, shuts it down, and returns everything it wrote to
// stdout. Stdout goes to a regular file rather than a pipe so cmd.Wait does
// not block on service children (sleep) that inherit the descriptor.
func daemonStdout(t *testing.T, extraEnv ...string) string {
t.Helper()
dir := t.TempDir()
cfgPath := filepath.Join(dir, "gopherd.yml")
sockPath := filepath.Join(dir, "gopherd.sock")
config := fmt.Sprintf(`control:
socket: %s
processes:
- name: app
command: sleep
args: ["300"]
`, sockPath)
if err := os.WriteFile(cfgPath, []byte(config), 0o644); err != nil {
t.Fatalf("write config: %v", err)
}
outPath := filepath.Join(dir, "stdout")
outFile, err := os.Create(outPath)
if err != nil {
t.Fatalf("create stdout file: %v", err)
}
defer outFile.Close()
cmd := exec.Command(testBinary)
cmd.Env = append(os.Environ(), "GOPHERD_CONFIG="+cfgPath, "GOPHERD_SOCKET="+sockPath)
cmd.Env = append(cmd.Env, extraEnv...)
cmd.Stdout = outFile
cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
if err := cmd.Start(); err != nil {
t.Fatalf("start: %v", err)
}
defer func() {
syscall.Kill(-cmd.Process.Pid, syscall.SIGKILL)
cmd.Wait()
}()
deadline := time.Now().Add(10 * time.Second)
for !control.IsAlive(sockPath) {
if time.Now().After(deadline) {
t.Fatal("daemon did not start")
}
time.Sleep(50 * time.Millisecond)
}
cmd.Process.Signal(syscall.SIGTERM)
cmd.Wait()
stdout, err := os.ReadFile(outPath)
if err != nil {
t.Fatalf("read stdout file: %v", err)
}
return string(stdout)
}
func TestE2ELogoPrintedByDefault(t *testing.T) {
stdout := daemonStdout(t)
if !strings.Contains(stdout, version.Logo) {
t.Errorf("logo not printed on startup:\n%s", stdout)
}
}
func TestE2ELogoSuppressedByEnv(t *testing.T) {
// Env suppression keeps test configs free of test-only flags.
stdout := daemonStdout(t, "GOPHERD_NO_LOGO=1")
if strings.Contains(stdout, version.Logo) {
t.Errorf("logo printed despite GOPHERD_NO_LOGO=1:\n%s", stdout)
}
}
func TestE2EPassthrough(t *testing.T) {
// When invoked with a non-client command, gopherd should exec it directly.
cmd := exec.Command(testBinary, "echo", "hello-passthrough")
out, err := cmd.Output()
if err != nil {
t.Fatalf("passthrough exec failed: %v", err)
}
if !strings.Contains(string(out), "hello-passthrough") {
t.Errorf("expected passthrough output, got: %s", out)
}
}
// TestE2EPassthroughSeparatorNotInArgv pins the exact argv of a passthrough
// exec carrying entrypoint args after "--". The separator is a gopherd-level
// delimiter, not an argument: leaking it shifts every positional parameter by
// one ($0 becomes "--") and breaks entrypoint scripts that read "$1". Only an
// exact-argv assertion catches it; "contains the args" passes either way.
func TestE2EPassthroughSeparatorNotInArgv(t *testing.T) {
out := filepath.Join(t.TempDir(), "argv")
cmd := exec.Command(testBinary, "/bin/sh", "-c",
fmt.Sprintf(`printf '%%s|' "$0" "$@" > %s`, out), "--", "alpha", "beta")
if err := cmd.Run(); err != nil {
t.Fatalf("passthrough exec failed: %v", err)
}
data, err := os.ReadFile(out)
if err != nil {
t.Fatalf("read argv capture: %v", err)
}
// sh -c <script> alpha beta => $0=alpha, $@=(beta)
if got, want := string(data), "alpha|beta|"; got != want {
t.Errorf("passthrough argv = %q, want %q (the -- separator must be "+
"consumed by gopherd, never forwarded to the program)", got, want)
}
}
// TestE2EInitStopSignalLogIsDeterministic pins the signal-set log line. The set
// is a map, so it has to be sorted or the startup banner flaps between runs,
// breaking golden comparisons and log parsers. One run proves nothing — chance
// prints sorted order often enough — so the line must be identical across
// repeated starts.
func TestE2EInitStopSignalLogIsDeterministic(t *testing.T) {
const config = `
init-stop-signal: [SIGTERM, SIGQUIT, SIGUSR2, SIGINT]
processes:
- name: app
command: sleep
args: ["300"]
on-success: ignore
on-failure: ignore
`
// formatSignalSet sorts by signal number: INT(2), QUIT(3), USR2(12), TERM(15).
const want = "init-stop-signal: SIGINT, SIGQUIT, SIGUSR2, SIGTERM"
for i := range 5 {
td := startDaemon(t, config)
td.WaitRunning("app", 10*time.Second)
out := td.Output()
td.kill()
var line string
for l := range strings.SplitSeq(out, "\n") {
if strings.Contains(l, "init-stop-signal:") {
line = strings.TrimSpace(strings.TrimPrefix(l, "gopherd: "))
}
}
if line == "" {
t.Fatalf("run %d: no init-stop-signal line in output: %s", i, out)
}
if line != want {
t.Fatalf("run %d: init-stop-signal line = %q, want %q "+
"(the set must be rendered in a stable order)", i, line, want)
}
}
}
func TestE2EPassthroughNotFound(t *testing.T) {
cmd := exec.Command(testBinary, "nonexistent-binary-xyz")
cmd.Stderr = nil
err := cmd.Run()
if err == nil {
t.Fatal("expected error for nonexistent passthrough command")
}
exitErr, ok := err.(*exec.ExitError)
if !ok {
t.Fatalf("expected ExitError, got: %v", err)
}
if exitErr.ExitCode() != 1 {
t.Errorf("expected exit code 1, got %d", exitErr.ExitCode())
}
}
func TestE2EVersionCommand(t *testing.T) {
cmd := exec.Command(testBinary, "version")
out, err := cmd.Output()
if err != nil {
t.Fatalf("version command failed: %v", err)
}
if !strings.Contains(string(out), "gopherd") {
t.Errorf("expected 'gopherd' in version output, got: %s", out)
}
}
func TestE2EAlreadyRunning(t *testing.T) {
td := startDaemon(t, `
processes:
- name: app
command: sleep
args: ["300"]
on-failure: shutdown
`)
defer td.kill()
// Start a second instance with the same socket — it should detect the running daemon and exit.
cmd := exec.Command(testBinary)
cmd.Env = append(os.Environ(), "GOPHERD_CONFIG="+td.ConfigPath(), "GOPHERD_SOCKET="+td.SocketPath())
cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
err := cmd.Run()
if err == nil {
t.Fatal("expected second instance to exit with error")
}
exitErr, ok := err.(*exec.ExitError)
if !ok {
t.Fatalf("expected ExitError, got: %v", err)
}
if exitErr.ExitCode() != 1 {
t.Errorf("expected exit code 1 for already-running, got %d", exitErr.ExitCode())
}
td.stop()
}