-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast_test.go
54 lines (43 loc) · 1016 Bytes
/
ast_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
package pikchr
import (
"os"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/yuin/goldmark/text"
)
func hijackStdout(t testing.TB) (path string, close func() error) {
stdout := os.Stdout
t.Cleanup(func() {
os.Stdout = stdout
})
path = filepath.Join(t.TempDir(), "stdout")
f, err := os.Create(path)
require.NoError(t, err)
os.Stdout = f
return path, f.Close
}
func TestBlock(t *testing.T) {
src := []byte("foo\n")
lines := text.NewSegments()
lines.Append(text.NewSegment(0, len(src)))
var b Block
b.SetLines(lines)
t.Run("Raw", func(t *testing.T) {
assert.True(t, b.IsRaw())
})
t.Run("Dump", func(t *testing.T) {
stdout, closeStdout := hijackStdout(t)
b.Dump(src, 0)
require.NoError(t, closeStdout())
got, err := os.ReadFile(stdout)
require.NoError(t, err)
require.Equal(t, unlines(
"PikchrBlock {",
" RawText: \"foo\n\"",
" HasBlankPreviousLines: false",
"}",
), string(got))
})
}