mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
These comments were added to enforce using the correct import path for
our packages ("github.com/docker/docker", not "github.com/moby/moby").
However, when working in go module mode (not GOPATH / vendor), they have
no effect, so their impact is limited.
Remove these imports in preparation of migrating our code to become an
actual go module.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
120 lines
3.4 KiB
Go
120 lines
3.4 KiB
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
"testing"
|
|
|
|
cerrdefs "github.com/containerd/errdefs"
|
|
"github.com/docker/docker/api/types/image"
|
|
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestImageInspectError(t *testing.T) {
|
|
client := &Client{
|
|
client: newMockClient(errorMock(http.StatusInternalServerError, "Server error")),
|
|
}
|
|
|
|
_, err := client.ImageInspect(context.Background(), "nothing")
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsInternal))
|
|
}
|
|
|
|
func TestImageInspectImageNotFound(t *testing.T) {
|
|
client := &Client{
|
|
client: newMockClient(errorMock(http.StatusNotFound, "Server error")),
|
|
}
|
|
|
|
_, err := client.ImageInspect(context.Background(), "unknown")
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsNotFound))
|
|
}
|
|
|
|
func TestImageInspectWithEmptyID(t *testing.T) {
|
|
client := &Client{
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
return nil, errors.New("should not make request")
|
|
}),
|
|
}
|
|
_, err := client.ImageInspect(context.Background(), "")
|
|
assert.Check(t, is.ErrorType(err, cerrdefs.IsNotFound))
|
|
}
|
|
|
|
func TestImageInspect(t *testing.T) {
|
|
expectedURL := "/images/image_id/json"
|
|
expectedTags := []string{"tag1", "tag2"}
|
|
client := &Client{
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
}
|
|
content, err := json.Marshal(image.InspectResponse{
|
|
ID: "image_id",
|
|
RepoTags: expectedTags,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &http.Response{
|
|
StatusCode: http.StatusOK,
|
|
Body: io.NopCloser(bytes.NewReader(content)),
|
|
}, nil
|
|
}),
|
|
}
|
|
|
|
imageInspect, err := client.ImageInspect(context.Background(), "image_id")
|
|
assert.NilError(t, err)
|
|
assert.Check(t, is.Equal(imageInspect.ID, "image_id"))
|
|
assert.Check(t, is.DeepEqual(imageInspect.RepoTags, expectedTags))
|
|
}
|
|
|
|
func TestImageInspectWithPlatform(t *testing.T) {
|
|
expectedURL := "/images/image_id/json"
|
|
requestedPlatform := &ocispec.Platform{
|
|
OS: "linux",
|
|
Architecture: "arm64",
|
|
}
|
|
|
|
expectedPlatform, err := encodePlatform(requestedPlatform)
|
|
assert.NilError(t, err)
|
|
|
|
client := &Client{
|
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
|
if !strings.HasPrefix(req.URL.Path, expectedURL) {
|
|
return nil, fmt.Errorf("Expected URL '%s', got '%s'", expectedURL, req.URL)
|
|
}
|
|
|
|
// Check if platform parameter is passed correctly
|
|
platform := req.URL.Query().Get("platform")
|
|
if platform != expectedPlatform {
|
|
return nil, fmt.Errorf("Expected platform '%s', got '%s'", expectedPlatform, platform)
|
|
}
|
|
|
|
content, err := json.Marshal(image.InspectResponse{
|
|
ID: "image_id",
|
|
Architecture: "arm64",
|
|
Os: "linux",
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &http.Response{
|
|
StatusCode: http.StatusOK,
|
|
Body: io.NopCloser(bytes.NewReader(content)),
|
|
}, nil
|
|
}),
|
|
}
|
|
|
|
imageInspect, err := client.ImageInspect(context.Background(), "image_id", ImageInspectWithPlatform(requestedPlatform))
|
|
assert.NilError(t, err)
|
|
assert.Check(t, is.Equal(imageInspect.ID, "image_id"))
|
|
assert.Check(t, is.Equal(imageInspect.Architecture, "arm64"))
|
|
assert.Check(t, is.Equal(imageInspect.Os, "linux"))
|
|
}
|