Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion distribution/pull_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ func (p *v2Puller) pullManifestList(ctx context.Context, ref reference.Named, mf
manifestMatches := filterManifests(mfstList.Manifests, platform)

if len(manifestMatches) == 0 {
errMsg := fmt.Sprintf("no matching manifest for %s in the manifest list entries", platforms.Format(platform))
errMsg := fmt.Sprintf("no matching manifest for %s in the manifest list entries", formatPlatform(platform))
logrus.Debugf(errMsg)
return "", "", errors.New(errMsg)
}
Expand Down
23 changes: 23 additions & 0 deletions distribution/pull_v2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@ package distribution // import "github.com/docker/docker/distribution"

import (
"encoding/json"
"fmt"
"io/ioutil"
"reflect"
"regexp"
"runtime"
"strings"
"testing"

"github.com/docker/distribution/manifest/schema1"
"github.com/docker/distribution/reference"
"github.com/opencontainers/go-digest"
specs "github.com/opencontainers/image-spec/specs-go/v1"
"gotest.tools/assert"
is "gotest.tools/assert/cmp"
)
Expand Down Expand Up @@ -182,3 +185,23 @@ func TestValidateManifest(t *testing.T) {
t.Fatal("expected validateManifest to fail with digest error")
}
}

func TestFormatPlatform(t *testing.T) {
var platform specs.Platform
var result = formatPlatform(platform)
if strings.HasPrefix(result, "unknown") {
t.Fatal("expected formatPlatform to show a known platform")
}
if !strings.HasPrefix(result, runtime.GOOS) {
t.Fatal("expected formatPlatform to show the current platform")
}
if runtime.GOOS == "windows" {
if !strings.HasPrefix(result, "windows") {
t.Fatal("expected formatPlatform to show windows platform")
}
matches, _ := regexp.MatchString("windows.* [0-9]", result)
if !matches {
t.Fatal(fmt.Sprintf("expected formatPlatform to show windows platform with a version, but got '%s'", result))
}
}
}
7 changes: 7 additions & 0 deletions distribution/pull_v2_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,10 @@ func withDefault(p specs.Platform) specs.Platform {
}
return p
}

func formatPlatform(platform specs.Platform) string {
if platform.OS == "" {
platform = platforms.DefaultSpec()
}
return platforms.Format(platform)
}
8 changes: 8 additions & 0 deletions distribution/pull_v2_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"strconv"
"strings"

"github.com/containerd/containerd/platforms"
"github.com/docker/distribution"
"github.com/docker/distribution/manifest/manifestlist"
"github.com/docker/distribution/manifest/schema2"
Expand Down Expand Up @@ -136,3 +137,10 @@ func checkImageCompatibility(imageOS, imageOSVersion string) error {
}
return nil
}

func formatPlatform(platform specs.Platform) string {
if platform.OS == "" {
platform = platforms.DefaultSpec()
}
return fmt.Sprintf("%s %s", platforms.Format(platform), system.GetOSVersion().ToString())
}