Go version
go version go1.26.0 darwin/arm64
Output of go env in your module/workspace:
AR='ar'
CC='cc'
CGO_CFLAGS='-I/opt/homebrew/Cellar/openssl@3/3.6.1/include'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_ENABLED='1'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
CXX='c++'
GCCGO='gccgo'
GO111MODULE='on'
GOARCH='arm64'
GOARM64='v8.0'
GOAUTH='netrc'
GOBIN=''
GOCACHE='/Users/regan/Library/Caches/go-build'
GOCACHEPROG=''
GODEBUG=''
GOENV='/Users/regan/Library/Application Support/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFIPS140='off'
GOFLAGS=''
GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/jk/prr92kbj6jv4ghr4mqr_l2g46_v314/T/go-build1397540797=/tmp/go-build -gno-record-gcc-switches -fno-common'
GOHOSTARCH='arm64'
GOHOSTOS='darwin'
GOINSECURE=''
GOMOD='/Users/regan/dev/tmp/go.mod'
GOMODCACHE='/Users/regan/go/pkg/mod'
GONOPROXY='gitlab.protectv.local,gitlab.gemaltocloud.com'
GONOSUMDB='gitlab.protectv.local,gitlab.gemaltocloud.com'
GOOS='darwin'
GOPATH='/Users/regan/go'
GOPRIVATE='gitlab.protectv.local,gitlab.gemaltocloud.com'
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/opt/homebrew/Cellar/go/1.26.0/libexec'
GOSUMDB='sum.golang.org'
GOTELEMETRY='on'
GOTELEMETRYDIR='/Users/regan/Library/Application Support/go/telemetry'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/opt/homebrew/Cellar/go/1.26.0/libexec/pkg/tool/darwin_arm64'
GOVCS=''
GOVERSION='go1.26.0'
GOWORK=''
PKG_CONFIG='pkg-config'
What did you do?
When running any test which uses the new ArtifactDir() method, it always ends up generating the _artifacts/<random> style of path, rather than a path derived from the test name and pkg.
Given the following files in an empty folder:
go.mod
module artifactdirtest
go 1.26
sample_test.go
package tmp
import (
"os"
"path/filepath"
"testing"
)
func TestArtifacts(t *testing.T) {
dir := t.ArtifactDir()
// just create a simple text file with hello world, in the artifactDir,
// then fail the test.
err := os.WriteFile(filepath.Join(dir, "hello.txt"), []byte("hello world"), 0o644)
if err != nil {
t.Fatal(err)
}
t.Fatal("failing test to ensure artifact is saved")
}
Run:
What did you see happen?
I got the following output:
=== RUN TestArtifacts
=== ARTIFACTS TestArtifacts /Users/regan/dev/tmp/_artifacts/2595644996
sample_test.go:18: failing test to ensure artifact is saved
--- FAIL: TestArtifacts (0.00s)
FAIL
FAIL artifactdirtest 0.312s
FAIL
What did you expect to see?
The name of the package and test and simple, so I expected to see the artifact dir be tmp/TestArtifacts.
I think the issue is here in testing#common.makeArtifactDir():
// Join with /, not filepath.Join: the import path is /-separated,
// and we don't want removeSymbolsExcept to strip \ separators on Windows.
base := "/" + pkg + "/" + name
base = removeSymbolsExcept(base, "!#$%&()+,-.=@^_{}~ /")
base, err := filepath.Localize(base)
base is hardcoded to start with a forward slash, but filepath.Localize() explicitly rejects any path that starts with a forward slash. That violates the rules of fs.ValidPath():
Paths must not start or end with a slash: “/x” and “x/” are invalid.
In the debugger, the Localize() call always returns an invalid path error.
Go version
go version go1.26.0 darwin/arm64
Output of
go envin your module/workspace:What did you do?
When running any test which uses the new ArtifactDir() method, it always ends up generating the
_artifacts/<random>style of path, rather than a path derived from the test name and pkg.Given the following files in an empty folder:
go.mod
sample_test.go
Run:
What did you see happen?
I got the following output:
What did you expect to see?
The name of the package and test and simple, so I expected to see the artifact dir be
tmp/TestArtifacts.I think the issue is here in testing#common.makeArtifactDir():
baseis hardcoded to start with a forward slash, but filepath.Localize() explicitly rejects any path that starts with a forward slash. That violates the rules offs.ValidPath():In the debugger, the Localize() call always returns an invalid path error.