memos/plugin/gomark/parser/bold_test.go

51 lines
837 B
Go
Raw Normal View History

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