54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
| Copyright 2020 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 config
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/GoogleContainerTools/kaniko/testutil"
 | |
| )
 | |
| 
 | |
| func TestKanikoGitOptions(t *testing.T) {
 | |
| 	t.Run("invalid pair", func(t *testing.T) {
 | |
| 		var g = &KanikoGitOptions{}
 | |
| 		testutil.CheckError(t, true, g.Set("branch"))
 | |
| 	})
 | |
| 
 | |
| 	t.Run("sets values", func(t *testing.T) {
 | |
| 		var g = &KanikoGitOptions{}
 | |
| 		testutil.CheckNoError(t, g.Set("branch=foo"))
 | |
| 		testutil.CheckNoError(t, g.Set("recurse-submodules=true"))
 | |
| 		testutil.CheckNoError(t, g.Set("single-branch=true"))
 | |
| 		testutil.CheckDeepEqual(t, KanikoGitOptions{
 | |
| 			Branch:            "foo",
 | |
| 			SingleBranch:      true,
 | |
| 			RecurseSubmodules: true,
 | |
| 		}, *g)
 | |
| 	})
 | |
| 
 | |
| 	t.Run("sets bools other than true", func(t *testing.T) {
 | |
| 		var g = KanikoGitOptions{}
 | |
| 		testutil.CheckError(t, true, g.Set("recurse-submodules="))
 | |
| 		testutil.CheckError(t, true, g.Set("single-branch=zaza"))
 | |
| 		testutil.CheckNoError(t, g.Set("recurse-submodules=false"))
 | |
| 		testutil.CheckDeepEqual(t, KanikoGitOptions{
 | |
| 			SingleBranch:      false,
 | |
| 			RecurseSubmodules: false,
 | |
| 		}, g)
 | |
| 	})
 | |
| }
 |