kaniko/pkg/commands/run_test.go

73 lines
1.6 KiB
Go

/*
Copyright 2018 Google LLC
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 commands
import (
"testing"
"github.com/GoogleContainerTools/kaniko/testutil"
)
func Test_addDefaultHOME(t *testing.T) {
tests := []struct {
name string
user string
initial []string
expected []string
}{
{
name: "HOME already set",
user: "",
initial: []string{
"HOME=/something",
"PATH=/something/else",
},
expected: []string{
"HOME=/something",
"PATH=/something/else",
},
},
{
name: "HOME isn't set, user isn't set",
user: "",
initial: []string{
"PATH=/something/else",
},
expected: []string{
"PATH=/something/else",
"HOME=/root",
},
},
{
name: "HOME isn't set, user is set",
user: "newuser",
initial: []string{
"PATH=/something/else",
},
expected: []string{
"PATH=/something/else",
"HOME=/",
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
actual := addDefaultHOME(test.user, test.initial)
testutil.CheckErrorAndDeepEqual(t, false, nil, test.expected, actual)
})
}
}