mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
35 lines
631 B
Go
35 lines
631 B
Go
|
package sheet
|
|||
|
|
|||
|
import (
|
|||
|
"testing"
|
|||
|
|
|||
|
"github.com/cheat/cheat/internal/config"
|
|||
|
)
|
|||
|
|
|||
|
// TestColorize asserts that syntax-highlighting is correctly applied
|
|||
|
func TestColorize(t *testing.T) {
|
|||
|
|
|||
|
// mock configs
|
|||
|
conf := config.Config{
|
|||
|
Formatter: "terminal16m",
|
|||
|
Style: "solarized-dark",
|
|||
|
}
|
|||
|
|
|||
|
// mock a sheet
|
|||
|
s := Sheet{
|
|||
|
Text: "echo 'foo'",
|
|||
|
}
|
|||
|
|
|||
|
// colorize the sheet text
|
|||
|
s.Colorize(conf)
|
|||
|
|
|||
|
// initialize expectations
|
|||
|
want := "[38;2;181;137;0mecho[0m[38;2;147;161;161m"
|
|||
|
want += " [0m[38;2;42;161;152m'foo'[0m"
|
|||
|
|
|||
|
// assert
|
|||
|
if s.Text != want {
|
|||
|
t.Errorf("failed to colorize sheet: want: %s, got: %s", want, s.Text)
|
|||
|
}
|
|||
|
}
|