forked from bitfield/script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript_unix_test.go
190 lines (172 loc) · 3.78 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
//go:build !windows
package script_test
import (
"testing"
"github.com/bitfield/script"
"github.com/google/go-cmp/cmp"
)
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 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
}