Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067 Component: engine
23 lines
560 B
Go
23 lines
560 B
Go
package longpath // import "github.com/docker/docker/pkg/longpath"
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestStandardLongPath(t *testing.T) {
|
|
c := `C:\simple\path`
|
|
longC := AddPrefix(c)
|
|
if !strings.EqualFold(longC, `\\?\C:\simple\path`) {
|
|
t.Errorf("Wrong long path returned. Original = %s ; Long = %s", c, longC)
|
|
}
|
|
}
|
|
|
|
func TestUNCLongPath(t *testing.T) {
|
|
c := `\\server\share\path`
|
|
longC := AddPrefix(c)
|
|
if !strings.EqualFold(longC, `\\?\UNC\server\share\path`) {
|
|
t.Errorf("Wrong UNC long path returned. Original = %s ; Long = %s", c, longC)
|
|
}
|
|
}
|