mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-24 13:05:17 +00:00
65ae6f1dab
This change ensures that the nvidia-ctk config default command generates a config file that is compatible with the official documentation to, for example, disable cgroups in the NVIDIA Container CLI. This requires that whitespace around comments is stripped before outputing the contets. This also adds an option to load a config and modify it in-place instead. This can be triggered as a post-install step, for example. Signed-off-by: Evan Lezar <elezar@nvidia.com>
83 lines
1.8 KiB
Go
83 lines
1.8 KiB
Go
/**
|
|
# Copyright (c) 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 defaultsubcommand
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestFixComment(t *testing.T) {
|
|
testCases := []struct {
|
|
input string
|
|
expected string
|
|
}{
|
|
{
|
|
input: "# comment",
|
|
expected: "#comment",
|
|
},
|
|
{
|
|
input: " #comment",
|
|
expected: "#comment",
|
|
},
|
|
{
|
|
input: " # comment",
|
|
expected: "#comment",
|
|
},
|
|
{
|
|
input: strings.Join([]string{
|
|
"some",
|
|
"# comment",
|
|
" # comment",
|
|
" #comment",
|
|
"other"}, "\n"),
|
|
expected: strings.Join([]string{
|
|
"some",
|
|
"#comment",
|
|
"#comment",
|
|
"#comment",
|
|
"other"}, "\n"),
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.input, func(t *testing.T) {
|
|
actual, _ := fixComments([]byte(tc.input))
|
|
require.Equal(t, tc.expected, string(actual))
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestGetFormattedConfig(t *testing.T) {
|
|
expectedLines := []string{
|
|
"#no-cgroups = false",
|
|
"#debug = \"/var/log/nvidia-container-toolkit.log\"",
|
|
"#debug = \"/var/log/nvidia-container-runtime.log\"",
|
|
}
|
|
|
|
opts := &options{}
|
|
contents, err := opts.getFormattedConfig()
|
|
require.NoError(t, err)
|
|
lines := strings.Split(string(contents), "\n")
|
|
|
|
for _, line := range expectedLines {
|
|
require.Contains(t, lines, line)
|
|
}
|
|
}
|