2021-09-06 11:26:48 +00:00
|
|
|
/*
|
|
|
|
# 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.
|
|
|
|
*/
|
|
|
|
|
2023-02-07 20:09:53 +00:00
|
|
|
package runtime
|
2021-09-06 11:26:48 +00:00
|
|
|
|
|
|
|
import (
|
2022-02-25 08:54:04 +00:00
|
|
|
"encoding/json"
|
2023-03-22 12:27:43 +00:00
|
|
|
"log"
|
2022-02-25 08:54:04 +00:00
|
|
|
"os"
|
2023-02-07 20:09:53 +00:00
|
|
|
"os/exec"
|
2022-02-25 08:54:04 +00:00
|
|
|
"path/filepath"
|
2021-09-06 11:26:48 +00:00
|
|
|
"testing"
|
|
|
|
|
2022-02-25 08:54:04 +00:00
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
2022-02-22 14:09:45 +00:00
|
|
|
testlog "github.com/sirupsen/logrus/hooks/test"
|
2021-09-06 11:26:48 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2023-12-01 01:10:10 +00:00
|
|
|
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/config"
|
2024-04-03 12:59:30 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup/root"
|
2023-12-01 01:10:10 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/test"
|
2021-09-06 11:26:48 +00:00
|
|
|
)
|
|
|
|
|
2023-02-07 20:09:53 +00:00
|
|
|
const (
|
|
|
|
runcExecutableName = "runc"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
// TEST SETUP
|
|
|
|
// Determine the module root and the test binary path
|
|
|
|
var err error
|
|
|
|
moduleRoot, err := test.GetModuleRoot()
|
|
|
|
if err != nil {
|
2023-03-22 12:27:43 +00:00
|
|
|
log.Fatalf("error in test setup: could not get module root: %v", err)
|
2023-02-07 20:09:53 +00:00
|
|
|
}
|
|
|
|
testBinPath := filepath.Join(moduleRoot, "test", "bin")
|
|
|
|
|
|
|
|
// Set the environment variables for the test
|
|
|
|
os.Setenv("PATH", test.PrependToPath(testBinPath, moduleRoot))
|
|
|
|
|
|
|
|
// Confirm that the environment is configured correctly
|
|
|
|
runcPath, err := exec.LookPath(runcExecutableName)
|
|
|
|
if err != nil || filepath.Join(testBinPath, runcExecutableName) != runcPath {
|
2023-03-22 12:27:43 +00:00
|
|
|
log.Fatalf("error in test setup: mock runc path set incorrectly in TestMain(): %v", err)
|
2023-02-07 20:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RUN TESTS
|
|
|
|
exitCode := m.Run()
|
|
|
|
|
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
|
2022-02-22 14:09:45 +00:00
|
|
|
func TestFactoryMethod(t *testing.T) {
|
|
|
|
logger, _ := testlog.NewNullLogger()
|
2024-04-03 12:59:30 +00:00
|
|
|
driver := root.New(
|
|
|
|
root.WithDriverRoot("/nvidia/driver/root"),
|
|
|
|
)
|
2021-09-06 11:26:48 +00:00
|
|
|
|
2022-02-22 14:09:45 +00:00
|
|
|
testCases := []struct {
|
|
|
|
description string
|
2022-03-29 10:01:12 +00:00
|
|
|
cfg *config.Config
|
2022-02-25 08:54:04 +00:00
|
|
|
spec *specs.Spec
|
2022-02-22 14:09:45 +00:00
|
|
|
expectedError bool
|
|
|
|
}{
|
|
|
|
{
|
2022-05-04 12:39:14 +00:00
|
|
|
description: "empty config raises error",
|
2022-03-29 10:01:12 +00:00
|
|
|
cfg: &config.Config{
|
|
|
|
NVIDIAContainerRuntimeConfig: config.RuntimeConfig{},
|
|
|
|
},
|
2022-05-04 12:39:14 +00:00
|
|
|
expectedError: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "config with runtime raises no error",
|
|
|
|
cfg: &config.Config{
|
|
|
|
NVIDIAContainerRuntimeConfig: config.RuntimeConfig{
|
|
|
|
Runtimes: []string{"runc"},
|
2022-05-09 13:42:59 +00:00
|
|
|
Mode: "legacy",
|
2022-05-04 12:39:14 +00:00
|
|
|
},
|
|
|
|
},
|
2022-02-22 14:09:45 +00:00
|
|
|
},
|
2022-02-25 08:54:04 +00:00
|
|
|
{
|
2022-05-09 13:42:59 +00:00
|
|
|
description: "csv mode is supported",
|
2022-02-25 08:54:04 +00:00
|
|
|
cfg: &config.Config{
|
|
|
|
NVIDIAContainerRuntimeConfig: config.RuntimeConfig{
|
2022-05-09 13:42:59 +00:00
|
|
|
Runtimes: []string{"runc"},
|
|
|
|
Mode: "csv",
|
2022-02-25 08:54:04 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
spec: &specs.Spec{
|
|
|
|
Process: &specs.Process{
|
|
|
|
Env: []string{
|
|
|
|
"NVIDIA_VISIBLE_DEVICES=all",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-05-09 13:42:59 +00:00
|
|
|
{
|
|
|
|
description: "non-legacy discover mode raises error",
|
|
|
|
cfg: &config.Config{
|
|
|
|
NVIDIAContainerRuntimeConfig: config.RuntimeConfig{
|
|
|
|
Runtimes: []string{"runc"},
|
|
|
|
Mode: "non-legacy",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedError: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "legacy discover mode returns modifier",
|
|
|
|
cfg: &config.Config{
|
|
|
|
NVIDIAContainerRuntimeConfig: config.RuntimeConfig{
|
|
|
|
Runtimes: []string{"runc"},
|
|
|
|
Mode: "legacy",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "csv discover mode returns modifier",
|
|
|
|
cfg: &config.Config{
|
|
|
|
NVIDIAContainerRuntimeConfig: config.RuntimeConfig{
|
|
|
|
Runtimes: []string{"runc"},
|
|
|
|
Mode: "csv",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
description: "empty mode raises error",
|
|
|
|
cfg: &config.Config{
|
|
|
|
NVIDIAContainerRuntimeConfig: config.RuntimeConfig{
|
|
|
|
Runtimes: []string{"runc"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedError: true,
|
|
|
|
},
|
2022-02-22 14:09:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.description, func(t *testing.T) {
|
2024-04-03 12:59:30 +00:00
|
|
|
|
2022-02-25 08:54:04 +00:00
|
|
|
bundleDir := t.TempDir()
|
|
|
|
|
|
|
|
specFile, err := os.Create(filepath.Join(bundleDir, "config.json"))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NoError(t, json.NewEncoder(specFile).Encode(tc.spec))
|
|
|
|
|
2022-05-09 13:42:59 +00:00
|
|
|
argv := []string{"--bundle", bundleDir, "create"}
|
2022-02-25 08:54:04 +00:00
|
|
|
|
2024-04-03 12:59:30 +00:00
|
|
|
_, err = newNVIDIAContainerRuntime(logger, tc.cfg, argv, driver)
|
2022-02-22 14:09:45 +00:00
|
|
|
if tc.expectedError {
|
|
|
|
require.Error(t, err)
|
|
|
|
} else {
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2021-09-06 11:26:48 +00:00
|
|
|
}
|