memos/plugin/gomark/parser/italic_test.go

50 lines
860 B
Go
Raw Normal View History

package parser
import (
"testing"
"github.com/stretchr/testify/require"
2023-09-17 22:55:13 +08:00
2023-12-13 21:00:13 +08:00
"github.com/usememos/memos/plugin/gomark/ast"
"github.com/usememos/memos/plugin/gomark/parser/tokenizer"
)
func TestItalicParser(t *testing.T) {
tests := []struct {
text string
2023-12-13 21:00:13 +08:00
italic ast.Node
}{
{
text: "*Hello world!",
italic: nil,
},
{
text: "*Hello*",
2023-12-13 21:00:13 +08:00
italic: &ast.Italic{
Symbol: "*",
Content: "Hello",
},
},
{
text: "* Hello *",
2023-12-13 21:00:13 +08:00
italic: &ast.Italic{
Symbol: "*",
Content: " Hello ",
},
},
{
text: "*1* Hello * *",
2023-12-13 21:00:13 +08:00
italic: &ast.Italic{
Symbol: "*",
Content: "1",
},
},
}
for _, test := range tests {
tokens := tokenizer.Tokenize(test.text)
2023-12-13 23:50:05 +08:00
node, _ := NewItalicParser().Parse(tokens)
require.Equal(t, StringifyNodes([]ast.Node{test.italic}), StringifyNodes([]ast.Node{node}))
}
}