-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfrontmatter_test.go
More file actions
99 lines (95 loc) · 2.08 KB
/
Copy pathfrontmatter_test.go
File metadata and controls
99 lines (95 loc) · 2.08 KB
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
package skl
import (
"reflect"
"testing"
)
func TestParseFrontmatter(t *testing.T) {
tests := []struct {
name string
input string
wantData map[string]interface{}
wantContent string
wantErr bool
}{
{
name: "Standard frontmatter",
input: `---
name: my-skill
description: A description
---
# Content
`,
wantData: map[string]interface{}{
"name": "my-skill",
"description": "A description",
},
wantContent: "# Content\n",
wantErr: false,
},
{
name: "Frontmatter with extra whitespace and fields",
input: `---
name: test-skill
description: "another description"
pluginName: my-plugin
metadata:
key: value
---
# Title
Body
`,
wantData: map[string]interface{}{
"name": "test-skill",
"description": "another description",
"pluginName": "my-plugin",
"metadata": map[string]interface{}{
"key": "value",
},
},
wantContent: "\n# Title\nBody\n",
wantErr: false,
},
{
name: "No frontmatter",
input: "# Just content\nNo YAML here",
wantData: map[string]interface{}{},
wantContent: "# Just content\nNo YAML here",
wantErr: false,
},
{
name: "Missing closing delimiter",
input: `---
name: unclosed
description: oops
# Just content
`,
wantData: map[string]interface{}{},
wantContent: "---\nname: unclosed\ndescription: oops\n# Just content\n",
wantErr: false,
},
{
name: "Empty frontmatter",
input: `---
---
# Content
`,
wantData: map[string]interface{}{},
wantContent: "# Content\n",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotData, gotContent, err := ParseFrontmatter(tt.input)
if (err != nil) != tt.wantErr {
t.Fatalf("ParseFrontmatter() error = %v, wantErr %v", err, tt.wantErr)
}
if !reflect.DeepEqual(gotData, tt.wantData) {
t.Errorf("ParseFrontmatter() gotData = %v, want %v", gotData, tt.wantData)
}
if gotContent != tt.wantContent {
t.Errorf("ParseFrontmatter() gotContent = %q, want %q", gotContent, tt.wantContent)
}
})
}
}