mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e424c54d9c
This fixes the `docker events`-related tests as they have been failing due to clock skew between CI machine and test daemon on some other machine (even 1-2 seconds of diff causes races as we pass local time to --since/--until). If we're running in same host, we keep using time.Now(), otherwise we read the system time of the daemon from `/info` endpoint. Fixes pretty much all events-related tests on windows CI. Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/exec"
|
|
"testing"
|
|
"unicode"
|
|
|
|
"github.com/kr/pty"
|
|
)
|
|
|
|
// #5979
|
|
func TestEventsRedirectStdout(t *testing.T) {
|
|
since := daemonTime(t).Unix()
|
|
dockerCmd(t, "run", "busybox", "true")
|
|
defer deleteAllContainers()
|
|
|
|
file, err := ioutil.TempFile("", "")
|
|
if err != nil {
|
|
t.Fatalf("could not create temp file: %v", err)
|
|
}
|
|
defer os.Remove(file.Name())
|
|
|
|
command := fmt.Sprintf("%s events --since=%d --until=%d > %s", dockerBinary, since, daemonTime(t).Unix(), file.Name())
|
|
_, tty, err := pty.Open()
|
|
if err != nil {
|
|
t.Fatalf("Could not open pty: %v", err)
|
|
}
|
|
cmd := exec.Command("sh", "-c", command)
|
|
cmd.Stdin = tty
|
|
cmd.Stdout = tty
|
|
cmd.Stderr = tty
|
|
if err := cmd.Run(); err != nil {
|
|
t.Fatalf("run err for command %q: %v", command, err)
|
|
}
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
for scanner.Scan() {
|
|
for _, c := range scanner.Text() {
|
|
if unicode.IsControl(c) {
|
|
t.Fatalf("found control character %v", []byte(string(c)))
|
|
}
|
|
}
|
|
}
|
|
if err := scanner.Err(); err != nil {
|
|
t.Fatalf("Scan err for command %q: %v", command, err)
|
|
}
|
|
|
|
logDone("events - redirect stdout")
|
|
}
|