2014-02-25 11:17:48 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ensure docker version works
|
|
|
|
func TestVersionEnsureSucceeds(t *testing.T) {
|
|
|
|
versionCmd := exec.Command(dockerBinary, "version")
|
2014-10-14 17:05:37 -04:00
|
|
|
out, _, err := runCommandWithOutput(versionCmd)
|
|
|
|
if err != nil {
|
2014-11-05 11:26:22 -05:00
|
|
|
t.Fatalf("failed to execute docker version: %s, %v", out, err)
|
2014-02-25 11:17:48 -05:00
|
|
|
}
|
|
|
|
|
2014-04-01 20:30:02 -04:00
|
|
|
stringsToCheck := []string{
|
|
|
|
"Client version:",
|
|
|
|
"Client API version:",
|
|
|
|
"Go version (client):",
|
|
|
|
"Git commit (client):",
|
|
|
|
"Server version:",
|
|
|
|
"Server API version:",
|
|
|
|
"Go version (server):",
|
2014-05-17 20:49:58 -04:00
|
|
|
"Git commit (server):",
|
2014-04-01 20:30:02 -04:00
|
|
|
}
|
2014-02-25 11:17:48 -05:00
|
|
|
|
|
|
|
for _, linePrefix := range stringsToCheck {
|
|
|
|
if !strings.Contains(out, linePrefix) {
|
|
|
|
t.Errorf("couldn't find string %v in output", linePrefix)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
logDone("version - verify that it works and that the output is properly formatted")
|
|
|
|
}
|