mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-10 09:39:24 +00:00
Convert virtcontainers tests to testify/assert to make the virtcontainers tests more readable. fixes #156 Signed-off-by: Julio Montes <julio.montes@intel.com>
290 lines
6.4 KiB
Go
290 lines
6.4 KiB
Go
// Copyright (c) 2017 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package utils
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFileCopySuccessful(t *testing.T) {
|
|
assert := assert.New(t)
|
|
fileContent := "testContent"
|
|
|
|
srcFile, err := ioutil.TempFile("", "test_src_copy")
|
|
assert.NoError(err)
|
|
defer os.Remove(srcFile.Name())
|
|
defer srcFile.Close()
|
|
|
|
dstFile, err := ioutil.TempFile("", "test_dst_copy")
|
|
assert.NoError(err)
|
|
defer os.Remove(dstFile.Name())
|
|
|
|
dstPath := dstFile.Name()
|
|
|
|
assert.NoError(dstFile.Close())
|
|
|
|
_, err = srcFile.WriteString(fileContent)
|
|
assert.NoError(err)
|
|
|
|
err = FileCopy(srcFile.Name(), dstPath)
|
|
assert.NoError(err)
|
|
|
|
dstContent, err := ioutil.ReadFile(dstPath)
|
|
assert.NoError(err)
|
|
assert.Equal(string(dstContent), fileContent)
|
|
|
|
srcInfo, err := srcFile.Stat()
|
|
assert.NoError(err)
|
|
|
|
dstInfo, err := os.Stat(dstPath)
|
|
assert.NoError(err)
|
|
|
|
assert.Equal(dstInfo.Mode(), srcInfo.Mode())
|
|
assert.Equal(dstInfo.IsDir(), srcInfo.IsDir())
|
|
assert.Equal(dstInfo.Size(), srcInfo.Size())
|
|
}
|
|
|
|
func TestFileCopySourceEmptyFailure(t *testing.T) {
|
|
assert := assert.New(t)
|
|
err := FileCopy("", "testDst")
|
|
assert.Error(err)
|
|
}
|
|
|
|
func TestFileCopyDestinationEmptyFailure(t *testing.T) {
|
|
assert := assert.New(t)
|
|
err := FileCopy("testSrc", "")
|
|
assert.Error(err)
|
|
}
|
|
|
|
func TestFileCopySourceNotExistFailure(t *testing.T) {
|
|
assert := assert.New(t)
|
|
srcFile, err := ioutil.TempFile("", "test_src_copy")
|
|
assert.NoError(err)
|
|
|
|
srcPath := srcFile.Name()
|
|
assert.NoError(srcFile.Close())
|
|
assert.NoError(os.Remove(srcPath))
|
|
|
|
err = FileCopy(srcPath, "testDest")
|
|
assert.Error(err)
|
|
}
|
|
|
|
func TestGenerateRandomBytes(t *testing.T) {
|
|
assert := assert.New(t)
|
|
bytesNeeded := 8
|
|
randBytes, err := GenerateRandomBytes(bytesNeeded)
|
|
assert.NoError(err)
|
|
assert.Equal(len(randBytes), bytesNeeded)
|
|
}
|
|
|
|
func TestRevereString(t *testing.T) {
|
|
assert := assert.New(t)
|
|
str := "Teststr"
|
|
reversed := ReverseString(str)
|
|
assert.Equal(reversed, "rtstseT")
|
|
}
|
|
|
|
func TestWriteToFile(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
err := WriteToFile("/file-does-not-exist", []byte("test-data"))
|
|
assert.NotNil(err)
|
|
|
|
tmpFile, err := ioutil.TempFile("", "test_append_file")
|
|
assert.NoError(err)
|
|
|
|
filename := tmpFile.Name()
|
|
defer os.Remove(filename)
|
|
|
|
tmpFile.Close()
|
|
|
|
testData := []byte("test-data")
|
|
err = WriteToFile(filename, testData)
|
|
assert.NoError(err)
|
|
|
|
data, err := ioutil.ReadFile(filename)
|
|
assert.NoError(err)
|
|
|
|
assert.True(reflect.DeepEqual(testData, data))
|
|
}
|
|
|
|
func TestConstraintsToVCPUs(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
vcpus := ConstraintsToVCPUs(0, 100)
|
|
assert.Zero(vcpus)
|
|
|
|
vcpus = ConstraintsToVCPUs(100, 0)
|
|
assert.Zero(vcpus)
|
|
|
|
expectedVCPUs := uint(4)
|
|
vcpus = ConstraintsToVCPUs(4000, 1000)
|
|
assert.Equal(expectedVCPUs, vcpus)
|
|
|
|
vcpus = ConstraintsToVCPUs(4000, 1200)
|
|
assert.Equal(expectedVCPUs, vcpus)
|
|
}
|
|
|
|
func TestGetVirtDriveNameInvalidIndex(t *testing.T) {
|
|
assert := assert.New(t)
|
|
_, err := GetVirtDriveName(-1)
|
|
assert.Error(err)
|
|
}
|
|
|
|
func TestGetVirtDriveName(t *testing.T) {
|
|
assert := assert.New(t)
|
|
tests := []struct {
|
|
index int
|
|
expectedDrive string
|
|
}{
|
|
{0, "vda"},
|
|
{25, "vdz"},
|
|
{27, "vdab"},
|
|
{704, "vdaac"},
|
|
{18277, "vdzzz"},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
driveName, err := GetVirtDriveName(test.index)
|
|
assert.NoError(err)
|
|
assert.Equal(driveName, test.expectedDrive)
|
|
}
|
|
}
|
|
|
|
func TestGetSCSIIdLun(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
tests := []struct {
|
|
index int
|
|
expectedScsiID int
|
|
expectedLun int
|
|
}{
|
|
{0, 0, 0},
|
|
{1, 0, 1},
|
|
{2, 0, 2},
|
|
{255, 0, 255},
|
|
{256, 1, 0},
|
|
{257, 1, 1},
|
|
{258, 1, 2},
|
|
{512, 2, 0},
|
|
{513, 2, 1},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
scsiID, lun, err := GetSCSIIdLun(test.index)
|
|
assert.NoError(err)
|
|
assert.Equal(scsiID, test.expectedScsiID)
|
|
assert.Equal(lun, test.expectedLun)
|
|
}
|
|
|
|
_, _, err := GetSCSIIdLun(maxSCSIDevices + 1)
|
|
assert.NotNil(err)
|
|
}
|
|
|
|
func TestGetSCSIAddress(t *testing.T) {
|
|
assert := assert.New(t)
|
|
tests := []struct {
|
|
index int
|
|
expectedSCSIAddress string
|
|
}{
|
|
{0, "0:0"},
|
|
{200, "0:200"},
|
|
{255, "0:255"},
|
|
{258, "1:2"},
|
|
{512, "2:0"},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
scsiAddr, err := GetSCSIAddress(test.index)
|
|
assert.NoError(err)
|
|
assert.Equal(scsiAddr, test.expectedSCSIAddress)
|
|
}
|
|
}
|
|
|
|
func TestBuildSocketPath(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
type testData struct {
|
|
elems []string
|
|
valid bool
|
|
expected string
|
|
}
|
|
|
|
longPath := strings.Repeat("/a", 106/2)
|
|
longestPath := longPath + "a"
|
|
pathTooLong := filepath.Join(longestPath, "x")
|
|
|
|
data := []testData{
|
|
{[]string{""}, false, ""},
|
|
|
|
{[]string{"a"}, true, "a"},
|
|
{[]string{"/a"}, true, "/a"},
|
|
{[]string{"a", "b", "c"}, true, "a/b/c"},
|
|
{[]string{"a", "/b", "c"}, true, "a/b/c"},
|
|
{[]string{"/a", "b", "c"}, true, "/a/b/c"},
|
|
{[]string{"/a", "/b", "/c"}, true, "/a/b/c"},
|
|
|
|
{[]string{longPath}, true, longPath},
|
|
{[]string{longestPath}, true, longestPath},
|
|
{[]string{pathTooLong}, false, ""},
|
|
}
|
|
|
|
for i, d := range data {
|
|
result, err := BuildSocketPath(d.elems...)
|
|
|
|
if d.valid {
|
|
assert.NoErrorf(err, "test %d, data %+v", i, d)
|
|
} else {
|
|
assert.Errorf(err, "test %d, data %+v", i, d)
|
|
}
|
|
|
|
assert.NotNil(result)
|
|
assert.Equal(d.expected, result)
|
|
}
|
|
}
|
|
|
|
func TestSupportsVsocks(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
orgVHostVSockDevicePath := VHostVSockDevicePath
|
|
defer func() {
|
|
VHostVSockDevicePath = orgVHostVSockDevicePath
|
|
}()
|
|
|
|
VHostVSockDevicePath = "/abc/xyz/123"
|
|
assert.False(SupportsVsocks())
|
|
|
|
vHostVSockFile, err := ioutil.TempFile("", "vhost-vsock")
|
|
assert.NoError(err)
|
|
defer os.Remove(vHostVSockFile.Name())
|
|
defer vHostVSockFile.Close()
|
|
VHostVSockDevicePath = vHostVSockFile.Name()
|
|
|
|
assert.True(SupportsVsocks())
|
|
}
|
|
|
|
func TestValidCgroupPath(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
assert.Equal(DefaultCgroupPath, ValidCgroupPath("../../../"))
|
|
assert.Equal(filepath.Join(DefaultCgroupPath, "foo"), ValidCgroupPath("../../../foo"))
|
|
assert.Equal("/hi", ValidCgroupPath("/../hi"))
|
|
assert.Equal("/hi/foo", ValidCgroupPath("/../hi/foo"))
|
|
assert.Equal(DefaultCgroupPath, ValidCgroupPath(""))
|
|
assert.Equal(DefaultCgroupPath, ValidCgroupPath(""))
|
|
assert.Equal(DefaultCgroupPath, ValidCgroupPath("../"))
|
|
assert.Equal(DefaultCgroupPath, ValidCgroupPath("."))
|
|
assert.Equal(DefaultCgroupPath, ValidCgroupPath("./../"))
|
|
assert.Equal(filepath.Join(DefaultCgroupPath, "o / g"), ValidCgroupPath("o / m /../ g"))
|
|
}
|