5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 06:09:56 +08:00

Create dialogs_windows_test.go

This commit is contained in:
Gabriel Lima 2025-04-09 16:21:59 -03:00
parent 1b00dc9ac7
commit f46352dbe1

View File

@ -0,0 +1,57 @@
//go:build windows
package application_test
import (
"path/filepath"
"testing"
"github.com/matryer/is"
)
func TestCleanPath(t *testing.T) {
i := is.New(t)
tests := []struct {
name string
inputPath string
expected string
}{
{
name: "path with double separators",
inputPath: `C:\\temp\\folder`,
expected: `C:\temp\folder`,
},
{
name: "path with forward slashes",
inputPath: `C://temp//folder`,
expected: `C:\temp\folder`,
},
{
name: "path with trailing separator",
inputPath: `C:\\temp\\folder\\`,
expected: `C:\temp\folder`,
},
{
name: "path with escaped tab character",
inputPath: `C:\\Users\\test\\tab.txt`,
expected: `C:\Users\test\tab.txt`,
},
{
name: "newline character",
inputPath: `C:\\Users\\test\\newline\\n.txt`,
expected: `C:\Users\test\newline\n.txt`,
},
{
name: "UNC path with multiple separators",
inputPath: `\\\\\\\\host\\share\\test.txt`,
expected: `\\\\host\share\test.txt`,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cleaned := filepath.Clean(tt.inputPath)
i.Equal(cleaned, tt.expected)
})
}
}