mirror of
https://github.com/usememos/memos.git
synced 2025-01-10 14:22:07 +08:00
38 lines
686 B
Go
38 lines
686 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 TestCodeParser(t *testing.T) {
|
|
tests := []struct {
|
|
text string
|
|
code ast.Node
|
|
}{
|
|
{
|
|
text: "`Hello world!",
|
|
code: nil,
|
|
},
|
|
{
|
|
text: "`Hello world!`",
|
|
code: &ast.Code{
|
|
Content: "Hello world!",
|
|
},
|
|
},
|
|
{
|
|
text: "`Hello \nworld!`",
|
|
code: nil,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tokens := tokenizer.Tokenize(test.text)
|
|
node, _ := NewCodeParser().Parse(tokens)
|
|
require.Equal(t, StringifyNodes([]ast.Node{test.code}), StringifyNodes([]ast.Node{node}))
|
|
}
|
|
}
|