-
-
Notifications
You must be signed in to change notification settings - Fork 315
/
script_unix_test.go
227 lines (207 loc) · 4.64 KB
/
script_unix_test.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
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
//go:build !windows
package script_test
import (
"os"
"path/filepath"
"testing"
"github.com/bitfield/script"
"github.com/google/go-cmp/cmp"
)
func TestExecForEach_HandlesLongLines(t *testing.T) {
t.Parallel()
got, err := script.Echo(longLine).ExecForEach(`echo "{{.}}"`).String()
if err != nil {
t.Fatal(err)
}
if longLine != got {
t.Error(cmp.Diff(longLine, got))
}
}
func TestExecRunsShWithEchoHelloAndGetsOutputHello(t *testing.T) {
t.Parallel()
p := script.Exec("sh -c 'echo hello'")
if p.Error() != nil {
t.Fatal(p.Error())
}
want := "hello\n"
got, err := p.String()
if err != nil {
t.Fatal(err)
}
if want != got {
t.Error(cmp.Diff(want, got))
}
}
func TestExecRunsShWithinShWithEchoInceptionAndGetsOutputInception(t *testing.T) {
t.Parallel()
p := script.Exec("sh -c 'sh -c \"echo inception\"'")
if p.Error() != nil {
t.Fatal(p.Error())
}
want := "inception\n"
got, err := p.String()
if err != nil {
t.Fatal(err)
}
if want != got {
t.Error(cmp.Diff(want, got))
}
}
func TestExecErrorsRunningShellCommandWithUnterminatedStringArgument(t *testing.T) {
t.Parallel()
p := script.Exec("sh -c 'echo oh no")
p.Wait()
if p.Error() == nil {
t.Error("want error running 'sh' command line containing unterminated string")
}
}
func TestExecForEach_RunsEchoWithABCAndGetsOutputABC(t *testing.T) {
t.Parallel()
p := script.Echo("a\nb\nc\n").ExecForEach("echo {{.}}")
if p.Error() != nil {
t.Fatal(p.Error())
}
want := "a\nb\nc\n"
got, err := p.String()
if err != nil {
t.Fatal(err)
}
if want != got {
t.Error(cmp.Diff(want, got))
}
}
func TestExecForEach_CorrectlyEvaluatesTemplateContainingIfStatement(t *testing.T) {
t.Parallel()
p := script.Echo("a").ExecForEach("echo {{if .}}it worked!{{end}}")
if p.Error() != nil {
t.Fatal(p.Error())
}
want := "it worked!\n"
got, err := p.String()
if err != nil {
t.Fatal(err)
}
if want != got {
t.Error(cmp.Diff(want, got))
}
}
func TestExecPipesDataToExternalCommandAndGetsExpectedOutput(t *testing.T) {
t.Parallel()
p := script.File("testdata/hello.txt").Exec("cat")
want := "hello world"
got, err := p.String()
if err != nil {
t.Fatal(err)
}
if want != got {
t.Error(cmp.Diff(want, got))
}
}
func TestFindFiles_DoesNotErrorWhenSubDirectoryIsNotReadable(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
restrictedDirPath := filepath.Join(tmpDir, "a_restricted_dir")
if err := os.Mkdir(restrictedDirPath, 0o000); err != nil {
t.Fatal(err)
}
fileAPath := filepath.Join(tmpDir, "file_a.txt")
if err := os.WriteFile(fileAPath, []byte("hello world!"), os.ModePerm); err != nil {
t.Fatal(err)
}
got, err := script.FindFiles(tmpDir).String()
if err != nil {
t.Fatal(err)
}
want := fileAPath + "\n"
if err != nil {
t.Fatal(err)
}
if !cmp.Equal(want, got) {
t.Fatal(cmp.Diff(want, got))
}
}
func ExampleExec_ok() {
script.Exec("echo Hello, world!").Stdout()
// Output:
// Hello, world!
}
func ExampleFindFiles() {
script.FindFiles("testdata/multiple_files_with_subdirectory").Stdout()
// Output:
// testdata/multiple_files_with_subdirectory/1.txt
// testdata/multiple_files_with_subdirectory/2.txt
// testdata/multiple_files_with_subdirectory/3.tar.zip
// testdata/multiple_files_with_subdirectory/dir/.hidden
// testdata/multiple_files_with_subdirectory/dir/1.txt
// testdata/multiple_files_with_subdirectory/dir/2.txt
}
func ExampleIfExists_exec() {
script.IfExists("./testdata/hello.txt").Exec("echo hello").Stdout()
// Output:
// hello
}
func ExampleIfExists_noExec() {
script.IfExists("doesntexist").Exec("echo hello").Stdout()
// Output:
//
}
func ExampleListFiles() {
script.ListFiles("testdata/multiple_files_with_subdirectory").Stdout()
// Output:
// testdata/multiple_files_with_subdirectory/1.txt
// testdata/multiple_files_with_subdirectory/2.txt
// testdata/multiple_files_with_subdirectory/3.tar.zip
// testdata/multiple_files_with_subdirectory/dir
}
func ExamplePipe_Basename() {
input := []string{
"",
"/",
"/root",
"/tmp/example.php",
"/var/tmp/",
"./src/filters",
"C:/Program Files",
}
script.Slice(input).Basename().Stdout()
// Output:
// .
// /
// root
// example.php
// tmp
// filters
// Program Files
}
func ExamplePipe_Dirname() {
input := []string{
"",
"/",
"/root",
"/tmp/example.php",
"/var/tmp/",
"./src/filters",
"C:/Program Files",
}
script.Slice(input).Dirname().Stdout()
// Output:
// .
// /
// /
// /tmp
// /var
// ./src
// C:
}
func ExamplePipe_Exec() {
script.Echo("Hello, world!").Exec("tr a-z A-Z").Stdout()
// Output:
// HELLO, WORLD!
}
func ExamplePipe_ExecForEach() {
script.Echo("a\nb\nc\n").ExecForEach("echo {{.}}").Stdout()
// Output:
// a
// b
// c
}