aboutsummaryrefslogtreecommitdiff
path: root/src/internal/safefilepath/path_test.go
blob: dc662c18b3d03bb56043da8f70e1e2a46e164590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package safefilepath_test

import (
	"internal/safefilepath"
	"os"
	"path/filepath"
	"runtime"
	"testing"
)

type PathTest struct {
	path, result string
}

const invalid = ""

var fspathtests = []PathTest{
	{".", "."},
	{"/a/b/c", "/a/b/c"},
	{"a\x00b", invalid},
}

var winreservedpathtests = []PathTest{
	{`a\b`, `a\b`},
	{`a:b`, `a:b`},
	{`a/b:c`, `a/b:c`},
	{`NUL`, `NUL`},
	{`./com1`, `./com1`},
	{`a/nul/b`, `a/nul/b`},
}

// Whether a reserved name with an extension is reserved or not varies by
// Windows version.
var winreservedextpathtests = []PathTest{
	{"nul.txt", "nul.txt"},
	{"a/nul.txt/b", "a/nul.txt/b"},
}

var plan9reservedpathtests = []PathTest{
	{`#c`, `#c`},
}

func TestFromFS(t *testing.T) {
	switch runtime.GOOS {
	case "windows":
		if canWriteFile(t, "NUL") {
			t.Errorf("can unexpectedly write a file named NUL on Windows")
		}
		if canWriteFile(t, "nul.txt") {
			fspathtests = append(fspathtests, winreservedextpathtests...)
		} else {
			winreservedpathtests = append(winreservedpathtests, winreservedextpathtests...)
		}
		for i := range winreservedpathtests {
			winreservedpathtests[i].result = invalid
		}
		for i := range fspathtests {
			fspathtests[i].result = filepath.FromSlash(fspathtests[i].result)
		}
	case "plan9":
		for i := range plan9reservedpathtests {
			plan9reservedpathtests[i].result = invalid
		}
	}
	tests := fspathtests
	tests = append(tests, winreservedpathtests...)
	tests = append(tests, plan9reservedpathtests...)
	for _, test := range tests {
		got, err := safefilepath.FromFS(test.path)
		if (got == "") != (err != nil) {
			t.Errorf(`FromFS(%q) = %q, %v; want "" only if err != nil`, test.path, got, err)
		}
		if got != test.result {
			t.Errorf("FromFS(%q) = %q, %v; want %q", test.path, got, err, test.result)
		}
	}
}

func canWriteFile(t *testing.T, name string) bool {
	path := filepath.Join(t.TempDir(), name)
	os.WriteFile(path, []byte("ok"), 0666)
	b, _ := os.ReadFile(path)
	return string(b) == "ok"
}