mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
96 lines
2.2 KiB
Go
96 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGetString(t *testing.T) {
|
|
expected := "expected"
|
|
values := map[Property]interface{}{TextProperty: expected}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getString(TextProperty, "err")
|
|
assert.Equal(t, value, expected)
|
|
}
|
|
|
|
func TestGetStringNoEntry(t *testing.T) {
|
|
expected := "expected"
|
|
values := map[Property]interface{}{}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getString(TextProperty, expected)
|
|
assert.Equal(t, value, expected)
|
|
}
|
|
|
|
func TestGetStringNoTextEntry(t *testing.T) {
|
|
expected := "expected"
|
|
values := map[Property]interface{}{TextProperty: true}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getString(TextProperty, expected)
|
|
assert.Equal(t, value, expected)
|
|
}
|
|
|
|
func TestGetColor(t *testing.T) {
|
|
expected := "#123456"
|
|
values := map[Property]interface{}{UserColor: expected}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getColor(UserColor, "#789123")
|
|
assert.Equal(t, value, expected)
|
|
}
|
|
|
|
func TestDefaultColorWithInvalidColorCode(t *testing.T) {
|
|
expected := "#123456"
|
|
values := map[Property]interface{}{UserColor: "invalid"}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getColor(UserColor, expected)
|
|
assert.Equal(t, value, expected)
|
|
}
|
|
|
|
func TestDefaultColorWithUnavailableProperty(t *testing.T) {
|
|
expected := "#123456"
|
|
values := map[Property]interface{}{}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getColor(UserColor, expected)
|
|
assert.Equal(t, value, expected)
|
|
}
|
|
|
|
func TestGetBool(t *testing.T) {
|
|
expected := true
|
|
values := map[Property]interface{}{DisplayHost: expected}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getBool(DisplayHost, false)
|
|
assert.True(t, value)
|
|
}
|
|
|
|
func TestGetBoolPropertyNotInMap(t *testing.T) {
|
|
values := map[Property]interface{}{}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getBool(DisplayHost, false)
|
|
assert.False(t, value)
|
|
}
|
|
|
|
func TestGetBoolInvalidProperty(t *testing.T) {
|
|
values := map[Property]interface{}{DisplayHost: "borked"}
|
|
properties := properties{
|
|
values: values,
|
|
}
|
|
value := properties.getBool(DisplayHost, false)
|
|
assert.False(t, value)
|
|
}
|