tests: handle multiple docker versions

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2024-11-20 00:59:09 +01:00
parent a6ef9db84d
commit a69d857b8a
No known key found for this signature in database
GPG Key ID: ADE44D8C9D44FBE4
7 changed files with 81 additions and 12 deletions

View File

@ -76,6 +76,16 @@ jobs:
- worker: docker+containerd # same as docker, but with containerd snapshotter - worker: docker+containerd # same as docker, but with containerd snapshotter
pkg: ./tests pkg: ./tests
mode: experimental mode: experimental
- worker: "docker@26.1"
pkg: ./tests
- worker: "docker+containerd@26.1" # same as docker, but with containerd snapshotter
pkg: ./tests
- worker: "docker@26.1"
pkg: ./tests
mode: experimental
- worker: "docker+containerd@26.1" # same as docker, but with containerd snapshotter
pkg: ./tests
mode: experimental
steps: steps:
- -
name: Prepare name: Prepare
@ -86,7 +96,7 @@ jobs:
fi fi
testFlags="--run=//worker=$(echo "${{ matrix.worker }}" | sed 's/\+/\\+/g')$" testFlags="--run=//worker=$(echo "${{ matrix.worker }}" | sed 's/\+/\\+/g')$"
case "${{ matrix.worker }}" in case "${{ matrix.worker }}" in
docker | docker+containerd) docker | docker+containerd | docker@* | docker+containerd@*)
echo "TESTFLAGS=${{ env.TESTFLAGS_DOCKER }} $testFlags" >> $GITHUB_ENV echo "TESTFLAGS=${{ env.TESTFLAGS_DOCKER }} $testFlags" >> $GITHUB_ENV
;; ;;
*) *)

View File

@ -5,6 +5,7 @@ ARG XX_VERSION=1.5.0
# for testing # for testing
ARG DOCKER_VERSION=27.4.0-rc.2 ARG DOCKER_VERSION=27.4.0-rc.2
ARG DOCKER_VERSION_ALT_26=26.1.3
ARG DOCKER_CLI_VERSION=${DOCKER_VERSION} ARG DOCKER_CLI_VERSION=${DOCKER_VERSION}
ARG GOTESTSUM_VERSION=v1.12.0 ARG GOTESTSUM_VERSION=v1.12.0
ARG REGISTRY_VERSION=2.8.3 ARG REGISTRY_VERSION=2.8.3
@ -15,6 +16,8 @@ FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-alpine AS golatest FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-alpine AS golatest
FROM moby/moby-bin:$DOCKER_VERSION AS docker-engine FROM moby/moby-bin:$DOCKER_VERSION AS docker-engine
FROM dockereng/cli-bin:$DOCKER_CLI_VERSION AS docker-cli FROM dockereng/cli-bin:$DOCKER_CLI_VERSION AS docker-cli
FROM moby/moby-bin:$DOCKER_VERSION_ALT_26 AS docker-engine-alt
FROM dockereng/cli-bin:$DOCKER_VERSION_ALT_26 AS docker-cli-alt
FROM registry:$REGISTRY_VERSION AS registry FROM registry:$REGISTRY_VERSION AS registry
FROM moby/buildkit:$BUILDKIT_VERSION AS buildkit FROM moby/buildkit:$BUILDKIT_VERSION AS buildkit
FROM crazymax/undock:$UNDOCK_VERSION AS undock FROM crazymax/undock:$UNDOCK_VERSION AS undock
@ -122,10 +125,13 @@ COPY --link --from=gotestsum /out /usr/bin/
COPY --link --from=registry /bin/registry /usr/bin/ COPY --link --from=registry /bin/registry /usr/bin/
COPY --link --from=docker-engine / /usr/bin/ COPY --link --from=docker-engine / /usr/bin/
COPY --link --from=docker-cli / /usr/bin/ COPY --link --from=docker-cli / /usr/bin/
COPY --link --from=docker-engine-alt / /opt/docker-alt-26/
COPY --link --from=docker-cli-alt / /opt/docker-alt-26/
COPY --link --from=buildkit /usr/bin/buildkitd /usr/bin/ COPY --link --from=buildkit /usr/bin/buildkitd /usr/bin/
COPY --link --from=buildkit /usr/bin/buildctl /usr/bin/ COPY --link --from=buildkit /usr/bin/buildctl /usr/bin/
COPY --link --from=undock /usr/local/bin/undock /usr/bin/ COPY --link --from=undock /usr/local/bin/undock /usr/bin/
COPY --link --from=binaries /buildx /usr/bin/ COPY --link --from=binaries /buildx /usr/bin/
ENV TEST_DOCKER_EXTRA="docker@26.1=/opt/docker-alt-26"
FROM integration-test-base AS integration-test FROM integration-test-base AS integration-test
COPY . . COPY . .

