mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 08:18:32 +00:00
7d76243783
This change copies the code from container-config/cmd to
tools/container. This allows the code to be built and
added to the container image without additional refactoring.
As the configuration utilities are incorporated into the cmds
of the nvidia-container-toolkit, the code will be moved from tools.
Files copied from:
383587f766
Signed-off-by: Evan Lezar <elezar@nvidia.com>
424 lines
11 KiB
Go
424 lines
11 KiB
Go
/**
|
|
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# 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 main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestUpdateConfigDefaultRuntime(t *testing.T) {
|
|
const runtimeDir = "/test/runtime/dir"
|
|
|
|
testCases := []struct {
|
|
setAsDefault bool
|
|
runtimeName string
|
|
expectedDefaultRuntimeName interface{}
|
|
}{
|
|
{},
|
|
{
|
|
setAsDefault: false,
|
|
expectedDefaultRuntimeName: nil,
|
|
},
|
|
{
|
|
setAsDefault: true,
|
|
runtimeName: "NAME",
|
|
expectedDefaultRuntimeName: "NAME",
|
|
},
|
|
{
|
|
setAsDefault: true,
|
|
runtimeName: "nvidia-experimental",
|
|
expectedDefaultRuntimeName: "nvidia-experimental",
|
|
},
|
|
{
|
|
setAsDefault: true,
|
|
runtimeName: "nvidia",
|
|
expectedDefaultRuntimeName: "nvidia",
|
|
},
|
|
}
|
|
|
|
for i, tc := range testCases {
|
|
o := &options{
|
|
setAsDefault: tc.setAsDefault,
|
|
runtimeName: tc.runtimeName,
|
|
runtimeDir: runtimeDir,
|
|
}
|
|
|
|
config := map[string]interface{}{}
|
|
|
|
err := UpdateConfig(config, o)
|
|
require.NoError(t, err, "%d: %v", i, tc)
|
|
|
|
defaultRuntimeName := config["default-runtime"]
|
|
require.EqualValues(t, tc.expectedDefaultRuntimeName, defaultRuntimeName, "%d: %v", i, tc)
|
|
}
|
|
}
|
|
|
|
func TestUpdateConfig(t *testing.T) {
|
|
const runtimeDir = "/test/runtime/dir"
|
|
|
|
testCases := []struct {
|
|
config map[string]interface{}
|
|
setAsDefault bool
|
|
runtimeName string
|
|
expectedConfig map[string]interface{}
|
|
}{
|
|
{
|
|
config: map[string]interface{}{},
|
|
setAsDefault: false,
|
|
expectedConfig: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{},
|
|
setAsDefault: false,
|
|
runtimeName: "NAME",
|
|
expectedConfig: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"NAME": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{},
|
|
setAsDefault: false,
|
|
runtimeName: "nvidia-experimental",
|
|
expectedConfig: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
setAsDefault: false,
|
|
expectedConfig: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"not-nvidia": map[string]interface{}{
|
|
"path": "some-other-path",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
expectedConfig: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"not-nvidia": map[string]interface{}{
|
|
"path": "some-other-path",
|
|
"args": []string{},
|
|
},
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"default-runtime": "runc",
|
|
},
|
|
setAsDefault: true,
|
|
runtimeName: "nvidia",
|
|
expectedConfig: map[string]interface{}{
|
|
"default-runtime": "nvidia",
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"default-runtime": "runc",
|
|
},
|
|
setAsDefault: true,
|
|
runtimeName: "nvidia-experimental",
|
|
expectedConfig: map[string]interface{}{
|
|
"default-runtime": "nvidia-experimental",
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"exec-opts": []string{"native.cgroupdriver=systemd"},
|
|
"log-driver": "json-file",
|
|
"log-opts": map[string]string{
|
|
"max-size": "100m",
|
|
},
|
|
"storage-driver": "overlay2",
|
|
},
|
|
expectedConfig: map[string]interface{}{
|
|
"exec-opts": []string{"native.cgroupdriver=systemd"},
|
|
"log-driver": "json-file",
|
|
"log-opts": map[string]string{
|
|
"max-size": "100m",
|
|
},
|
|
"storage-driver": "overlay2",
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for i, tc := range testCases {
|
|
options := &options{
|
|
setAsDefault: tc.setAsDefault,
|
|
runtimeName: tc.runtimeName,
|
|
runtimeDir: runtimeDir,
|
|
}
|
|
err := UpdateConfig(tc.config, options)
|
|
require.NoError(t, err, "%d: %v", i, tc)
|
|
|
|
configContent, err := json.MarshalIndent(tc.config, "", " ")
|
|
require.NoError(t, err)
|
|
|
|
expectedContent, err := json.MarshalIndent(tc.expectedConfig, "", " ")
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, string(expectedContent), string(configContent), "%d: %v", i, tc)
|
|
}
|
|
}
|
|
|
|
func TestRevertConfig(t *testing.T) {
|
|
testCases := []struct {
|
|
config map[string]interface{}
|
|
expectedConfig map[string]interface{}
|
|
}{
|
|
{
|
|
config: map[string]interface{}{},
|
|
expectedConfig: map[string]interface{}{},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
expectedConfig: map[string]interface{}{},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
expectedConfig: map[string]interface{}{},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
"nvidia-experimental": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime-experimental",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
expectedConfig: map[string]interface{}{},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"default-runtime": "nvidia",
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
expectedConfig: map[string]interface{}{
|
|
"default-runtime": "runc",
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"default-runtime": "not-nvidia",
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
expectedConfig: map[string]interface{}{
|
|
"default-runtime": "not-nvidia",
|
|
},
|
|
},
|
|
{
|
|
config: map[string]interface{}{
|
|
"exec-opts": []string{"native.cgroupdriver=systemd"},
|
|
"log-driver": "json-file",
|
|
"log-opts": map[string]string{
|
|
"max-size": "100m",
|
|
},
|
|
"storage-driver": "overlay2",
|
|
"runtimes": map[string]interface{}{
|
|
"nvidia": map[string]interface{}{
|
|
"path": "/test/runtime/dir/nvidia-container-runtime",
|
|
"args": []string{},
|
|
},
|
|
},
|
|
},
|
|
expectedConfig: map[string]interface{}{
|
|
"exec-opts": []string{"native.cgroupdriver=systemd"},
|
|
"log-driver": "json-file",
|
|
"log-opts": map[string]string{
|
|
"max-size": "100m",
|
|
},
|
|
"storage-driver": "overlay2",
|
|
},
|
|
},
|
|
}
|
|
|
|
for i, tc := range testCases {
|
|
err := RevertConfig(tc.config)
|
|
|
|
require.NoError(t, err, "%d: %v", i, tc)
|
|
|
|
configContent, err := json.MarshalIndent(tc.config, "", " ")
|
|
require.NoError(t, err)
|
|
|
|
expectedContent, err := json.MarshalIndent(tc.expectedConfig, "", " ")
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, string(expectedContent), string(configContent), "%d: %v", i, tc)
|
|
}
|
|
}
|
|
|
|
func TestFlagsDefaultRuntime(t *testing.T) {
|
|
testCases := []struct {
|
|
setAsDefault bool
|
|
runtimeName string
|
|
expected string
|
|
}{
|
|
{
|
|
expected: "",
|
|
},
|
|
{
|
|
runtimeName: "not-bool",
|
|
expected: "",
|
|
},
|
|
{
|
|
setAsDefault: false,
|
|
runtimeName: "nvidia",
|
|
expected: "",
|
|
},
|
|
{
|
|
setAsDefault: true,
|
|
runtimeName: "nvidia",
|
|
expected: "nvidia",
|
|
},
|
|
{
|
|
setAsDefault: true,
|
|
runtimeName: "nvidia-experimental",
|
|
expected: "nvidia-experimental",
|
|
},
|
|
}
|
|
|
|
for i, tc := range testCases {
|
|
f := options{
|
|
setAsDefault: tc.setAsDefault,
|
|
runtimeName: tc.runtimeName,
|
|
}
|
|
|
|
require.Equal(t, tc.expected, f.getDefaultRuntime(), "%d: %v", i, tc)
|
|
}
|
|
}
|