forked from JanDeDobbeleer/oh-my-posh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperties_test.go
95 lines (84 loc) · 2.25 KB
/
properties_test.go
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
89
90
91
92
93
94
95
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)
}