123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- package testutil
- import (
- "errors"
- "fmt"
- "io"
- "io/ioutil"
- "os"
- "os/exec"
- "path/filepath"
- "strings"
- "time"
- "github.com/docker/docker/pkg/stringutils"
- "github.com/docker/docker/pkg/system"
- )
- func runCommandWithOutput(cmd *exec.Cmd) (output string, exitCode int, err error) {
- out, err := cmd.CombinedOutput()
- exitCode = system.ProcessExitCode(err)
- output = string(out)
- return
- }
- // RunCommandPipelineWithOutput runs the array of commands with the output
- // of each pipelined with the following (like cmd1 | cmd2 | cmd3 would do).
- // It returns the final output, the exitCode different from 0 and the error
- // if something bad happened.
- func RunCommandPipelineWithOutput(cmds ...*exec.Cmd) (output string, exitCode int, err error) {
- if len(cmds) < 2 {
- return "", 0, errors.New("pipeline does not have multiple cmds")
- }
- // connect stdin of each cmd to stdout pipe of previous cmd
- for i, cmd := range cmds {
- if i > 0 {
- prevCmd := cmds[i-1]
- cmd.Stdin, err = prevCmd.StdoutPipe()
- if err != nil {
- return "", 0, fmt.Errorf("cannot set stdout pipe for %s: %v", cmd.Path, err)
- }
- }
- }
- // start all cmds except the last
- for _, cmd := range cmds[:len(cmds)-1] {
- if err = cmd.Start(); err != nil {
- return "", 0, fmt.Errorf("starting %s failed with error: %v", cmd.Path, err)
- }
- }
- defer func() {
- var pipeErrMsgs []string
- // wait all cmds except the last to release their resources
- for _, cmd := range cmds[:len(cmds)-1] {
- if pipeErr := cmd.Wait(); pipeErr != nil {
- pipeErrMsgs = append(pipeErrMsgs, fmt.Sprintf("command %s failed with error: %v", cmd.Path, pipeErr))
- }
- }
- if len(pipeErrMsgs) > 0 && err == nil {
- err = fmt.Errorf("pipelineError from Wait: %v", strings.Join(pipeErrMsgs, ", "))
- }
- }()
- // wait on last cmd
- return runCommandWithOutput(cmds[len(cmds)-1])
- }
- // RandomTmpDirPath provides a temporary path with rand string appended.
- // does not create or checks if it exists.
- func RandomTmpDirPath(s string, platform string) string {
- tmp := "/tmp"
- if platform == "windows" {
- tmp = os.Getenv("TEMP")
- }
- path := filepath.Join(tmp, fmt.Sprintf("%s.%s", s, stringutils.GenerateRandomAlphaOnlyString(10)))
- if platform == "windows" {
- return filepath.FromSlash(path) // Using \
- }
- return filepath.ToSlash(path) // Using /
- }
- // ConsumeWithSpeed reads chunkSize bytes from reader before sleeping
- // for interval duration. Returns total read bytes. Send true to the
- // stop channel to return before reading to EOF on the reader.
- func ConsumeWithSpeed(reader io.Reader, chunkSize int, interval time.Duration, stop chan bool) (n int, err error) {
- buffer := make([]byte, chunkSize)
- for {
- var readBytes int
- readBytes, err = reader.Read(buffer)
- n += readBytes
- if err != nil {
- if err == io.EOF {
- err = nil
- }
- return
- }
- select {
- case <-stop:
- return
- case <-time.After(interval):
- }
- }
- }
- // ParseCgroupPaths parses 'procCgroupData', which is output of '/proc/<pid>/cgroup', and returns
- // a map which cgroup name as key and path as value.
- func ParseCgroupPaths(procCgroupData string) map[string]string {
- cgroupPaths := map[string]string{}
- for _, line := range strings.Split(procCgroupData, "\n") {
- parts := strings.Split(line, ":")
- if len(parts) != 3 {
- continue
- }
- cgroupPaths[parts[1]] = parts[2]
- }
- return cgroupPaths
- }
- // ChannelBuffer holds a chan of byte array that can be populate in a goroutine.
- type ChannelBuffer struct {
- C chan []byte
- }
- // Write implements Writer.
- func (c *ChannelBuffer) Write(b []byte) (int, error) {
- c.C <- b
- return len(b), nil
- }
- // Close closes the go channel.
- func (c *ChannelBuffer) Close() error {
- close(c.C)
- return nil
- }
- // ReadTimeout reads the content of the channel in the specified byte array with
- // the specified duration as timeout.
- func (c *ChannelBuffer) ReadTimeout(p []byte, n time.Duration) (int, error) {
- select {
- case b := <-c.C:
- return copy(p[0:], b), nil
- case <-time.After(n):
- return -1, fmt.Errorf("timeout reading from channel")
- }
- }
- // ReadBody read the specified ReadCloser content and returns it
- func ReadBody(b io.ReadCloser) ([]byte, error) {
- defer b.Close()
- return ioutil.ReadAll(b)
- }
|