// Copyright 2024 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package markdown_test import ( "strings" "testing" "code.gitea.io/gitea/modules/markup" "code.gitea.io/gitea/modules/markup/markdown" "code.gitea.io/gitea/modules/svg" "github.com/stretchr/testify/assert" "golang.org/x/text/cases" "golang.org/x/text/language" ) func TestAttention(t *testing.T) { defer svg.MockIcon("octicon-info")() defer svg.MockIcon("octicon-light-bulb")() defer svg.MockIcon("octicon-report")() defer svg.MockIcon("octicon-alert")() defer svg.MockIcon("octicon-stop")() renderAttention := func(attention, icon string) string { tmpl := `
") test(`> [!note]`, renderAttention("note", "octicon-info")+"\n") test(`> [!tip]`, renderAttention("tip", "octicon-light-bulb")+"\n") test(`> [!important]`, renderAttention("important", "octicon-report")+"\n") test(`> [!warning]`, renderAttention("warning", "octicon-alert")+"\n") test(`> [!caution]`, renderAttention("caution", "octicon-stop")+"\n") // escaped by mdformat test(`> \[!NOTE\]`, renderAttention("note", "octicon-info")+"\n") // legacy GitHub style test(`> **warning**`, renderAttention("warning", "octicon-alert")+"\n") }{Attention}
` tmpl = strings.ReplaceAll(tmpl, "{attention}", attention) tmpl = strings.ReplaceAll(tmpl, "{icon}", icon) tmpl = strings.ReplaceAll(tmpl, "{Attention}", cases.Title(language.English).String(attention)) return tmpl } test := func(input, expected string) { result, err := markdown.RenderString(markup.NewTestRenderContext(), input) assert.NoError(t, err) assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(string(result))) } test(` > [!NOTE] > text `, renderAttention("note", "octicon-info")+"\ntext
\n