oh-my-posh/src/ansi/ansi_writer_test.go

277 lines
9.6 KiB
Go
Raw Normal View History

2023-01-04 11:44:29 -08:00
package ansi
import (
"testing"
"github.com/jandedobbeleer/oh-my-posh/src/shell"
2022-12-28 08:30:48 -08:00
"github.com/stretchr/testify/assert"
)
2021-09-25 11:49:32 -07:00
func TestWriteANSIColors(t *testing.T) {
cases := []struct {
Case string
Expected string
Input string
Colors *Colors
Parent *Colors
2021-09-25 11:49:32 -07:00
TerminalBackground string
}{
{
Case: "Inline override identical",
Input: "\ue0a0saturnay <red>↑</>1",
Expected: "\x1b[31m\ue0a0saturnay ↑1\x1b[0m",
Colors: &Colors{Foreground: "red", Background: Transparent},
},
{
Case: "Bold",
Input: "<b>test</b>",
Expected: "\x1b[1m\x1b[30mtest\x1b[22m\x1b[0m",
Colors: &Colors{Foreground: "black", Background: ParentBackground},
},
{
Case: "Bold with color override",
Input: "<b><#ffffff>test</></b>",
Expected: "\x1b[1m\x1b[30m\x1b[38;2;255;255;255mtest\x1b[30m\x1b[22m\x1b[0m",
Colors: &Colors{Foreground: "black", Background: ParentBackground},
},
{
Case: "Bold with color override, flavor 2",
Input: "<#ffffff><b>test</b></>",
Expected: "\x1b[38;2;255;255;255m\x1b[1mtest\x1b[22m\x1b[0m",
Colors: &Colors{Foreground: "black", Background: ParentBackground},
},
{
Case: "Double override",
Input: "<#ffffff>jan</>@<#ffffff>Jans-MBP</>",
Expected: "\x1b[48;2;255;87;51m\x1b[38;2;255;255;255mjan\x1b[32m@\x1b[38;2;255;255;255mJans-MBP\x1b[0m",
Colors: &Colors{Foreground: "green", Background: "#FF5733"},
},
2021-09-25 11:49:32 -07:00
{
Case: "No color override",
Input: "test",
Expected: "\x1b[47m\x1b[30mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
Parent: &Colors{Foreground: "black", Background: "white"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit foreground",
Input: "test",
Expected: "\x1b[47m\x1b[33mtest\x1b[0m",
Colors: &Colors{Foreground: ParentForeground, Background: "white"},
Parent: &Colors{Foreground: "yellow", Background: "white"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit background",
Input: "test",
Expected: "\x1b[41m\x1b[30mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: ParentBackground},
Parent: &Colors{Foreground: "yellow", Background: "red"},
2021-09-25 11:49:32 -07:00
},
{
Case: "No parent",
Input: "test",
Expected: "\x1b[30mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: ParentBackground},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit override foreground",
Input: "hello <parentForeground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[33mworld\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
Parent: &Colors{Foreground: "yellow", Background: "red"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit override background",
Input: "hello <black,parentBackground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[41mworld\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
Parent: &Colors{Foreground: "yellow", Background: "red"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit override background, no foreground specified",
Input: "hello <,parentBackground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[41mworld\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
Parent: &Colors{Foreground: "yellow", Background: "red"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit no parent foreground",
Input: "hello <parentForeground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[0m\x1b[37;49m\x1b[7mworld\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
{
Case: "Inherit no parent background",
Input: "hello <,parentBackground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[49mworld\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
{
Case: "Inherit override both",
Input: "hello <parentForeground,parentBackground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[41m\x1b[33mworld\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
Parent: &Colors{Foreground: "yellow", Background: "red"},
},
{
Case: "Inherit override both inverted",
Input: "hello <parentBackground,parentForeground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[43m\x1b[31mworld\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
Parent: &Colors{Foreground: "yellow", Background: "red"},
},
2021-09-25 11:49:32 -07:00
{
Case: "Inline override",
Input: "hello, <red>world</>, rabbit",
Expected: "\x1b[47m\x1b[30mhello, \x1b[31mworld\x1b[30m, rabbit\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Transparent background",
Input: "hello world",
Expected: "\x1b[37mhello world\x1b[0m",
Colors: &Colors{Foreground: "white", Background: Transparent},
2021-09-25 11:49:32 -07:00
},
{
Case: "Transparent foreground override",
Input: "hello <#ffffff>world</>",
Expected: "\x1b[32mhello \x1b[38;2;255;255;255mworld\x1b[0m",
Colors: &Colors{Foreground: "green", Background: Transparent},
2021-09-25 11:49:32 -07:00
},
{
Case: "No foreground",
Input: "test",
Expected: "\x1b[48;2;255;87;51m\x1b[37mtest\x1b[0m",
Colors: &Colors{Foreground: "", Background: "#FF5733"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Transparent foreground",
Input: "test",
Expected: "\x1b[0m\x1b[38;2;255;87;51;49m\x1b[7mtest\x1b[0m",
Colors: &Colors{Foreground: Transparent, Background: "#FF5733"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Transparent foreground, terminal background set",
Input: "test",
Expected: "\x1b[38;2;33;47;60m\x1b[48;2;255;87;51mtest\x1b[0m",
Colors: &Colors{Foreground: Transparent, Background: "#FF5733"},
2021-09-25 11:49:32 -07:00
TerminalBackground: "#212F3C",
},
{
Case: "Foreground for foreground override",
Input: "<foreground>test</>",
Expected: "\x1b[47m\x1b[30mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
{
Case: "Background for background override",
Input: "<,background>test</>",
Expected: "\x1b[47m\x1b[30mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
{
Case: "Google",
Input: "<blue,white>G</><red,white>o</><yellow,white>o</><blue,white>g</><green,white>l</><red,white>e</>",
Expected: "\x1b[47m\x1b[34mG\x1b[40m\x1b[30m\x1b[47m\x1b[31mo\x1b[40m\x1b[30m\x1b[47m\x1b[33mo\x1b[40m\x1b[30m\x1b[47m\x1b[34mg\x1b[40m\x1b[30m\x1b[47m\x1b[32ml\x1b[40m\x1b[30m\x1b[47m\x1b[31me\x1b[0m", //nolint: lll
Colors: &Colors{Foreground: "black", Background: "black"},
},
{
Case: "Foreground for background override",
Input: "<background>test</>",
Expected: "\x1b[47m\x1b[37mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
{
Case: "Foreground for background vice versa override",
Input: "<background,foreground>test</>",
Expected: "\x1b[40m\x1b[37mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
{
Case: "Background for foreground override",
Input: "<,foreground>test</>",
Expected: "\x1b[40m\x1b[30mtest\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
2023-09-07 07:57:09 -07:00
{
Case: "Nested override",
Input: "hello, <red>world, <white>rabbit</> hello</>",
Expected: "\x1b[47m\x1b[30mhello, \x1b[31mworld, \x1b[37mrabbit\x1b[31m hello\x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
{
Case: "Transparent override",
Input: "home<transparent> / </>code<transparent> / </>src ",
Expected: "\x1b[47m\x1b[30mhome\x1b[0m\x1b[37;49m\x1b[7m / \x1b[27m\x1b[47m\x1b[30mcode\x1b[0m\x1b[37;49m\x1b[7m / \x1b[27m\x1b[47m\x1b[30msrc \x1b[0m",
Colors: &Colors{Foreground: "black", Background: "white"},
},
}
2021-09-25 11:49:32 -07:00
for _, tc := range cases {
2023-01-04 11:44:29 -08:00
renderer := &Writer{
ParentColors: []*Colors{tc.Parent},
Colors: tc.Colors,
2022-01-26 04:09:21 -08:00
TerminalBackground: tc.TerminalBackground,
AnsiColors: &DefaultColors{},
TrueColor: true,
2021-09-25 11:49:32 -07:00
}
renderer.Init(shell.GENERIC)
2022-01-26 04:09:21 -08:00
renderer.Write(tc.Colors.Background, tc.Colors.Foreground, tc.Input)
got, _ := renderer.String()
2021-09-25 11:49:32 -07:00
assert.Equal(t, tc.Expected, got, tc.Case)
}
}
2023-01-05 02:46:02 -08:00
func TestWriteLength(t *testing.T) {
cases := []struct {
Case string
Expected int
Input string
Colors *Colors
2023-01-05 02:46:02 -08:00
}{
{
Case: "Bold",
Input: "<b>test</b>",
Expected: 4,
Colors: &Colors{Foreground: "black", Background: ParentBackground},
2023-01-05 02:46:02 -08:00
},
{
Case: "Bold with color override",
Input: "<b><#ffffff>test</></b>",
Expected: 4,
Colors: &Colors{Foreground: "black", Background: ParentBackground},
2023-01-05 02:46:02 -08:00
},
{
Case: "Bold with color override and link",
Input: "<b><#ffffff>test</></b> <LINK>https://example.com<TEXT>url</TEXT></LINK>",
2023-01-05 02:46:02 -08:00
Expected: 8,
Colors: &Colors{Foreground: "black", Background: ParentBackground},
2023-01-05 02:46:02 -08:00
},
{
Case: "Bold with color override and link and leading/trailing spaces",
Input: " <b><#ffffff>test</></b> <LINK>https://example.com<TEXT>url</TEXT></LINK> ",
2023-01-05 02:46:02 -08:00
Expected: 10,
Colors: &Colors{Foreground: "black", Background: ParentBackground},
2023-01-05 02:46:02 -08:00
},
{
Case: "Bold with color override and link without text and leading/trailing spaces",
Input: " <b><#ffffff>test</></b> <LINK>https://example.com<TEXT></TEXT></LINK> ",
Expected: 11,
Colors: &Colors{Foreground: "black", Background: ParentBackground},
},
2023-01-05 02:46:02 -08:00
}
for _, tc := range cases {
renderer := &Writer{
ParentColors: []*Colors{},
2023-01-05 02:46:02 -08:00
Colors: tc.Colors,
AnsiColors: &DefaultColors{},
}
renderer.Init(shell.GENERIC)
renderer.Write(tc.Colors.Background, tc.Colors.Foreground, tc.Input)
_, got := renderer.String()
assert.Equal(t, tc.Expected, got, tc.Case)
}
}