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

253 lines
8.7 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
2023-01-04 11:44:29 -08:00
Colors *cachedColor
Parent *cachedColor
2021-09-25 11:49:32 -07:00
TerminalBackground string
}{
{
Case: "Bold",
Input: "<b>test</b>",
Expected: "\x1b[1m\x1b[30mtest\x1b[22m\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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[0m\x1b[30m\x1b[22m\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
Parent: &cachedColor{Foreground: "black", Background: "white"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit foreground",
Input: "test",
Expected: "\x1b[47m\x1b[33mtest\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: ParentForeground, Background: "white"},
Parent: &cachedColor{Foreground: "yellow", Background: "white"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Inherit background",
Input: "test",
Expected: "\x1b[41m\x1b[30mtest\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: ParentBackground},
Parent: &cachedColor{Foreground: "yellow", Background: "red"},
2021-09-25 11:49:32 -07:00
},
{
Case: "No parent",
Input: "test",
Expected: "\x1b[30mtest\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
Parent: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
Parent: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
Parent: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
},
{
Case: "Inherit no parent background",
Input: "hello <,parentBackground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[0m\x1b[30mworld\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
},
{
Case: "Inherit override both",
Input: "hello <parentForeground,parentBackground>world</>",
Expected: "\x1b[47m\x1b[30mhello \x1b[41m\x1b[33mworld\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
Parent: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
Parent: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
2021-09-25 11:49:32 -07:00
},
{
Case: "Transparent background",
Input: "hello world",
Expected: "\x1b[37mhello world\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
},
{
Case: "Background for background override",
Input: "<,background>test</>",
Expected: "\x1b[47m\x1b[30mtest\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "black"},
},
{
Case: "Foreground for background override",
Input: "<background>test</>",
Expected: "\x1b[47m\x1b[37mtest\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
},
{
Case: "Foreground for background vice versa override",
Input: "<background,foreground>test</>",
Expected: "\x1b[40m\x1b[37mtest\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{Foreground: "black", Background: "white"},
},
{
Case: "Background for foreground override",
Input: "<,foreground>test</>",
Expected: "\x1b[40m\x1b[30mtest\x1b[0m",
2023-01-04 11:44:29 -08:00
Colors: &cachedColor{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: []*cachedColor{tc.Parent},
Colors: tc.Colors,
2022-01-26 04:09:21 -08:00
TerminalBackground: tc.TerminalBackground,
AnsiColors: &DefaultColors{},
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 *cachedColor
}{
{
Case: "Bold",
Input: "<b>test</b>",
Expected: 4,
Colors: &cachedColor{Foreground: "black", Background: ParentBackground},
},
{
Case: "Bold with color override",
Input: "<b><#ffffff>test</></b>",
Expected: 4,
Colors: &cachedColor{Foreground: "black", Background: ParentBackground},
},
{
Case: "Bold with color override and link",
Input: "<b><#ffffff>test</></b> [url](https://example.com)",
Expected: 8,
Colors: &cachedColor{Foreground: "black", Background: ParentBackground},
},
{
Case: "Bold with color override and link and leading/trailing spaces",
Input: " <b><#ffffff>test</></b> [url](https://example.com) ",
Expected: 10,
Colors: &cachedColor{Foreground: "black", Background: ParentBackground},
},
}
for _, tc := range cases {
renderer := &Writer{
ParentColors: []*cachedColor{},
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)
}
}