oh-my-posh/src/environment_test.go
2021-11-17 07:19:43 +01:00

47 lines
1.2 KiB
Go

package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestNormalHostName(t *testing.T) {
hostName := "hello"
assert.Equal(t, hostName, cleanHostName(hostName))
}
func TestHostNameWithLocal(t *testing.T) {
hostName := "hello.local"
assert.Equal(t, "hello", cleanHostName(hostName))
}
func TestHostNameWithLan(t *testing.T) {
hostName := "hello.lan"
cleanHostName := cleanHostName(hostName)
assert.Equal(t, "hello", cleanHostName)
}
func TestWindowsPathWithDriveLetter(t *testing.T) {
cases := []struct {
Case string
CWD string
Expected string
}{
{Case: "C drive", CWD: `C:\Windows\`, Expected: `C:\Windows\`},
{Case: "C drive lower case", CWD: `c:\Windows\`, Expected: `C:\Windows\`},
{Case: "P drive lower case", CWD: `p:\some\`, Expected: `P:\some\`},
{Case: "some drive lower case", CWD: `some:\some\`, Expected: `some:\some\`},
{Case: "drive ending in c:", CWD: `src:\source\`, Expected: `src:\source\`},
{Case: "registry drive", CWD: `HKLM:\SOFTWARE\magnetic:test\`, Expected: `HKLM:\SOFTWARE\magnetic:test\`},
}
for _, tc := range cases {
env := &environment{
args: &args{
PWD: &tc.CWD,
},
}
assert.Equal(t, env.getcwd(), tc.Expected)
}
}