forked from lostz/percona-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmdtest.go
106 lines (94 loc) · 2.33 KB
/
cmdtest.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
/*
Copyright (c) 2014-2015, Percona LLC and/or its affiliates. All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package cmdtest
import (
"bytes"
"io"
//"log"
"os/exec"
"time"
)
type CmdTest struct {
reader io.Reader
stdin io.Writer
output <-chan string
}
func NewCmdTest(cmd *exec.Cmd) *CmdTest {
stdin, err := cmd.StdinPipe()
if err != nil {
panic(err)
}
pipeReader, pipeWriter := io.Pipe()
cmd.Stdout = pipeWriter
cmd.Stderr = pipeWriter
cmdOutput := &CmdTest{
reader: pipeReader,
stdin: stdin,
}
cmdOutput.output = cmdOutput.Run()
return cmdOutput
}
func (c *CmdTest) Run() <-chan string {
output := make(chan string, 1024)
go func() {
for {
b := make([]byte, 8192)
n, err := c.reader.Read(b)
if n > 0 {
lines := bytes.SplitAfter(b[:n], []byte("\n"))
// Example: Split(a\nb\n\c\n) => ["a\n", "b\n", "c\n", ""]
// We are getting empty element because data for split was ending with delimiter (\n)
// We don't want it, so we remove it
lastPos := len(lines) - 1
if len(lines[lastPos]) == 0 {
lines = lines[:lastPos]
}
for i := range lines {
line := string(lines[i])
//log.Printf("%#v", line)
output <- line
}
}
if err != nil {
break
}
}
}()
return output
}
func (c *CmdTest) ReadLine() (line string) {
select {
case line = <-c.output:
case <-time.After(400 * time.Millisecond):
}
return line
}
func (c *CmdTest) Write(data string) {
_, err := c.stdin.Write([]byte(data))
if err != nil {
panic(err)
}
}
func (c *CmdTest) Output() []string {
lines := []string{}
OUTPUT_LINES:
for {
if line := c.ReadLine(); line != "" {
lines = append(lines, line)
} else {
break OUTPUT_LINES
}
}
return lines
}