mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-24 01:24:26 +01:00
refactor the cli codes which can be shared with shimv2. Signed-off-by: fupan <lifupan@gmail.com> Signed-off-by: Eric Ernst <eric.ernst@intel.com>
231 lines
4.7 KiB
Go
231 lines
4.7 KiB
Go
// Copyright (c) 2018 Intel Corporation
|
|
// Copyright (c) 2018 HyperHQ Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package katautils
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
|
|
. "github.com/kata-containers/runtime/virtcontainers/pkg/mock"
|
|
"github.com/kata-containers/runtime/virtcontainers/pkg/oci"
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// Important to keep these values in sync with hook test binary
|
|
var testKeyHook = "test-key"
|
|
var testContainerIDHook = "test-container-id"
|
|
var testControllerIDHook = "test-controller-id"
|
|
var testBinHookPath = "/usr/bin/virtcontainers/bin/test/hook"
|
|
var testBundlePath = "/test/bundle"
|
|
|
|
func getMockHookBinPath() string {
|
|
if DefaultMockHookBinPath == "" {
|
|
return testBinHookPath
|
|
}
|
|
|
|
return DefaultMockHookBinPath
|
|
}
|
|
|
|
func createHook(timeout int) specs.Hook {
|
|
to := &timeout
|
|
if timeout == 0 {
|
|
to = nil
|
|
}
|
|
|
|
return specs.Hook{
|
|
Path: getMockHookBinPath(),
|
|
Args: []string{testKeyHook, testContainerIDHook, testControllerIDHook},
|
|
Env: os.Environ(),
|
|
Timeout: to,
|
|
}
|
|
}
|
|
|
|
func createWrongHook() specs.Hook {
|
|
return specs.Hook{
|
|
Path: getMockHookBinPath(),
|
|
Args: []string{"wrong-args"},
|
|
Env: os.Environ(),
|
|
}
|
|
}
|
|
|
|
func TestRunHook(t *testing.T) {
|
|
if os.Geteuid() != 0 {
|
|
t.Skip(testDisabledNeedNonRoot)
|
|
}
|
|
|
|
assert := assert.New(t)
|
|
|
|
ctx := context.Background()
|
|
|
|
// Run with timeout 0
|
|
hook := createHook(0)
|
|
err := runHook(ctx, hook, testSandboxID, testBundlePath)
|
|
assert.NoError(err)
|
|
|
|
// Run with timeout 1
|
|
hook = createHook(1)
|
|
err = runHook(ctx, hook, testSandboxID, testBundlePath)
|
|
assert.NoError(err)
|
|
|
|
// Run timeout failure
|
|
hook = createHook(1)
|
|
hook.Args = append(hook.Args, "2")
|
|
err = runHook(ctx, hook, testSandboxID, testBundlePath)
|
|
assert.Error(err)
|
|
|
|
// Failure due to wrong hook
|
|
hook = createWrongHook()
|
|
err = runHook(ctx, hook, testSandboxID, testBundlePath)
|
|
assert.Error(err)
|
|
}
|
|
|
|
func TestPreStartHooks(t *testing.T) {
|
|
if os.Geteuid() != 0 {
|
|
t.Skip(testDisabledNeedNonRoot)
|
|
}
|
|
|
|
assert := assert.New(t)
|
|
|
|
ctx := context.Background()
|
|
|
|
// Hooks field is nil
|
|
spec := oci.CompatOCISpec{}
|
|
err := PreStartHooks(ctx, spec, "", "")
|
|
assert.NoError(err)
|
|
|
|
// Hooks list is empty
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{},
|
|
},
|
|
}
|
|
err = PreStartHooks(ctx, spec, "", "")
|
|
assert.NoError(err)
|
|
|
|
// Run with timeout 0
|
|
hook := createHook(0)
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{
|
|
Prestart: []specs.Hook{hook},
|
|
},
|
|
},
|
|
}
|
|
err = PreStartHooks(ctx, spec, testSandboxID, testBundlePath)
|
|
assert.NoError(err)
|
|
|
|
// Failure due to wrong hook
|
|
hook = createWrongHook()
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{
|
|
Prestart: []specs.Hook{hook},
|
|
},
|
|
},
|
|
}
|
|
err = PreStartHooks(ctx, spec, testSandboxID, testBundlePath)
|
|
assert.Error(err)
|
|
}
|
|
|
|
func TestPostStartHooks(t *testing.T) {
|
|
if os.Geteuid() != 0 {
|
|
t.Skip(testDisabledNeedNonRoot)
|
|
}
|
|
|
|
assert := assert.New(t)
|
|
|
|
ctx := context.Background()
|
|
|
|
// Hooks field is nil
|
|
spec := oci.CompatOCISpec{}
|
|
err := PostStartHooks(ctx, spec, "", "")
|
|
assert.NoError(err)
|
|
|
|
// Hooks list is empty
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{},
|
|
},
|
|
}
|
|
err = PostStartHooks(ctx, spec, "", "")
|
|
assert.NoError(err)
|
|
|
|
// Run with timeout 0
|
|
hook := createHook(0)
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{
|
|
Poststart: []specs.Hook{hook},
|
|
},
|
|
},
|
|
}
|
|
err = PostStartHooks(ctx, spec, testSandboxID, testBundlePath)
|
|
assert.NoError(err)
|
|
|
|
// Failure due to wrong hook
|
|
hook = createWrongHook()
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{
|
|
Poststart: []specs.Hook{hook},
|
|
},
|
|
},
|
|
}
|
|
err = PostStartHooks(ctx, spec, testSandboxID, testBundlePath)
|
|
assert.Error(err)
|
|
}
|
|
|
|
func TestPostStopHooks(t *testing.T) {
|
|
if os.Geteuid() != 0 {
|
|
t.Skip(testDisabledNeedNonRoot)
|
|
}
|
|
|
|
assert := assert.New(t)
|
|
|
|
ctx := context.Background()
|
|
|
|
// Hooks field is nil
|
|
spec := oci.CompatOCISpec{}
|
|
err := PostStopHooks(ctx, spec, "", "")
|
|
assert.NoError(err)
|
|
|
|
// Hooks list is empty
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{},
|
|
},
|
|
}
|
|
err = PostStopHooks(ctx, spec, "", "")
|
|
assert.NoError(err)
|
|
|
|
// Run with timeout 0
|
|
hook := createHook(0)
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{
|
|
Poststop: []specs.Hook{hook},
|
|
},
|
|
},
|
|
}
|
|
err = PostStopHooks(ctx, spec, testSandboxID, testBundlePath)
|
|
assert.NoError(err)
|
|
|
|
// Failure due to wrong hook
|
|
hook = createWrongHook()
|
|
spec = oci.CompatOCISpec{
|
|
Spec: specs.Spec{
|
|
Hooks: &specs.Hooks{
|
|
Poststop: []specs.Hook{hook},
|
|
},
|
|
},
|
|
}
|
|
err = PostStopHooks(ctx, spec, testSandboxID, testBundlePath)
|
|
assert.Error(err)
|
|
}
|