Skip to content
Snippets Groups Projects
Select Git revision
  • 5ea4e814f56be486efadfe69fb83f7171844ce9e
  • main default protected
  • release/v2.6.x
  • dependabot/github_actions/ci-641206964f
  • conform-k8s-1.33
  • rfc-external-artifact
  • release/v2.5.x
  • release/v2.4.x
  • remove-notation-validation
  • release/v2.3.x
  • release/v2.2.x
  • RFC
  • fix-commit-log
  • flux-audit
  • release/v2.1.x
  • context-ns
  • ksm-dashboard
  • rfc-passwordless-git-auth
  • release/v2.0.x
  • rfc-gating
  • release/v0.27.4
  • v2.6.4 protected
  • v2.6.3 protected
  • v2.6.2 protected
  • v2.6.1 protected
  • v2.6.0 protected
  • v2.5.1 protected
  • v2.5.0 protected
  • v2.4.0 protected
  • v2.3.0 protected
  • v2.2.3 protected
  • v2.2.2 protected
  • v2.2.1 protected
  • v2.2.0 protected
  • v2.1.2 protected
  • v2.1.1 protected
  • v2.1.0 protected
  • v2.0.1 protected
  • v2.0.0 protected
  • v2.0.0-rc.5 protected
  • v2.0.0-rc.4 protected
41 results

safe_relative_path_test.go

Blame
  • safe_relative_path_test.go 1.42 KiB
    /*
    Copyright 2020 The Flux authors
    
    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 flags
    
    import (
    	"testing"
    )
    
    func TestRelativePath_Set(t *testing.T) {
    	tests := []struct {
    		name      string
    		str       string
    		expect    string
    		expectErr bool
    	}{
    		{"relative path", "./foo", "./foo", false},
    		{"relative path", "foo", "./foo", false},
    		{"traversing relative path", "./foo/../bar", "./bar", false},
    		{"absolute path", "/foo", "./foo", false},
    		{"traversing absolute path", "/foo/../bar", "./bar", false},
    		{"traversing overflowing absolute path", "/foo/../../../bar", "./bar", false},
    		{"empty", "", "./", false},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			var p SafeRelativePath
    			if err := p.Set(tt.str); (err != nil) != tt.expectErr {
    				t.Errorf("Set() error = %v, expectErr %v", err, tt.expectErr)
    			}
    			if str := p.String(); str != tt.expect {
    				t.Errorf("Set() = %v, expect %v", str, tt.expect)
    			}
    		})
    	}
    }