84 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			1.9 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 (
 | 
						|
	"github.com/GoogleCloudPlatform/kaniko/testutil"
 | 
						|
	"github.com/containers/image/manifest"
 | 
						|
	"github.com/docker/docker/builder/dockerfile/instructions"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
// 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 := &manifest.Schema2Config{
 | 
						|
		WorkingDir: "/",
 | 
						|
		Env: []string{
 | 
						|
			"path=usr/",
 | 
						|
			"home=/root",
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, test := range workdirTests {
 | 
						|
		cmd := WorkdirCommand{
 | 
						|
			cmd: &instructions.WorkdirCommand{
 | 
						|
				Path: test.path,
 | 
						|
			},
 | 
						|
			snapshotFiles: []string{},
 | 
						|
		}
 | 
						|
		cmd.ExecuteCommand(cfg)
 | 
						|
		testutil.CheckErrorAndDeepEqual(t, false, nil, test.expectedPath, cfg.WorkingDir)
 | 
						|
	}
 | 
						|
}
 |