-
Notifications
You must be signed in to change notification settings - Fork 26
/
listitem_test.go
104 lines (97 loc) · 1.83 KB
/
listitem_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
96
97
98
99
100
101
102
103
104
package wishlist
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestItemWrapper(t *testing.T) {
s := ItemWrapper{
endpoint: &Endpoint{
Name: "name",
Desc: "desc",
Link: Link{
URL: "https://example.com",
},
Address: "foo.bar:22",
},
descriptors: []descriptor{
withDescription,
withLink,
withSSHURL,
},
}
require.Equal(t, "name", s.Title())
require.Equal(t, "name", s.FilterValue())
require.Equal(
t,
"desc\nhttps://example.com\nssh://foo.bar:22",
s.Description(),
)
}
func TestWithSSHURL(t *testing.T) {
require.Equal(
t,
"ssh://localhost:22",
withSSHURL(&Endpoint{
Address: "localhost:22",
}, styles{}),
)
}
func TestWithDescription(t *testing.T) {
t.Run("no description", func(t *testing.T) {
require.Equal(
t,
"no description",
withDescription(&Endpoint{}, makeStyles(testRenderer)),
)
})
t.Run("multiline", func(t *testing.T) {
require.Equal(
t,
"foo",
withDescription(&Endpoint{
Desc: "foo\n\nbar\n\nsfsdfsd\n",
}, makeStyles(testRenderer)),
)
})
t.Run("simple", func(t *testing.T) {
require.Equal(
t,
"foobar desc",
withDescription(&Endpoint{
Desc: "foobar desc",
}, makeStyles(testRenderer)),
)
})
}
func TestWithLink(t *testing.T) {
t.Run("no link", func(t *testing.T) {
require.Equal(
t,
"no link",
withLink(&Endpoint{}, makeStyles(testRenderer)),
)
})
t.Run("url only", func(t *testing.T) {
require.Equal(
t,
"https://example.com",
withLink(&Endpoint{
Link: Link{
URL: "https://example.com",
},
}, makeStyles(testRenderer)),
)
})
t.Run("url and name", func(t *testing.T) {
require.Equal(
t,
"example https://example.com",
withLink(&Endpoint{
Link: Link{
Name: "example",
URL: "https://example.com",
},
}, makeStyles(testRenderer)),
)
})
}