mirror of
https://github.com/usememos/memos.git
synced 2025-01-09 21:59:35 +08:00
49 lines
923 B
Go
49 lines
923 B
Go
package parser
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/usememos/memos/plugin/gomark/ast"
|
|
"github.com/usememos/memos/plugin/gomark/parser/tokenizer"
|
|
)
|
|
|
|
func TestBlockquoteParser(t *testing.T) {
|
|
tests := []struct {
|
|
text string
|
|
blockquote ast.Node
|
|
}{
|
|
{
|
|
text: "> Hello world",
|
|
blockquote: &ast.Blockquote{
|
|
Children: []ast.Node{
|
|
&ast.Text{
|
|
Content: "Hello world",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
text: "> Hello\nworld",
|
|
blockquote: &ast.Blockquote{
|
|
Children: []ast.Node{
|
|
&ast.Text{
|
|
Content: "Hello",
|
|
},
|
|
&ast.LineBreak{},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
text: ">Hello\nworld",
|
|
blockquote: nil,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tokens := tokenizer.Tokenize(test.text)
|
|
node, _ := NewBlockquoteParser().Parse(tokens)
|
|
require.Equal(t, StringifyNodes([]ast.Node{test.blockquote}), StringifyNodes([]ast.Node{node}))
|
|
}
|
|
}
|