-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathe2e_misc_test.go
More file actions
172 lines (153 loc) · 4.68 KB
/
Copy pathe2e_misc_test.go
File metadata and controls
172 lines (153 loc) · 4.68 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
// 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)
}
}
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()
}