Files
podman/pkg/machine/e2e/machine_test.go
Arthur Sengileyev ededb4c3c4 Improve platform specific URL handling in podman compose for machines
Use filepath utility instead of generic string replace to convert path
on Windows. This also separates OS specific implementations to separate
compilation sources and removes redundant check for virtualization
provider on Windows platform.

Signed-off-by: Arthur Sengileyev <arthur.sengileyev@gmail.com>
2024-12-02 20:46:51 +02:00

247 lines
6.1 KiB
Go

package e2e_test
import (
"cmp"
"errors"
"fmt"
"os"
"path/filepath"
"runtime"
"slices"
"strings"
"testing"
"time"
"github.com/containers/common/pkg/config"
"github.com/containers/podman/v5/pkg/machine/define"
"github.com/containers/podman/v5/pkg/machine/provider"
"github.com/containers/podman/v5/pkg/machine/vmconfigs"
"github.com/containers/podman/v5/utils"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestMain(m *testing.M) {
os.Exit(m.Run())
}
const (
defaultDiskSize uint = 11
)
var (
tmpDir = os.TempDir()
fqImageName string
suiteImageName string
)
func init() {
if value, ok := os.LookupEnv("TMPDIR"); ok {
var err error
tmpDir, err = setTmpDir(value)
if err != nil {
fmt.Printf("failed to set TMPDIR: %q\n", err)
}
}
}
// TestLibpod ginkgo master function
func TestMachine(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Podman Machine tests")
}
var testProvider vmconfigs.VMProvider
var _ = BeforeSuite(func() {
var (
err error
pullError error
)
testProvider, err = provider.Get()
if err != nil {
Fail("unable to create testProvider")
}
testDiskProvider := testProvider.VMType()
if testDiskProvider == define.LibKrun {
testDiskProvider = define.AppleHvVirt // libkrun uses the applehv image for testing
}
pullError = pullOCITestDisk(tmpDir, testDiskProvider)
if pullError != nil {
Fail(fmt.Sprintf("failed to pull disk: %q", pullError))
}
})
type timing struct {
name string
length time.Duration
}
var timings []timing
var _ = AfterEach(func() {
r := CurrentSpecReport()
timings = append(timings, timing{
name: r.FullText(),
length: r.RunTime,
})
})
var _ = SynchronizedAfterSuite(func() {}, func() {
slices.SortFunc(timings, func(a, b timing) int {
return cmp.Compare(a.length, b.length)
})
for _, t := range timings {
GinkgoWriter.Printf("%s\t\t%f seconds\n", t.name, t.length.Seconds())
}
})
// The config does not matter to much for our testing, however we
// would like to be sure podman machine is not effected by certain
// settings as we should be using full URLs anywhere.
// https://github.com/containers/podman/issues/24567
const sshConfigContent = `
Host *
User NOT_REAL
Port 9999
Host 127.0.0.1
User blah
IdentityFile ~/.ssh/id_ed25519
`
func setup() (string, *machineTestBuilder) {
// Set TMPDIR if this needs a new directory
if value, ok := os.LookupEnv("TMPDIR"); ok {
var err error
tmpDir, err = setTmpDir(value)
if err != nil {
Fail(fmt.Sprintf("failed to set TMPDIR: %q", err))
}
}
homeDir, err := os.MkdirTemp(tmpDir, "podman_test")
if err != nil {
Fail(fmt.Sprintf("failed to create home directory: %q", err))
}
if err := os.MkdirAll(filepath.Join(homeDir, ".ssh"), 0700); err != nil {
Fail(fmt.Sprintf("failed to create ssh dir: %q", err))
}
sshConfig, err := os.Create(filepath.Join(homeDir, ".ssh", "config"))
if err != nil {
Fail(fmt.Sprintf("failed to create ssh config: %q", err))
}
if _, err := sshConfig.WriteString(sshConfigContent); err != nil {
Fail(fmt.Sprintf("failed to write ssh config: %q", err))
}
if err := sshConfig.Close(); err != nil {
Fail(fmt.Sprintf("unable to close ssh config file descriptor: %q", err))
}
if err := os.Setenv("HOME", homeDir); err != nil {
Fail("failed to set home dir")
}
if runtime.GOOS == "windows" {
if err := os.Setenv("USERPROFILE", homeDir); err != nil {
Fail("unable to set home dir on windows")
}
}
if err := os.Setenv("XDG_RUNTIME_DIR", homeDir); err != nil {
Fail("failed to set xdg_runtime dir")
}
if err := os.Unsetenv("SSH_AUTH_SOCK"); err != nil {
Fail("unable to unset SSH_AUTH_SOCK")
}
if err := os.Setenv("PODMAN_CONNECTIONS_CONF", filepath.Join(homeDir, "connections.json")); err != nil {
Fail("failed to set PODMAN_CONNECTIONS_CONF")
}
if err := os.Setenv("PODMAN_COMPOSE_WARNING_LOGS", "false"); err != nil {
Fail("failed to set PODMAN_COMPOSE_WARNING_LOGS")
}
cwd, err := os.Getwd()
if err != nil {
Fail("unable to get working directory")
}
var fakeComposeBin string
if runtime.GOOS != "windows" {
fakeComposeBin = "fake_compose"
} else {
fakeComposeBin = "fake_compose.bat"
}
if err := os.Setenv("PODMAN_COMPOSE_PROVIDER", filepath.Join(cwd, "scripts", fakeComposeBin)); err != nil {
Fail("failed to set PODMAN_COMPOSE_PROVIDER")
}
mb, err := newMB()
if err != nil {
Fail(fmt.Sprintf("failed to create machine test: %q", err))
}
src, err := os.Open(fqImageName)
if err != nil {
Fail(fmt.Sprintf("failed to open file %s: %q", fqImageName, err))
}
defer func() {
if err := src.Close(); err != nil {
Fail(fmt.Sprintf("failed to close src reader %q: %q", src.Name(), err))
}
}()
mb.imagePath = fqImageName
return homeDir, mb
}
func teardown(origHomeDir string, testDir string) {
if err := utils.GuardedRemoveAll(testDir); err != nil {
Fail(fmt.Sprintf("failed to remove test dir: %q", err))
}
// this needs to be last in teardown
if err := os.Setenv("HOME", origHomeDir); err != nil {
Fail("failed to set home dir")
}
if runtime.GOOS == "windows" {
if err := os.Setenv("USERPROFILE", origHomeDir); err != nil {
Fail("failed to set windows home dir back to original")
}
}
}
var (
mb *machineTestBuilder
testDir string
)
var _ = BeforeEach(func() {
testDir, mb = setup()
DeferCleanup(func() {
teardown(originalHomeDir, testDir)
})
})
func setTmpDir(value string) (string, error) {
switch {
case runtime.GOOS != "darwin":
tmpDir = value
case len(value) >= 22:
return "", errors.New(value + " path length should be less than 22 characters")
case value == "":
return "", errors.New("TMPDIR cannot be empty. Set to directory mounted on podman machine (e.g. /private/tmp)")
default:
cfg, err := config.Default()
if err != nil {
return "", err
}
volumes := cfg.Machine.Volumes.Get()
containsPath := false
for _, volume := range volumes {
parts := strings.Split(volume, ":")
hostPath := parts[0]
if strings.Contains(value, hostPath) {
containsPath = true
break
}
}
if !containsPath {
return "", fmt.Errorf("%s cannot be used. Change to directory mounted on podman machine (e.g. /private/tmp)", value)
}
tmpDir = value
}
return tmpDir, nil
}