This repository was archived by the owner on Apr 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathexpect_test.go
More file actions
210 lines (200 loc) · 5.48 KB
/
expect_test.go
File metadata and controls
210 lines (200 loc) · 5.48 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
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
package sweet
import (
//"io/ioutil"
"os"
"os/exec"
"testing"
"time"
)
const testTimeout = 10 * time.Microsecond
func TestExpect(t *testing.T) {
c := make(chan string, 3)
testString := "testString1\n"
c <- testString
testString = "testString2\n"
c <- testString
testString = "testString3\n"
c <- testString
result := make(chan string)
go func() { // time this out incase expect never returns
err := expect("2", c)
if err != nil {
t.Errorf("Error running expect: %s", err.Error())
result <- err.Error()
}
s := <-c
result <- s
}()
select {
case remainder := <-result:
if remainder != "testString3\n" {
t.Errorf("Expect stopped at the wrong place!")
}
case <-time.After(testTimeout):
t.Errorf("Expect call timed out - must have never matched.")
}
}
func TestExpectMulti(t *testing.T) {
c := make(chan string, 3)
testString := "testString1\n"
c <- testString
testString = "testString2\n"
c <- testString
testString = "testString3\n"
c <- testString
result := make(chan string)
go func() { // time this out incase expect never returns
matched, err := expectMulti([]string{"2", "Z", "3"}, c)
if err != nil {
t.Errorf("Error running expectMulti: %s", err.Error())
result <- err.Error()
}
result <- matched
}()
select {
case matched := <-result:
if matched != "2" {
t.Errorf("ExpectMulti matched the wrong string: %s", matched)
}
case <-time.After(testTimeout):
t.Errorf("ExpectMulti call timed out - must have never matched.")
}
}
func TestExpectSave(t *testing.T) {
c := make(chan string, 3)
testString := "testString1\n"
c <- testString
testString = "testString2\n"
c <- testString
testString = "testString3\n"
c <- testString
result := make(chan string)
go func() { // time this out incase expect never returns
saved, err := expectSave("2", c)
if err != nil {
t.Errorf("Error running expect: %s", err.Error())
result <- err.Error()
}
result <- saved
}()
select {
case saved := <-result:
if saved != "testString1\ntestString" {
t.Errorf("ExpectSave returned the wrong string: %s", saved)
}
case <-time.After(testTimeout):
t.Errorf("ExpectSave call timed out - must have never matched.")
}
}
func TestTimeoutSave(t *testing.T) {
c := make(chan string)
result := make(chan string)
testTimeout := 1 * time.Millisecond
go func() { // time this out incase expect never returns
testString := "testString1\n"
c <- testString
time.Sleep(testTimeout - (1 * time.Millisecond))
testString = "testString2\n"
c <- testString
time.Sleep(testTimeout + (1 * time.Millisecond))
testString = "testString3\n"
c <- testString
}()
go func() { // time this out incase expect never returns
saved, err := expectSaveTimeout("#", c, testTimeout)
if err != nil {
t.Errorf("Error running TimeoutSave: %s", err.Error())
result <- err.Error()
}
result <- saved
}()
select {
case saved := <-result:
if saved != "testString1\ntestString2\n" {
t.Errorf("TimeoutSave returned the wrong string: %s", saved)
}
case <-time.After(testTimeout * 3):
t.Errorf("TimeoutSave call timed out - must have never matched.")
}
}
func TestReadChunk(t *testing.T) {
// single line test
createTestFileSH := "echo teststring1 > _sweet_test_readstring"
err := exec.Command("sh", "-c", createTestFileSH).Run()
if err != nil {
t.Errorf("Unable to create test file: %s", err.Error())
return
}
f, err := os.Open("_sweet_test_readstring")
if err != nil {
t.Errorf("Unable to open test file: %s", err.Error())
return
}
s, err := readChunk(f)
if err != nil {
t.Errorf("Error reading string: %s", err.Error())
return
}
if s != "teststring1\n" {
t.Errorf("Got the wrong string back: %s", s)
}
f.Close()
// multi-single line test
createTestFileSH = "echo teststring1 > _sweet_test_readstring; echo teststring2 >> _sweet_test_readstring;"
err = exec.Command("sh", "-c", createTestFileSH).Run()
if err != nil {
t.Errorf("Unable to update test file: %s", err.Error())
return
}
f, err = os.Open("_sweet_test_readstring")
if err != nil {
t.Errorf("Unable to open test file: %s", err.Error())
return
}
s, err = readChunk(f)
if err != nil {
t.Errorf("Error reading string: %s", err.Error())
return
}
if s != "teststring1\nteststring2\n" {
t.Errorf("Got the wrong multi-line string back: %s", s)
}
f.Close()
// test file > chunk size (255):
createTestFileSH = "echo aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa > _sweet_test_readstring"
err = exec.Command("sh", "-c", createTestFileSH).Run()
if err != nil {
t.Errorf("Unable to update test file: %s", err.Error())
return
}
f, err = os.Open("_sweet_test_readstring")
if err != nil {
t.Errorf("Unable to open test file: %s", err.Error())
return
}
s, err = readChunk(f)
if err != nil {
t.Errorf("Error reading string: %s", err.Error())
return
}
if len(s) != 255 {
t.Errorf("Got the wrong length back from a big file: %d", len(s))
}
s, err = readChunk(f)
if err != nil {
t.Errorf("Error reading string: %s", err.Error())
return
}
if len(s) != 2 {
t.Errorf("Got the wrong length back from a big file: %d", len(s))
}
if s != "a\n" {
t.Errorf("Got the wrong string back from a big file: %s", s)
}
f.Close()
// cleanup
err = exec.Command("rm", "_sweet_test_readstring").Run()
if err != nil {
t.Errorf("Unable to remove test file: %s", err.Error())
}
}