-
Notifications
You must be signed in to change notification settings - Fork 0
/
links_test.go
95 lines (86 loc) · 2.37 KB
/
links_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 fragments_test
import (
"testing"
fragments "github.com/katallaxie/fiber-mosaic"
"github.com/stretchr/testify/assert"
)
func TestHeader_Links(t *testing.T) {
tests := []struct {
desc string
in fragments.Header
want []fragments.Link
}{
{
desc: "should return a list of links",
in: fragments.Header("<https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css>; rel=\"stylesheet\", <https://unpkg.com/react-dom@17/umd/react-dom.development.js>; rel=\"script\""),
want: []fragments.Link{
{
URL: "https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css",
Rel: "stylesheet",
Params: map[string]string{},
},
{
URL: "https://unpkg.com/react-dom@17/umd/react-dom.development.js",
Rel: "script",
Params: map[string]string{},
},
},
},
}
for _, test := range tests {
t.Run(test.desc, func(t *testing.T) {
got := test.in.Links()
assert.Equal(t, test.want, got)
})
}
}
func TestHeader_FilterByStylesheet(t *testing.T) {
tests := []struct {
desc string
in fragments.Header
want []fragments.Link
}{
{
desc: "should return a list of links",
in: fragments.Header("<https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css>; rel=\"stylesheet\", <https://unpkg.com/react-dom@17/umd/react-dom.development.js>; rel=\"script\""),
want: []fragments.Link{
{
URL: "https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css",
Rel: "stylesheet",
Params: map[string]string{},
},
},
},
}
for _, test := range tests {
t.Run(test.desc, func(t *testing.T) {
got := fragments.FilterByStylesheet(test.in.Links()...)
assert.Equal(t, test.want, got)
})
}
}
func TestHeader_FilterByScript(t *testing.T) {
tests := []struct {
desc string
in fragments.Header
want []fragments.Link
}{
{
desc: "should return a list of links",
in: fragments.Header("<https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css>; rel=\"stylesheet\", <https://unpkg.com/react-dom@17/umd/react-dom.development.js>; rel=\"script\""),
want: []fragments.Link{
{
URL: "https://unpkg.com/react-dom@17/umd/react-dom.development.js",
Rel: "script",
Params: map[string]string{},
},
},
},
}
for _, test := range tests {
t.Run(test.desc, func(t *testing.T) {
got := fragments.FilterByScript(test.in.Links()...)
assert.Equal(t, test.want, got)
})
}
}