88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.0 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/pkg/dockerfile"
 | |
| 
 | |
| 	"github.com/GoogleContainerTools/kaniko/testutil"
 | |
| 	"github.com/google/go-containerregistry/pkg/v1"
 | |
| 	"github.com/moby/buildkit/frontend/dockerfile/instructions"
 | |
| )
 | |
| 
 | |
| // Each test here changes the same WorkingDir field in the config
 | |
| // So, some of the tests build off of each other
 | |
| // This is needed to make sure WorkingDir handles paths correctly
 | |
| // For example, if WORKDIR specifies a non-absolute path, it should be appended to the current WORKDIR
 | |
| var workdirTests = []struct {
 | |
| 	path         string
 | |
| 	expectedPath string
 | |
| }{
 | |
| 	{
 | |
| 		path:         "/a",
 | |
| 		expectedPath: "/a",
 | |
| 	},
 | |
| 	{
 | |
| 		path:         "b",
 | |
| 		expectedPath: "/a/b",
 | |
| 	},
 | |
| 	{
 | |
| 		path:         "c",
 | |
| 		expectedPath: "/a/b/c",
 | |
| 	},
 | |
| 	{
 | |
| 		path:         "/d",
 | |
| 		expectedPath: "/d",
 | |
| 	},
 | |
| 	{
 | |
| 		path:         "$path",
 | |
| 		expectedPath: "/d/usr",
 | |
| 	},
 | |
| 	{
 | |
| 		path:         "$home",
 | |
| 		expectedPath: "/root",
 | |
| 	},
 | |
| 	{
 | |
| 		path:         "$path/$home",
 | |
| 		expectedPath: "/root/usr/root",
 | |
| 	},
 | |
| }
 | |
| 
 | |
| func TestWorkdirCommand(t *testing.T) {
 | |
| 
 | |
| 	cfg := &v1.Config{
 | |
| 		WorkingDir: "/",
 | |
| 		Env: []string{
 | |
| 			"path=usr/",
 | |
| 			"home=/root",
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	for _, test := range workdirTests {
 | |
| 		cmd := WorkdirCommand{
 | |
| 			cmd: &instructions.WorkdirCommand{
 | |
| 				Path: test.path,
 | |
| 			},
 | |
| 			snapshotFiles: []string{},
 | |
| 		}
 | |
| 		buildArgs := dockerfile.NewBuildArgs([]string{})
 | |
| 		cmd.ExecuteCommand(cfg, buildArgs)
 | |
| 		testutil.CheckErrorAndDeepEqual(t, false, nil, test.expectedPath, cfg.WorkingDir)
 | |
| 	}
 | |
| }
 |