// Copyright 2024 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package markdown import ( "strings" "testing" "code.gitea.io/gitea/modules/markup" "github.com/stretchr/testify/assert" ) func TestMathRender(t *testing.T) { const nl = "\n" testcases := []struct { testcase string expected string }{ { "$a$", `

a

` + nl, }, { "$ a $", `

a

` + nl, }, { "$a$ $b$", `

a b

` + nl, }, { `\(a\) \(b\)`, `

a b

` + nl, }, { `$a$.`, `

a.

` + nl, }, { `.$a$`, `

.$a$

` + nl, }, { `$a a$b b$`, `

$a a$b b$

` + nl, }, { `a a$b b`, `

a a$b b

` + nl, }, { `a$b $a a$b b$`, `

a$b $a a$b b$

` + nl, }, { "a$x$", `

a$x$

` + nl, }, { "$x$a", `

$x$a

` + nl, }, { "$a$ ($b$) [$c$] {$d$}", `

a (b) [$c$] {$d$}

` + nl, }, { "$$a$$", `
a
` + nl, }, { "$$a$$ test", `

a test

` + nl, }, { "test $$a$$", `

test a

` + nl, }, { "foo $x=\\$$ bar", `

foo x=\$ bar

` + nl, }, } for _, test := range testcases { t.Run(test.testcase, func(t *testing.T) { res, err := RenderString(markup.NewTestRenderContext(), test.testcase) assert.NoError(t, err) assert.Equal(t, test.expected, string(res)) }) } } func TestMathRenderBlockIndent(t *testing.T) { testcases := []struct { name string testcase string expected string }{ { "indent-0", ` \[ \alpha \] `, `

\alpha
`, }, { "indent-1", ` \[ \alpha \] `, `

\alpha
`, }, { "indent-2", ` \[ \alpha \] `, `

\alpha
`, }, { "indent-0-oneline", `$$ x $$ foo`, `
 x 

foo

`, }, { "indent-3-oneline", ` $$ x $$ foo`, `
 x 

foo

`, }, } for _, test := range testcases { t.Run(test.name, func(t *testing.T) { res, err := RenderString(markup.NewTestRenderContext(), strings.ReplaceAll(test.testcase, "", " ")) assert.NoError(t, err) assert.Equal(t, test.expected, string(res), "unexpected result for test case:\n%s", test.testcase) }) } }