-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcommand_test.go
105 lines (95 loc) · 2.43 KB
/
command_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
package stretcher_test
import (
"bytes"
"context"
"fmt"
"os"
"strings"
"testing"
"time"
"github.com/fujiwara/stretcher"
)
func TestCommandLines(t *testing.T) {
ctx := context.Background()
stretcher.LogBuffer.Reset()
now := time.Now()
ymd := now.Format("20060102")
hm := now.Format("1504")
cmdlines := stretcher.CommandLines{
stretcher.CommandLine("date +%Y%m%d"),
stretcher.CommandLine("date +%H%M"),
}
cmdlines.Invoke(ctx)
output := stretcher.LogBuffer.String()
if strings.Index(output, ymd) == -1 {
t.Error("invalid output", output)
}
if strings.Index(output, hm) == -1 {
t.Error("invalid output", output)
}
}
func TestCommandLinesPipe(t *testing.T) {
ctx := context.Background()
stretcher.LogBuffer.Reset()
var buf bytes.Buffer
for i := 0; i < 10; i++ {
buf.WriteString(fmt.Sprintf("foo%d\n", i))
}
toWrite := buf.Bytes()
cmdlines := stretcher.CommandLines{
stretcher.CommandLine("cat > test/tmp/cmdoutput"),
stretcher.CommandLine("cat"),
stretcher.CommandLine("echo ok"),
}
defer os.Remove("test/tmp/cmdoutput")
err := cmdlines.InvokePipe(ctx, &buf)
if err != nil {
t.Error(err)
}
wrote, err := os.ReadFile("test/tmp/cmdoutput")
if err != nil {
t.Error(err)
}
if bytes.Compare(toWrite, wrote) != 0 {
t.Error("unexpected wrote data", wrote)
}
}
func TestCommandLinesFail(t *testing.T) {
ctx := context.Background()
stretcher.LogBuffer.Reset()
cmdlines := stretcher.CommandLines{
stretcher.CommandLine("echo 'FOO'; echo 'BAR' 2>&1; false"),
}
err := cmdlines.Invoke(ctx)
if err == nil {
t.Error("false command must fail")
}
if fmt.Sprintf("%s", err) != "failed: echo 'FOO'; echo 'BAR' 2>&1; false exit status 1" {
t.Error("invalid err message.", err)
}
output := string(stretcher.LogBuffer.Bytes())
if !strings.Contains(output, "FOO\n") {
t.Error("output does not contain FOO\\n")
}
if !strings.Contains(output, "BAR\n") {
t.Error("output does not contain BAR\\n")
}
}
func TestCommandLinesPipeIgnoreEPIPE(t *testing.T) {
ctx := context.Background()
stretcher.LogBuffer.Reset()
var buf bytes.Buffer
for i := 0; i < 1025; i++ {
buf.WriteString("0123456789012345678901234567890123456789012345678901234567890123") // 64 bytes
}
cmdlines := stretcher.CommandLines{
stretcher.CommandLine("echo ok"),
}
err := cmdlines.InvokePipe(ctx, &buf)
if err != nil {
t.Error(err)
}
if strings.Index(stretcher.LogBuffer.String(), "broken pipe") != -1 {
t.Error("broken pipe was occuered")
}
}