mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
Co-authored-by: Claude <noreply@anthropic.com> Signed-off-by: Austin Vazquez <austin.vazquez@docker.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
138 lines
4.4 KiB
Go
138 lines
4.4 KiB
Go
package system
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
"testing"
|
|
|
|
"github.com/moby/moby/api/types/registry"
|
|
"github.com/moby/moby/client"
|
|
"github.com/moby/moby/v2/internal/testutil"
|
|
"github.com/moby/moby/v2/internal/testutil/daemon"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
"gotest.tools/v3/skip"
|
|
)
|
|
|
|
func TestInfoAPI(t *testing.T) {
|
|
ctx := setupTest(t)
|
|
apiClient := testEnv.APIClient()
|
|
|
|
result, err := apiClient.Info(ctx, client.InfoOptions{})
|
|
assert.NilError(t, err)
|
|
|
|
info := result.Info
|
|
// TODO(thaJeztah): make sure we have other tests that run a local daemon and check other fields based on known state.
|
|
assert.Check(t, info.ID != "")
|
|
assert.Check(t, is.Equal(info.Containers, info.ContainersRunning+info.ContainersPaused+info.ContainersStopped))
|
|
assert.Check(t, info.LoggingDriver != "")
|
|
assert.Check(t, info.OperatingSystem != "")
|
|
assert.Check(t, info.NCPU != 0)
|
|
assert.Check(t, info.OSType != "")
|
|
assert.Check(t, info.Architecture != "")
|
|
assert.Check(t, info.MemTotal != 0)
|
|
assert.Check(t, info.KernelVersion != "")
|
|
assert.Check(t, info.Driver != "")
|
|
assert.Check(t, info.ServerVersion != "")
|
|
assert.Check(t, info.SystemTime != "")
|
|
if testEnv.DaemonInfo.OSType != "windows" {
|
|
// Windows currently doesn't have security-options in the info response.
|
|
assert.Check(t, len(info.SecurityOptions) != 0)
|
|
}
|
|
}
|
|
|
|
func TestInfoAPIWarnings(t *testing.T) {
|
|
skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon")
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows", "FIXME")
|
|
|
|
ctx := testutil.StartSpan(baseContext, t)
|
|
|
|
d := daemon.New(t)
|
|
c := d.NewClientT(t)
|
|
|
|
d.Start(t, "-H=0.0.0.0:23756", "-H="+d.Sock())
|
|
defer d.Stop(t)
|
|
|
|
result, err := c.Info(ctx, client.InfoOptions{})
|
|
assert.NilError(t, err)
|
|
|
|
info := result.Info
|
|
|
|
stringsToCheck := []string{
|
|
"Access to the remote API is equivalent to root access",
|
|
"http://0.0.0.0:23756",
|
|
}
|
|
|
|
out := fmt.Sprintf("%+v", info)
|
|
for _, linePrefix := range stringsToCheck {
|
|
assert.Check(t, is.Contains(out, linePrefix))
|
|
}
|
|
}
|
|
|
|
func TestInfoDebug(t *testing.T) {
|
|
skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon")
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows", "FIXME: test starts daemon with -H unix://.....")
|
|
|
|
_ = testutil.StartSpan(baseContext, t)
|
|
|
|
d := daemon.New(t)
|
|
d.Start(t, "--debug")
|
|
defer d.Stop(t)
|
|
|
|
info := d.Info(t)
|
|
assert.Equal(t, info.Debug, true)
|
|
|
|
// Note that the information below is not tied to debug-mode being enabled.
|
|
assert.Check(t, info.NFd != 0)
|
|
|
|
// TODO need a stable way to generate event listeners
|
|
// assert.Check(t, info.NEventsListener != 0)
|
|
assert.Check(t, info.NGoroutines != 0)
|
|
assert.Equal(t, info.DockerRootDir, d.Root)
|
|
}
|
|
|
|
func TestInfoInsecureRegistries(t *testing.T) {
|
|
skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon")
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows", "FIXME: test starts daemon with -H unix://.....")
|
|
|
|
const (
|
|
registryCIDR = "192.168.1.0/24"
|
|
registryHost = "insecurehost.com:5000"
|
|
)
|
|
|
|
d := daemon.New(t)
|
|
d.Start(t, "--insecure-registry="+registryCIDR, "--insecure-registry="+registryHost)
|
|
defer d.Stop(t)
|
|
|
|
info := d.Info(t)
|
|
assert.Assert(t, is.Len(info.RegistryConfig.InsecureRegistryCIDRs, 3))
|
|
cidrs := []string{
|
|
info.RegistryConfig.InsecureRegistryCIDRs[0].String(),
|
|
info.RegistryConfig.InsecureRegistryCIDRs[1].String(),
|
|
info.RegistryConfig.InsecureRegistryCIDRs[2].String(),
|
|
}
|
|
assert.Assert(t, is.Contains(cidrs, registryCIDR))
|
|
assert.Assert(t, is.Contains(cidrs, "::1/128"))
|
|
assert.Assert(t, is.Contains(cidrs, "127.0.0.0/8"))
|
|
assert.DeepEqual(t, *info.RegistryConfig.IndexConfigs["docker.io"], registry.IndexInfo{Name: "docker.io", Mirrors: []string{}, Secure: true, Official: true})
|
|
assert.DeepEqual(t, *info.RegistryConfig.IndexConfigs[registryHost], registry.IndexInfo{Name: registryHost, Mirrors: []string{}, Secure: false, Official: false})
|
|
}
|
|
|
|
func TestInfoRegistryMirrors(t *testing.T) {
|
|
skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon")
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows", "FIXME: test starts daemon with -H unix://.....")
|
|
|
|
const (
|
|
registryMirror1 = "https://192.168.1.2"
|
|
registryMirror2 = "http://registry-mirror.example.com:5000"
|
|
)
|
|
|
|
d := daemon.New(t)
|
|
d.Start(t, "--registry-mirror="+registryMirror1, "--registry-mirror="+registryMirror2)
|
|
defer d.Stop(t)
|
|
|
|
info := d.Info(t)
|
|
sort.Strings(info.RegistryConfig.Mirrors)
|
|
assert.DeepEqual(t, info.RegistryConfig.Mirrors, []string{registryMirror2 + "/", registryMirror1 + "/"})
|
|
}
|