mirror of
https://github.com/usememos/memos.git
synced 2025-01-10 22:33:48 +08:00
71 lines
1.1 KiB
Go
71 lines
1.1 KiB
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 TestParser(t *testing.T) {
|
|
tests := []struct {
|
|
text string
|
|
nodes []ast.Node
|
|
}{
|
|
{
|
|
text: "Hello world!",
|
|
nodes: []ast.Node{
|
|
&ast.Paragraph{
|
|
Children: []ast.Node{
|
|
&ast.Text{
|
|
Content: "Hello world!",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
text: "**Hello** world!",
|
|
nodes: []ast.Node{
|
|
&ast.Paragraph{
|
|
Children: []ast.Node{
|
|
&ast.Bold{
|
|
Symbol: "*",
|
|
Content: "Hello",
|
|
},
|
|
&ast.Text{
|
|
Content: " world!",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
text: "Hello **world**!",
|
|
nodes: []ast.Node{
|
|
&ast.Paragraph{
|
|
Children: []ast.Node{
|
|
&ast.Text{
|
|
Content: "Hello ",
|
|
},
|
|
&ast.Bold{
|
|
Symbol: "*",
|
|
Content: "world",
|
|
},
|
|
&ast.Text{
|
|
Content: "!",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tokens := tokenizer.Tokenize(test.text)
|
|
nodes := Parse(tokens)
|
|
require.Equal(t, test.nodes, nodes)
|
|
}
|
|
}
|