mirror of
https://github.com/usememos/memos.git
synced 2025-02-24 05:18:57 +08:00
42 lines
847 B
Go
42 lines
847 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 TestAutoLinkParser(t *testing.T) {
|
|
tests := []struct {
|
|
text string
|
|
link ast.Node
|
|
}{
|
|
{
|
|
text: "<https://example.com)",
|
|
link: nil,
|
|
},
|
|
{
|
|
text: "<https://example.com>",
|
|
link: &ast.AutoLink{
|
|
URL: "https://example.com",
|
|
},
|
|
},
|
|
{
|
|
text: "https://example.com",
|
|
link: &ast.AutoLink{
|
|
URL: "https://example.com",
|
|
IsRawText: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tokens := tokenizer.Tokenize(test.text)
|
|
node, _ := NewAutoLinkParser().Match(tokens)
|
|
require.Equal(t, restore.Restore([]ast.Node{test.link}), restore.Restore([]ast.Node{node}))
|
|
}
|
|
}
|