mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
97b9223a1f
Part of #16756 Use c.Assert instead of condition judgement. Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
26 lines
673 B
Go
26 lines
673 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/docker/docker/pkg/integration/checker"
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSuite) TestLinksEtcHostsContentMatch(c *check.C) {
|
|
// In a _unix file as using Unix specific files, and must be on the
|
|
// same host as the daemon.
|
|
testRequires(c, SameHostDaemon, NotUserNamespace)
|
|
|
|
out, _ := dockerCmd(c, "run", "--net=host", "busybox", "cat", "/etc/hosts")
|
|
hosts, err := ioutil.ReadFile("/etc/hosts")
|
|
if os.IsNotExist(err) {
|
|
c.Skip("/etc/hosts does not exist, skip this test")
|
|
}
|
|
|
|
c.Assert(out, checker.Equals, string(hosts), check.Commentf("container: %s\n\nhost:%s", out, hosts))
|
|
|
|
}
|