mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-08 08:54:29 +01:00
As agreed in [the kata containers API design](https://github.com/kata-containers/documentation/blob/master/design/kata-api-design.md), we need to rename pod notion to sandbox. The patch is a bit big but the actual change is done through the script: ``` sed -i -e 's/pod/sandbox/g' -e 's/Pod/Sandbox/g' -e 's/POD/SB/g' ``` The only expections are `pod_sandbox` and `pod_container` annotations, since we already pushed them to cri shims, we have to use them unchanged. Fixes: #199 Signed-off-by: Peng Tao <bergwolf@gmail.com>
154 lines
4.2 KiB
Go
154 lines
4.2 KiB
Go
//
|
|
// Copyright (c) 2017 Intel Corporation
|
|
//
|
|
// 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 virtcontainers
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const testSandboxID = "7f49d00d-1995-4156-8c79-5f5ab24ce138"
|
|
const testContainerID = "containerID"
|
|
const testKernel = "kernel"
|
|
const testInitrd = "initrd"
|
|
const testImage = "image"
|
|
const testHypervisor = "hypervisor"
|
|
const testBundle = "bundle"
|
|
|
|
const testDisabledAsNonRoot = "Test disabled as requires root privileges"
|
|
|
|
// package variables set in TestMain
|
|
var testDir = ""
|
|
var sandboxDirConfig = ""
|
|
var sandboxFileConfig = ""
|
|
var sandboxDirState = ""
|
|
var sandboxDirLock = ""
|
|
var sandboxFileState = ""
|
|
var sandboxFileLock = ""
|
|
var testQemuKernelPath = ""
|
|
var testQemuInitrdPath = ""
|
|
var testQemuImagePath = ""
|
|
var testQemuPath = ""
|
|
var testHyperstartCtlSocket = ""
|
|
var testHyperstartTtySocket = ""
|
|
|
|
// cleanUp Removes any stale sandbox/container state that can affect
|
|
// the next test to run.
|
|
func cleanUp() {
|
|
globalSandboxList.removeSandbox(testSandboxID)
|
|
for _, dir := range []string{testDir, defaultSharedDir} {
|
|
os.RemoveAll(dir)
|
|
os.MkdirAll(dir, dirMode)
|
|
}
|
|
|
|
os.Mkdir(filepath.Join(testDir, testBundle), dirMode)
|
|
|
|
_, err := os.Create(filepath.Join(testDir, testImage))
|
|
if err != nil {
|
|
fmt.Println("Could not recreate test image:", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
// TestMain is the common main function used by ALL the test functions
|
|
// for this package.
|
|
func TestMain(m *testing.M) {
|
|
var err error
|
|
|
|
flag.Parse()
|
|
|
|
logger := logrus.New()
|
|
logger.Level = logrus.ErrorLevel
|
|
for _, arg := range flag.Args() {
|
|
if arg == "debug-logs" {
|
|
logger.Level = logrus.DebugLevel
|
|
}
|
|
}
|
|
SetLogger(logger)
|
|
|
|
testDir, err = ioutil.TempDir("", "virtcontainers-tmp-")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
err = os.MkdirAll(testDir, dirMode)
|
|
if err != nil {
|
|
fmt.Println("Could not create test directories:", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
_, err = os.Create(filepath.Join(testDir, testKernel))
|
|
if err != nil {
|
|
fmt.Println("Could not create test kernel:", err)
|
|
os.RemoveAll(testDir)
|
|
os.Exit(1)
|
|
}
|
|
|
|
_, err = os.Create(filepath.Join(testDir, testImage))
|
|
if err != nil {
|
|
fmt.Println("Could not create test image:", err)
|
|
os.RemoveAll(testDir)
|
|
os.Exit(1)
|
|
}
|
|
|
|
_, err = os.Create(filepath.Join(testDir, testHypervisor))
|
|
if err != nil {
|
|
fmt.Println("Could not create test hypervisor:", err)
|
|
os.RemoveAll(testDir)
|
|
os.Exit(1)
|
|
}
|
|
|
|
err = os.Mkdir(filepath.Join(testDir, testBundle), dirMode)
|
|
if err != nil {
|
|
fmt.Println("Could not create test bundle directory:", err)
|
|
os.RemoveAll(testDir)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// allow the tests to run without affecting the host system.
|
|
configStoragePath = filepath.Join(testDir, storagePathSuffix, "config")
|
|
runStoragePath = filepath.Join(testDir, storagePathSuffix, "run")
|
|
|
|
// set now that configStoragePath has been overridden.
|
|
sandboxDirConfig = filepath.Join(configStoragePath, testSandboxID)
|
|
sandboxFileConfig = filepath.Join(configStoragePath, testSandboxID, configFile)
|
|
sandboxDirState = filepath.Join(runStoragePath, testSandboxID)
|
|
sandboxDirLock = filepath.Join(runStoragePath, testSandboxID)
|
|
sandboxFileState = filepath.Join(runStoragePath, testSandboxID, stateFile)
|
|
sandboxFileLock = filepath.Join(runStoragePath, testSandboxID, lockFileName)
|
|
|
|
testQemuKernelPath = filepath.Join(testDir, testKernel)
|
|
testQemuInitrdPath = filepath.Join(testDir, testInitrd)
|
|
testQemuImagePath = filepath.Join(testDir, testImage)
|
|
testQemuPath = filepath.Join(testDir, testHypervisor)
|
|
|
|
testHyperstartCtlSocket = filepath.Join(testDir, "test_hyper.sock")
|
|
testHyperstartTtySocket = filepath.Join(testDir, "test_tty.sock")
|
|
|
|
ret := m.Run()
|
|
|
|
os.RemoveAll(testDir)
|
|
|
|
os.Exit(ret)
|
|
}
|