mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-06-09 18:44:23 +02:00
Running the full suite under `-race` (dropping `-short`) exposed pre-existing data races in parallel matrix-job execution, fixed by not sharing mutable state across combinations: - `containerDaemonSocket()`/`validVolumes()` derive per-job values instead of mutating shared `Config` - `getWorkflowSecrets` builds a fresh map, `rc.steps()` clones each step, and go-git workdir access is serialized - every write to a shared `Job`'s result/outputs runs under a per-`Job` lock, each combo interpolating outputs from a pristine snapshot (last wins, as on GitHub) ### Test suite - capability gates (docker / network / host-tools / Linux) replace the `-short` skips, and the suite runs offline via local fixtures (the artifact flow uses an in-process loopback server, only the docker-action force-pull needs the network) - drops redundant tests, adds a regression test for https://gitea.com/gitea/runner/issues/981 and a docker-in-docker harness (`make test-dind`) --- This PR was written with the help of Claude Opus 4.7 Reviewed-on: https://gitea.com/gitea/runner/pulls/994 Reviewed-by: Nicolas <bircni@icloud.com> Co-authored-by: silverwind <me@silverwind.io> Co-committed-by: silverwind <me@silverwind.io>
70 lines
2.6 KiB
Go
70 lines
2.6 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// Copyright 2020 The nektos/act Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package container
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
"testing"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func init() {
|
|
log.SetLevel(log.DebugLevel)
|
|
}
|
|
|
|
// buildScratchImage builds a tiny empty image for the given platform locally (FROM scratch, no
|
|
// network or emulation since there is nothing to run) and returns its tag, removing it after
|
|
// the test.
|
|
func buildScratchImage(t *testing.T, platform string) string {
|
|
t.Helper()
|
|
tag := fmt.Sprintf("act-test-exists-%s:latest", strings.TrimPrefix(platform, "linux/"))
|
|
cmd := exec.Command("docker", "build", "--platform", platform, "-t", tag, "-")
|
|
cmd.Stdin = strings.NewReader("FROM scratch\nLABEL act-test=1\n")
|
|
// Force BuildKit: it records the requested architecture in the image config for a
|
|
// FROM-scratch build, whereas the classic builder ignores --platform and tags it with the
|
|
// host arch, which would break the per-platform existence assertions below.
|
|
cmd.Env = append(os.Environ(), "DOCKER_BUILDKIT=1")
|
|
out, err := cmd.CombinedOutput()
|
|
require.NoError(t, err, string(out))
|
|
t.Cleanup(func() { _ = exec.Command("docker", "rmi", "-f", tag).Run() })
|
|
return tag
|
|
}
|
|
|
|
func TestImageExistsLocally(t *testing.T) {
|
|
requireDocker(t)
|
|
ctx := context.Background()
|
|
|
|
// a non-existent image is reported absent
|
|
missing, err := ImageExistsLocally(ctx, "library/alpine:this-random-tag-will-never-exist", "linux/amd64")
|
|
assert.NoError(t, err) //nolint:testifylint // pre-existing issue from nektos/act
|
|
assert.False(t, missing)
|
|
|
|
// Build tiny images for two architectures locally so per-platform existence can be checked
|
|
// offline (formerly pulled node:24-bookworm-slim for amd64 and arm64 over the network).
|
|
amd64Ref := buildScratchImage(t, "linux/amd64")
|
|
arm64Ref := buildScratchImage(t, "linux/arm64")
|
|
|
|
amd64Exists, err := ImageExistsLocally(ctx, amd64Ref, "linux/amd64")
|
|
assert.NoError(t, err) //nolint:testifylint // pre-existing issue from nektos/act
|
|
assert.True(t, amd64Exists)
|
|
|
|
// a non-host architecture image is detected for its own architecture
|
|
arm64Exists, err := ImageExistsLocally(ctx, arm64Ref, "linux/arm64")
|
|
assert.NoError(t, err) //nolint:testifylint // pre-existing issue from nektos/act
|
|
assert.True(t, arm64Exists)
|
|
|
|
// a present image is reported absent for a different platform
|
|
wrongPlatform, err := ImageExistsLocally(ctx, amd64Ref, "linux/arm64")
|
|
assert.NoError(t, err) //nolint:testifylint // pre-existing issue from nektos/act
|
|
assert.False(t, wrongPlatform)
|
|
}
|