memos/plugin/gomark/parser/image_test.go

45 lines
821 B
Go
Raw Normal View History

package parser
import (
"testing"
"github.com/stretchr/testify/require"
2023-09-17 22:55:13 +08:00
2023-12-13 09:06:47 +08:00
"github.com/usememos/memos/plugin/gomark/ast"
"github.com/usememos/memos/plugin/gomark/parser/tokenizer"
)
func TestImageParser(t *testing.T) {
tests := []struct {
text string
2023-12-13 09:06:47 +08:00
image ast.Node
}{
{
text: "![](https://example.com)",
2023-12-13 09:06:47 +08:00
image: &ast.Image{
AltText: "",
URL: "https://example.com",
},
},
{
text: "! [](https://example.com)",
image: nil,
},
{
text: "![alte]( htt ps :/ /example.com)",
image: nil,
},
{
text: "![al te](https://example.com)",
2023-12-13 09:06:47 +08:00
image: &ast.Image{
AltText: "al te",
URL: "https://example.com",
},
},
}
for _, test := range tests {
tokens := tokenizer.Tokenize(test.text)
2023-12-13 09:06:47 +08:00
require.Equal(t, test.image, NewImageParser().Parse(tokens))
}
}