-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
index_test.go
48 lines (40 loc) · 1.07 KB
/
index_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
package markdown
import (
"bytes"
"os"
"path/filepath"
"runtime"
"strings"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestGenerateIndex(t *testing.T) {
t.Parallel()
t.Run("create index", func(t *testing.T) {
t.Parallel()
var buf bytes.Buffer
if err := GenerateIndex(
"testdata",
WithTitle("Test Title"),
WithDescription([]string{"Test Description", "Next Description"}),
WithWriter(&buf),
); err != nil {
t.Fatalf("failed to generate index: %v", err)
}
f := filepath.Join("testdata", "expected", "index.md")
if runtime.GOOS == "windows" {
f = filepath.Join("testdata", "expected", "index.windows")
}
want, err := os.ReadFile(filepath.Clean(f))
if err != nil {
t.Fatalf("failed to read expected index: %v", err)
}
expect := strings.ReplaceAll(string(want), "\r\n", "\n")
expect = strings.ReplaceAll(expect, "\n", "")
got := strings.ReplaceAll(buf.String(), "\r\n", "\n")
got = strings.ReplaceAll(got, "\n", "")
if diff := cmp.Diff(expect, got); diff != "" {
t.Errorf("value is mismatch (-want +got):\n%s", diff)
}
})
}