| /** |
| # 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 ( |
| "fmt" |
| "os" |
| "testing" |
| |
| "github.com/stretchr/testify/require" |
| |
| "github.com/NVIDIA/nvidia-container-toolkit/internal/config" |
| "github.com/NVIDIA/nvidia-container-toolkit/internal/config/image" |
| ) |
| |
| func TestGetHookConfig(t *testing.T) { |
| testCases := []struct { |
| lines []string |
| expectedPanic bool |
| expectedDriverCapabilities string |
| }{ |
| { |
| expectedDriverCapabilities: image.SupportedDriverCapabilities.String(), |
| }, |
| { |
| lines: []string{ |
| "supported-driver-capabilities = \"all\"", |
| }, |
| expectedDriverCapabilities: image.SupportedDriverCapabilities.String(), |
| }, |
| { |
| lines: []string{ |
| "supported-driver-capabilities = \"compute,utility,not-compute\"", |
| }, |
| expectedPanic: true, |
| }, |
| { |
| lines: []string{}, |
| expectedDriverCapabilities: image.SupportedDriverCapabilities.String(), |
| }, |
| { |
| lines: []string{ |
| "supported-driver-capabilities = \"\"", |
| }, |
| expectedDriverCapabilities: "", |
| }, |
| { |
| lines: []string{ |
| "supported-driver-capabilities = \"compute,utility\"", |
| }, |
| expectedDriverCapabilities: "compute,utility", |
| }, |
| } |
| |
| for i, tc := range testCases { |
| t.Run(fmt.Sprintf("test case %d", i), func(t *testing.T) { |
| var filename string |
| defer func() { |
| if len(filename) > 0 { |
| os.Remove(filename) |
| } |
| configflag = nil |
| }() |
| |
| if tc.lines != nil { |
| configFile, err := os.CreateTemp("", "*.toml") |
| require.NoError(t, err) |
| defer configFile.Close() |
| |
| filename = configFile.Name() |
| configflag = &filename |
| |
| for _, line := range tc.lines { |
| _, err := configFile.WriteString(fmt.Sprintf("%s\n", line)) |
| require.NoError(t, err) |
| } |
| } |
| |
| var cfg hookConfig |
| getHookConfig := func() { |
| c, _ := getHookConfig() |
| cfg = *c |
| } |
| |
| if tc.expectedPanic { |
| require.Panics(t, getHookConfig) |
| return |
| } |
| |
| getHookConfig() |
| |
| require.EqualValues(t, tc.expectedDriverCapabilities, cfg.SupportedDriverCapabilities) |
| }) |
| } |
| } |
| |
| func TestGetSwarmResourceEnvvars(t *testing.T) { |
| testCases := []struct { |
| value string |
| expected []string |
| }{ |
| { |
| value: "", |
| expected: nil, |
| }, |
| { |
| value: " ", |
| expected: nil, |
| }, |
| { |
| value: "single", |
| expected: []string{"single"}, |
| }, |
| { |
| value: "single ", |
| expected: []string{"single"}, |
| }, |
| { |
| value: "one,two", |
| expected: []string{"one", "two"}, |
| }, |
| { |
| value: "one ,two", |
| expected: []string{"one", "two"}, |
| }, |
| { |
| value: "one, two", |
| expected: []string{"one", "two"}, |
| }, |
| } |
| |
| for i, tc := range testCases { |
| t.Run(fmt.Sprintf("%d", i), func(t *testing.T) { |
| c := &hookConfig{ |
| Config: &config.Config{ |
| SwarmResource: tc.value, |
| }, |
| } |
| |
| envvars := c.getSwarmResourceEnvvars() |
| require.EqualValues(t, tc.expected, envvars) |
| }) |
| } |
| } |