mirror of
https://github.com/usememos/memos.git
synced 2025-02-24 21:33:45 +08:00
30 lines
653 B
Go
30 lines
653 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 TestMathParser(t *testing.T) {
|
|
tests := []struct {
|
|
text string
|
|
link ast.Node
|
|
}{
|
|
{
|
|
text: "$\\sqrt{3x-1}+(1+x)^2$",
|
|
link: &ast.Math{
|
|
Content: "\\sqrt{3x-1}+(1+x)^2",
|
|
},
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
tokens := tokenizer.Tokenize(test.text)
|
|
node, _ := NewMathParser().Match(tokens)
|
|
require.Equal(t, restore.Restore([]ast.Node{test.link}), restore.Restore([]ast.Node{node}))
|
|
}
|
|
}
|