
``` === FAIL: core/metadata (0.00s) /tmp/go-build142702247/b1061/metadata.test flag redefined: test.root panic: /tmp/go-build142702247/b1061/metadata.test flag redefined: test.root goroutine 1 [running]: flag.(*FlagSet).Var(0xc0000d6000, {0x132a040, 0x190f3f3}, {0x11b4291, 0x9}, {0x11c7690, 0x1e}) /opt/hostedtoolcache/go/1.23.2/x64/src/flag/flag.go:1028 +0x54d flag.BoolVar(...) /opt/hostedtoolcache/go/1.23.2/x64/src/flag/flag.go:755 github.com/containerd/containerd/v2/pkg/testutil.init.0() /home/runner/work/containerd/containerd/pkg/testutil/helpers.go:36 +0x6b FAIL github.com/containerd/containerd/v2/core/metadata 0.028s ``` Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
104 lines
2.7 KiB
Go
104 lines
2.7 KiB
Go
/*
|
|
Copyright The containerd Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package testutil
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
"testing"
|
|
|
|
"github.com/containerd/containerd/v2/core/mount"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
const umountflags int = 0
|
|
|
|
var rootEnabled bool
|
|
|
|
func init() {
|
|
if flag.Lookup("test.root") == nil {
|
|
flag.BoolVar(&rootEnabled, "test.root", false, "enable tests that require root")
|
|
} else {
|
|
// The flag is already registered by continuity/testutil
|
|
for _, f := range os.Args {
|
|
if f == "-test.root" || f == "-test.root=true" {
|
|
rootEnabled = true
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// DumpDir prints the contents of the directory to the testing logger.
|
|
//
|
|
// Use this in a defer statement from a test that may allocate and exercise a
|
|
// temporary directory. Immensely useful for sanity checking and debugging
|
|
// failing tests.
|
|
//
|
|
// One should still test that contents are as expected. This is only a visual
|
|
// tool to assist when things don't go your way.
|
|
func DumpDir(t *testing.T, root string) {
|
|
if err := filepath.Walk(root, func(path string, fi os.FileInfo, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if fi.Mode()&os.ModeSymlink != 0 {
|
|
target, err := os.Readlink(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
t.Log(fi.Mode(), fmt.Sprintf("%10s", ""), path, "->", target)
|
|
} else if fi.Mode().IsRegular() {
|
|
p, err := os.ReadFile(path)
|
|
if err != nil {
|
|
t.Logf("error reading file: %v", err)
|
|
return nil
|
|
}
|
|
|
|
if len(p) > 64 { // just display a little bit.
|
|
p = p[:64]
|
|
}
|
|
t.Log(fi.Mode(), fmt.Sprintf("%10d", fi.Size()), path, "[", strconv.Quote(string(p)), "...]")
|
|
} else {
|
|
t.Log(fi.Mode(), fmt.Sprintf("%10d", fi.Size()), path)
|
|
}
|
|
|
|
return nil
|
|
}); err != nil {
|
|
t.Fatalf("error dumping directory: %v", err)
|
|
}
|
|
}
|
|
|
|
// DumpDirOnFailure prints the contents of the directory to the testing logger if
|
|
// the test has failed.
|
|
func DumpDirOnFailure(t *testing.T, root string) {
|
|
if t.Failed() {
|
|
DumpDir(t, root)
|
|
}
|
|
}
|
|
|
|
// Unmount unmounts a given mountPoint and sets t.Error if it fails
|
|
func Unmount(t testing.TB, mountPoint string) {
|
|
t.Log("unmount", mountPoint)
|
|
err := mount.UnmountAll(mountPoint, umountflags)
|
|
assert.NoError(t, err)
|
|
}
|