mirror of
https://github.com/usememos/memos.git
synced 2024-12-29 16:42:11 +08:00
37 lines
585 B
Go
37 lines
585 B
Go
package parser
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/usememos/memos/plugin/gomark/parser/tokenizer"
|
|
)
|
|
|
|
func TestCodeParser(t *testing.T) {
|
|
tests := []struct {
|
|
text string
|
|
code *CodeParser
|
|
}{
|
|
{
|
|
text: "`Hello world!",
|
|
code: nil,
|
|
},
|
|
{
|
|
text: "`Hello world!`",
|
|
code: &CodeParser{
|
|
Content: "Hello world!",
|
|
},
|
|
},
|
|
{
|
|
text: "`Hello \nworld!`",
|
|
code: nil,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tokens := tokenizer.Tokenize(test.text)
|
|
code := NewCodeParser()
|
|
require.Equal(t, test.code, code.Match(tokens))
|
|
}
|
|
}
|