2017-06-15 14:41:54 -04:00
|
|
|
package manifest
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2017-06-15 14:41:54 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/docker/cli/cli/manifest/store"
|
|
|
|
"github.com/docker/cli/cli/manifest/types"
|
|
|
|
manifesttypes "github.com/docker/cli/cli/manifest/types"
|
|
|
|
"github.com/docker/cli/internal/test"
|
|
|
|
"github.com/docker/distribution"
|
|
|
|
"github.com/docker/distribution/manifest/schema2"
|
|
|
|
"github.com/docker/distribution/reference"
|
2018-03-06 15:54:24 -05:00
|
|
|
digest "github.com/opencontainers/go-digest"
|
2018-06-28 20:41:47 -04:00
|
|
|
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
2017-06-15 14:41:54 -04:00
|
|
|
"github.com/pkg/errors"
|
2018-06-08 12:24:26 -04:00
|
|
|
"gotest.tools/assert"
|
|
|
|
is "gotest.tools/assert/cmp"
|
|
|
|
"gotest.tools/golden"
|
2017-06-15 14:41:54 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func newTempManifestStore(t *testing.T) (store.Store, func()) {
|
|
|
|
tmpdir, err := ioutil.TempDir("", "test-manifest-storage")
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.NilError(t, err)
|
2017-06-15 14:41:54 -04:00
|
|
|
|
|
|
|
return store.NewStore(tmpdir), func() { os.RemoveAll(tmpdir) }
|
|
|
|
}
|
|
|
|
|
|
|
|
func ref(t *testing.T, name string) reference.Named {
|
|
|
|
named, err := reference.ParseNamed("example.com/" + name)
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.NilError(t, err)
|
2017-06-15 14:41:54 -04:00
|
|
|
return named
|
|
|
|
}
|
|
|
|
|
|
|
|
func fullImageManifest(t *testing.T, ref reference.Named) types.ImageManifest {
|
|
|
|
man, err := schema2.FromStruct(schema2.Manifest{
|
|
|
|
Versioned: schema2.SchemaVersion,
|
|
|
|
Config: distribution.Descriptor{
|
|
|
|
Digest: "sha256:7328f6f8b41890597575cbaadc884e7386ae0acc53b747401ebce5cf0d624560",
|
|
|
|
Size: 1520,
|
|
|
|
MediaType: schema2.MediaTypeImageConfig,
|
|
|
|
},
|
|
|
|
Layers: []distribution.Descriptor{
|
|
|
|
{
|
|
|
|
MediaType: schema2.MediaTypeLayer,
|
|
|
|
Size: 1990402,
|
|
|
|
Digest: "sha256:88286f41530e93dffd4b964e1db22ce4939fffa4a4c665dab8591fbab03d4926",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.NilError(t, err)
|
2018-06-28 20:41:47 -04:00
|
|
|
|
2017-06-15 14:41:54 -04:00
|
|
|
// TODO: include image data for verbose inspect
|
2018-06-28 20:41:47 -04:00
|
|
|
mt, raw, err := man.Payload()
|
|
|
|
assert.NilError(t, err)
|
|
|
|
|
|
|
|
desc := ocispec.Descriptor{
|
|
|
|
Digest: digest.FromBytes(raw),
|
|
|
|
Size: int64(len(raw)),
|
|
|
|
MediaType: mt,
|
|
|
|
Platform: &ocispec.Platform{
|
|
|
|
Architecture: "amd64",
|
|
|
|
OS: "linux",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return types.NewImageManifest(ref, desc, man)
|
2017-06-15 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestInspectCommandLocalManifestNotFound(t *testing.T) {
|
|
|
|
store, cleanup := newTempManifestStore(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
cli := test.NewFakeCli(nil)
|
|
|
|
cli.SetManifestStore(store)
|
|
|
|
|
|
|
|
cmd := newInspectCommand(cli)
|
|
|
|
cmd.SetOutput(ioutil.Discard)
|
|
|
|
cmd.SetArgs([]string{"example.com/list:v1", "example.com/alpine:3.0"})
|
|
|
|
err := cmd.Execute()
|
2018-03-06 15:54:24 -05:00
|
|
|
assert.Error(t, err, "No such manifest: example.com/alpine:3.0")
|
2017-06-15 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestInspectCommandNotFound(t *testing.T) {
|
|
|
|
store, cleanup := newTempManifestStore(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
cli := test.NewFakeCli(nil)
|
|
|
|
cli.SetManifestStore(store)
|
|
|
|
cli.SetRegistryClient(&fakeRegistryClient{
|
|
|
|
getManifestFunc: func(_ context.Context, _ reference.Named) (manifesttypes.ImageManifest, error) {
|
|
|
|
return manifesttypes.ImageManifest{}, errors.New("missing")
|
|
|
|
},
|
|
|
|
getManifestListFunc: func(ctx context.Context, ref reference.Named) ([]manifesttypes.ImageManifest, error) {
|
|
|
|
return nil, errors.Errorf("No such manifest: %s", ref)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
cmd := newInspectCommand(cli)
|
|
|
|
cmd.SetOutput(ioutil.Discard)
|
|
|
|
cmd.SetArgs([]string{"example.com/alpine:3.0"})
|
|
|
|
err := cmd.Execute()
|
2018-03-06 15:54:24 -05:00
|
|
|
assert.Error(t, err, "No such manifest: example.com/alpine:3.0")
|
2017-06-15 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestInspectCommandLocalManifest(t *testing.T) {
|
|
|
|
store, cleanup := newTempManifestStore(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
cli := test.NewFakeCli(nil)
|
|
|
|
cli.SetManifestStore(store)
|
|
|
|
namedRef := ref(t, "alpine:3.0")
|
|
|
|
imageManifest := fullImageManifest(t, namedRef)
|
|
|
|
err := store.Save(ref(t, "list:v1"), namedRef, imageManifest)
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.NilError(t, err)
|
2017-06-15 14:41:54 -04:00
|
|
|
|
|
|
|
cmd := newInspectCommand(cli)
|
|
|
|
cmd.SetArgs([]string{"example.com/list:v1", "example.com/alpine:3.0"})
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.NilError(t, cmd.Execute())
|
2017-06-15 14:41:54 -04:00
|
|
|
actual := cli.OutBuffer()
|
|
|
|
expected := golden.Get(t, "inspect-manifest.golden")
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, is.Equal(string(expected), actual.String()))
|
2017-06-15 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestInspectcommandRemoteManifest(t *testing.T) {
|
|
|
|
store, cleanup := newTempManifestStore(t)
|
|
|
|
defer cleanup()
|
|
|
|
|
|
|
|
cli := test.NewFakeCli(nil)
|
|
|
|
cli.SetManifestStore(store)
|
|
|
|
cli.SetRegistryClient(&fakeRegistryClient{
|
|
|
|
getManifestFunc: func(_ context.Context, ref reference.Named) (manifesttypes.ImageManifest, error) {
|
|
|
|
return fullImageManifest(t, ref), nil
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
cmd := newInspectCommand(cli)
|
|
|
|
cmd.SetOutput(ioutil.Discard)
|
|
|
|
cmd.SetArgs([]string{"example.com/alpine:3.0"})
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.NilError(t, cmd.Execute())
|
2017-06-15 14:41:54 -04:00
|
|
|
actual := cli.OutBuffer()
|
|
|
|
expected := golden.Get(t, "inspect-manifest.golden")
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, is.Equal(string(expected), actual.String()))
|
2017-06-15 14:41:54 -04:00
|
|
|
}
|