116 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			2.7 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 (
 | |
| 	"os/user"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/GoogleContainerTools/kaniko/pkg/dockerfile"
 | |
| 	"github.com/GoogleContainerTools/kaniko/pkg/util"
 | |
| 
 | |
| 	"github.com/GoogleContainerTools/kaniko/testutil"
 | |
| 	v1 "github.com/google/go-containerregistry/pkg/v1"
 | |
| 	"github.com/moby/buildkit/frontend/dockerfile/instructions"
 | |
| )
 | |
| 
 | |
| var userTests = []struct {
 | |
| 	user        string
 | |
| 	userObj     user.User
 | |
| 	expectedUID string
 | |
| 	expectedGID string
 | |
| }{
 | |
| 	{
 | |
| 		user:        "root",
 | |
| 		userObj:     user.User{Uid: "root", Gid: "root"},
 | |
| 		expectedUID: "root:root",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "root-add",
 | |
| 		userObj:     user.User{Uid: "root-add", Gid: "root"},
 | |
| 		expectedUID: "root-add:root",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "0",
 | |
| 		userObj:     user.User{Uid: "0", Gid: "0"},
 | |
| 		expectedUID: "0:0",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "fakeUser",
 | |
| 		userObj:     user.User{Uid: "fakeUser", Gid: "fakeUser"},
 | |
| 		expectedUID: "fakeUser:fakeUser",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "root:root",
 | |
| 		userObj:     user.User{Uid: "root", Gid: "some"},
 | |
| 		expectedUID: "root:root",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "0:root",
 | |
| 		userObj:     user.User{Uid: "0"},
 | |
| 		expectedUID: "0:root",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "root:0",
 | |
| 		userObj:     user.User{Uid: "root"},
 | |
| 		expectedUID: "root:0",
 | |
| 		expectedGID: "f0",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "0:0",
 | |
| 		userObj:     user.User{Uid: "0"},
 | |
| 		expectedUID: "0:0",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "$envuser",
 | |
| 		userObj:     user.User{Uid: "root", Gid: "root"},
 | |
| 		expectedUID: "root:root",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "root:$envgroup",
 | |
| 		userObj:     user.User{Uid: "root"},
 | |
| 		expectedUID: "root:grp",
 | |
| 	},
 | |
| 	{
 | |
| 		user:        "some:grp",
 | |
| 		userObj:     user.User{Uid: "some"},
 | |
| 		expectedUID: "some:grp",
 | |
| 	},
 | |
| }
 | |
| 
 | |
| func TestUpdateUser(t *testing.T) {
 | |
| 	for _, test := range userTests {
 | |
| 		cfg := &v1.Config{
 | |
| 			Env: []string{
 | |
| 				"envuser=root",
 | |
| 				"envgroup=grp",
 | |
| 			},
 | |
| 		}
 | |
| 		cmd := UserCommand{
 | |
| 			cmd: &instructions.UserCommand{
 | |
| 				User: test.user,
 | |
| 			},
 | |
| 		}
 | |
| 		Lookup = func(_ string) (*user.User, error) {
 | |
| 			return &test.userObj, nil
 | |
| 		}
 | |
| 		defer func() { Lookup = util.Lookup }()
 | |
| 		buildArgs := dockerfile.NewBuildArgs([]string{})
 | |
| 		err := cmd.ExecuteCommand(cfg, buildArgs)
 | |
| 		testutil.CheckErrorAndDeepEqual(t, false, err, test.expectedUID, cfg.User)
 | |
| 	}
 | |
| }
 |