e81ccc406b
Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
30 lines
864 B
Go
30 lines
864 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package console
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/modules/markup"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRenderConsole(t *testing.T) {
|
|
var render Renderer
|
|
kases := map[string]string{
|
|
"\x1b[37m\x1b[40mnpm\x1b[0m \x1b[0m\x1b[32minfo\x1b[0m \x1b[0m\x1b[35mit worked if it ends with\x1b[0m ok": "<span class=\"term-fg37 term-bg40\">npm</span> <span class=\"term-fg32\">info</span> <span class=\"term-fg35\">it worked if it ends with</span> ok",
|
|
}
|
|
|
|
for k, v := range kases {
|
|
var buf strings.Builder
|
|
canRender := render.CanRender("test", strings.NewReader(k))
|
|
assert.True(t, canRender)
|
|
|
|
err := render.Render(&markup.RenderContext{}, strings.NewReader(k), &buf)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, v, buf.String())
|
|
}
|
|
}
|