linkerd2/testutil/stream.go

59 lines
1.1 KiB
Go

package testutil
import (
"bufio"
"fmt"
"io"
"os/exec"
"strings"
"time"
)
// Stream provides the ability of read the output of an executing process while
// it is still running
type Stream struct {
cmd *exec.Cmd
out io.ReadCloser
}
// Stop closes the stream and kills the process
func (s *Stream) Stop() {
s.out.Close()
s.cmd.Process.Kill()
}
// ReadUntil reads from the process output until specified number of lines has
// been reached, or until a timeout
func (s *Stream) ReadUntil(lineCount int, timeout time.Duration) ([]string, error) {
output := make([]string, 0)
lines := make(chan string)
timeoutAfter := time.After(timeout)
scanner := bufio.NewScanner(s.out)
stopSignal := false
go func() {
for scanner.Scan() {
lines <- scanner.Text()
if stopSignal {
close(lines)
return
}
}
}()
for {
select {
case <-timeoutAfter:
stopSignal = true
return output, fmt.Errorf("cmd [%s] Timed out trying to read %d lines", strings.Join(s.cmd.Args, " "), lineCount)
case line := <-lines:
output = append(output, line)
if len(output) >= lineCount {
stopSignal = true
return output, nil
}
}
}
}