-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
capture.go
164 lines (142 loc) · 4.26 KB
/
capture.go
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
package testza
import (
"fmt"
"io"
"os"
)
// CaptureStdout captures everything written to stdout from a specific function.
// You can use this method in tests, to validate that your functions writes a string to the terminal.
//
// Example:
//
// stdout, err := testza.CaptureStdout(func(w io.Writer) error {
// fmt.Println("Hello, World!")
// return nil
// })
//
// testza.AssertNoError(t, err)
// testza.AssertEqual(t, "Hello, World!", stdout)
func CaptureStdout(capture func(w io.Writer) error) (string, error) {
originalStdout := os.Stdout
r, w, err := os.Pipe()
if err != nil {
return "", fmt.Errorf("could not capture stdout: %w", err)
}
os.Stdout = w
err = capture(w)
if err != nil {
return "", fmt.Errorf("error inside capture function while capturing stdout: %w", err)
}
err = w.Close()
if err != nil {
return "", fmt.Errorf("could not capture stdout: %w", err)
}
out, err := io.ReadAll(r)
if err != nil {
return "", fmt.Errorf("could not capture stdout: %w", err)
}
os.Stdout = originalStdout
err = r.Close()
if err != nil {
return "", fmt.Errorf("could not capture stdout: %w", err)
}
return string(out), nil
}
// CaptureStderr captures everything written to stderr from a specific function.
// You can use this method in tests, to validate that your functions writes a string to the terminal.
//
// Example:
//
// stderr, err := testza.CaptureStderr(func(w io.Writer) error {
// _, err := fmt.Fprint(os.Stderr, "Hello, World!")
// testza.AssertNoError(t, err)
// return nil
// })
//
// testza.AssertNoError(t, err)
// testza.AssertEqual(t, "Hello, World!", stderr)
func CaptureStderr(capture func(w io.Writer) error) (string, error) {
originalStderr := os.Stderr
r, w, err := os.Pipe()
if err != nil {
return "", fmt.Errorf("could not capture stderr: %w", err)
}
os.Stderr = w
err = capture(w)
if err != nil {
return "", fmt.Errorf("error inside capture function while capturing stderr: %w", err)
}
err = w.Close()
if err != nil {
return "", fmt.Errorf("could not capture stderr: %w", err)
}
out, err := io.ReadAll(r)
if err != nil {
return "", fmt.Errorf("could not capture stderr: %w", err)
}
os.Stderr = originalStderr
err = r.Close()
if err != nil {
return "", fmt.Errorf("could not capture stderr: %w", err)
}
return string(out), nil
}
// CaptureStdoutAndStderr captures everything written to stdout and stderr from a specific function.
// You can use this method in tests, to validate that your functions writes a string to the terminal.
//
// Example:
//
// stdout, stderr, err := testza.CaptureStdoutAndStderr(func(stdoutWriter, stderrWriter io.Writer) error {
// fmt.Fprint(os.Stdout, "Hello")
// fmt.Fprint(os.Stderr, "World")
// return nil
// })
//
// testza.AssertNoError(t, err)
// testza.AssertEqual(t, "Hello", stdout)
// testza.AssertEqual(t, "World", stderr)
func CaptureStdoutAndStderr(capture func(stdoutWriter, stderrWriter io.Writer) error) (stdout, stderr string, err error) {
originalStdout := os.Stdout
originalStderr := os.Stderr
stdoutR, stdoutW, err := os.Pipe()
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
stderrR, stderrW, err := os.Pipe()
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
os.Stdout = stdoutW
os.Stderr = stderrW
err = capture(stdoutW, stderrW)
if err != nil {
return "", "", fmt.Errorf("error inside capture function while capturing stdout or stderr: %w", err)
}
err = stdoutW.Close()
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
err = stderrW.Close()
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
stdoutOut, err := io.ReadAll(stdoutR)
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
stderrOut, err := io.ReadAll(stderrR)
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
os.Stdout = originalStdout
os.Stderr = originalStderr
err = stdoutR.Close()
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
err = stderrR.Close()
if err != nil {
return "", "", fmt.Errorf("could not capture stdout or stderr: %w", err)
}
return string(stdoutOut), string(stderrOut), nil
}