View File

@ -505,7 +505,7 @@ RUN exit 1`)
func testBuildProgress(t *testing.T, sb integration.Sandbox) { func testBuildProgress(t *testing.T, sb integration.Sandbox) {
dir := createTestProject(t) dir := createTestProject(t)
sbDriver, _ := driverName(sb.Name()) sbDriver, _, _ := driverName(sb.Name())
name := sb.Address() name := sb.Address()
// progress=tty // progress=tty

View File

@ -45,7 +45,7 @@ func testInspect(t *testing.T, sb integration.Sandbox) {
} }
require.Equal(t, sb.Address(), name) require.Equal(t, sb.Address(), name)
sbDriver, _ := driverName(sb.Name()) sbDriver, _, _ := driverName(sb.Name())
require.Equal(t, sbDriver, driver) require.Equal(t, sbDriver, driver)
if isDockerWorker(sb) { if isDockerWorker(sb) {
require.NotEmpty(t, hostGatewayIP, "host-gateway-ip worker label should be set with docker driver") require.NotEmpty(t, hostGatewayIP, "host-gateway-ip worker label should be set with docker driver")

View File

@ -95,33 +95,37 @@ func buildxConfig(sb integration.Sandbox) string {
} }
func isMobyWorker(sb integration.Sandbox) bool { func isMobyWorker(sb integration.Sandbox) bool {
name, hasFeature := driverName(sb.Name()) name, _, hasFeature := driverName(sb.Name())
return name == "docker" && !hasFeature return name == "docker" && !hasFeature
} }
func isMobyContainerdSnapWorker(sb integration.Sandbox) bool { func isMobyContainerdSnapWorker(sb integration.Sandbox) bool {
name, hasFeature := driverName(sb.Name()) name, _, hasFeature := driverName(sb.Name())
return name == "docker" && hasFeature return name == "docker" && hasFeature
} }
func isDockerWorker(sb integration.Sandbox) bool { func isDockerWorker(sb integration.Sandbox) bool {
name, _ := driverName(sb.Name()) name, _, _ := driverName(sb.Name())
return name == "docker" return name == "docker"
} }
func isDockerContainerWorker(sb integration.Sandbox) bool { func isDockerContainerWorker(sb integration.Sandbox) bool {
name, _ := driverName(sb.Name()) name, _, _ := driverName(sb.Name())
return name == "docker-container" return name == "docker-container"
} }
func driverName(sbName string) (string, bool) { func driverName(sbName string) (string, bool, bool) {
name := sbName name := sbName
var hasFeature bool var hasVersion, hasFeature bool
if b, _, ok := strings.Cut(sbName, "@"); ok {
name = b
hasVersion = true
}
if b, _, ok := strings.Cut(name, "+"); ok { if b, _, ok := strings.Cut(name, "+"); ok {
name = b name = b
hasFeature = true hasFeature = true
} }
return name, hasFeature return name, hasVersion, hasFeature
} }
func isExperimental() bool { func isExperimental() bool {

View File

@ -34,7 +34,7 @@ func testLs(t *testing.T, sb integration.Sandbox) {
}, },
} }
sbDriver, _ := driverName(sb.Name()) sbDriver, _, _ := driverName(sb.Name())
for _, tt := range tests { for _, tt := range tests {
tt := tt tt := tt
t.Run(tt.name, func(t *testing.T) { t.Run(tt.name, func(t *testing.T) {

View File

@ -2,10 +2,14 @@ package workers
import ( import (
"context" "context"
"fmt"
"os" "os"
"os/exec" "os/exec"
"path/filepath"
"strings"
"github.com/moby/buildkit/identity" "github.com/moby/buildkit/identity"
"github.com/moby/buildkit/util/testutil/dockerd"
"github.com/moby/buildkit/util/testutil/integration" "github.com/moby/buildkit/util/testutil/integration"
bkworkers "github.com/moby/buildkit/util/testutil/workers" bkworkers "github.com/moby/buildkit/util/testutil/workers"
"github.com/pkg/errors" "github.com/pkg/errors"
@ -13,18 +17,61 @@ import (
func InitDockerWorker() { func InitDockerWorker() {
integration.Register(&dockerWorker{ integration.Register(&dockerWorker{
id: "docker", id: "docker",
binary: dockerd.DefaultDockerdBinary,
}) })
integration.Register(&dockerWorker{ integration.Register(&dockerWorker{
id: "docker+containerd", id: "docker+containerd",
binary: dockerd.DefaultDockerdBinary,
containerdSnapshotter: true, containerdSnapshotter: true,
}) })
// e.g. `docker@26.0=/opt/docker-26.0,docker@25.0=/opt/docker-25.0`
if s := os.Getenv("TEST_DOCKER_EXTRA"); s != "" {
entries := strings.Split(s, ",")
for _, entry := range entries {
ver, bin, err := func(entry string) (string, string, error) {
p1 := strings.Split(strings.TrimSpace(entry), "=")
if len(p1) != 2 {
return "", "", errors.Errorf("invalid entry: %q", entry)
}
name, bin := p1[0], p1[1]
if _, err := os.Stat(bin); err != nil {
return "", "", errors.Wrapf(err, "bin not found: %q", bin)
}
p2 := strings.Split(strings.TrimSpace(name), "@")
if len(p2) != 2 {
return "", "", errors.Errorf("invalid name: %q", name)
}
_, ver := p2[0], p2[1]
if ver == "" {
return "", "", errors.New("empty version")
}
return ver, bin, nil
}(entry)
if err != nil {
panic(errors.Wrapf(err, "unexpected TEST_DOCKER_EXTRA: %q", s))
}
integration.Register(&dockerWorker{
id: fmt.Sprintf("docker@%s", ver),
binary: filepath.Join(bin, "dockerd"),
extraEnv: []string{fmt.Sprintf("PATH=%s:%s", bin, os.Getenv("PATH"))},
})
integration.Register(&dockerWorker{
id: fmt.Sprintf("docker+containerd@%s", ver),
binary: filepath.Join(bin, "dockerd"),
containerdSnapshotter: true,
extraEnv: []string{fmt.Sprintf("PATH=%s:%s", bin, os.Getenv("PATH"))},
})
}
}
} }
type dockerWorker struct { type dockerWorker struct {
id string id string
binary string
containerdSnapshotter bool containerdSnapshotter bool
unsupported []string unsupported []string
extraEnv []string
} }
func (c dockerWorker) Name() string { func (c dockerWorker) Name() string {
@ -42,7 +89,9 @@ func (c *dockerWorker) NetNSDetached() bool {
func (c dockerWorker) New(ctx context.Context, cfg *integration.BackendConfig) (b integration.Backend, cl func() error, err error) { func (c dockerWorker) New(ctx context.Context, cfg *integration.BackendConfig) (b integration.Backend, cl func() error, err error) {
moby := bkworkers.Moby{ moby := bkworkers.Moby{
ID: c.id, ID: c.id,
Binary: c.binary,
ContainerdSnapshotter: c.containerdSnapshotter, ContainerdSnapshotter: c.containerdSnapshotter,
ExtraEnv: c.extraEnv,
} }
bk, bkclose, err := moby.New(ctx, cfg) bk, bkclose, err := moby.New(ctx, cfg)
if err != nil { if err != nil {