mirror of
https://github.com/usememos/memos.git
synced 2025-02-24 21:33:45 +08:00
31 lines
657 B
Go
31 lines
657 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"
|
|
"github.com/usememos/memos/plugin/gomark/restore"
|
|
)
|
|
|
|
func TestEscapingCharacterParser(t *testing.T) {
|
|
tests := []struct {
|
|
text string
|
|
node ast.Node
|
|
}{
|
|
{
|
|
text: `\# 123`,
|
|
node: &ast.EscapingCharacter{
|
|
Symbol: "#",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tokens := tokenizer.Tokenize(test.text)
|
|
node, _ := NewEscapingCharacterParser().Match(tokens)
|
|
require.Equal(t, restore.Restore([]ast.Node{test.node}), restore.Restore([]ast.Node{node}))
|
|
}
|
|
}
|