mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-02-20 01:00:22 +08:00
383 lines
7.0 KiB
Go
383 lines
7.0 KiB
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// TestSplitLines is a function.
|
|
func TestSplitLines(t *testing.T) {
|
|
type scenario struct {
|
|
multilineString string
|
|
expected []string
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
"",
|
|
[]string{},
|
|
},
|
|
{
|
|
"\n",
|
|
[]string{},
|
|
},
|
|
{
|
|
"hello world !\nhello universe !\n",
|
|
[]string{
|
|
"hello world !",
|
|
"hello universe !",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, s.expected, SplitLines(s.multilineString))
|
|
}
|
|
}
|
|
|
|
// TestWithPadding is a function.
|
|
func TestWithPadding(t *testing.T) {
|
|
type scenario struct {
|
|
str string
|
|
padding int
|
|
expected string
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
"hello world !",
|
|
1,
|
|
"hello world !",
|
|
},
|
|
{
|
|
"hello world !",
|
|
14,
|
|
"hello world ! ",
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, s.expected, WithPadding(s.str, s.padding))
|
|
}
|
|
}
|
|
|
|
// TestNormalizeLinefeeds is a function.
|
|
func TestNormalizeLinefeeds(t *testing.T) {
|
|
type scenario struct {
|
|
byteArray []byte
|
|
expected []byte
|
|
}
|
|
var scenarios = []scenario{
|
|
{
|
|
// \r\n
|
|
[]byte{97, 115, 100, 102, 13, 10},
|
|
[]byte{97, 115, 100, 102, 10},
|
|
},
|
|
{
|
|
// bash\r\nblah
|
|
[]byte{97, 115, 100, 102, 13, 10, 97, 115, 100, 102},
|
|
[]byte{97, 115, 100, 102, 10, 97, 115, 100, 102},
|
|
},
|
|
{
|
|
// \r
|
|
[]byte{97, 115, 100, 102, 13},
|
|
[]byte{97, 115, 100, 102},
|
|
},
|
|
{
|
|
// \n
|
|
[]byte{97, 115, 100, 102, 10},
|
|
[]byte{97, 115, 100, 102, 10},
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, string(s.expected), NormalizeLinefeeds(string(s.byteArray)))
|
|
}
|
|
}
|
|
|
|
// TestResolvePlaceholderString is a function.
|
|
func TestResolvePlaceholderString(t *testing.T) {
|
|
type scenario struct {
|
|
templateString string
|
|
arguments map[string]string
|
|
expected string
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
"",
|
|
map[string]string{},
|
|
"",
|
|
},
|
|
{
|
|
"hello",
|
|
map[string]string{},
|
|
"hello",
|
|
},
|
|
{
|
|
"hello {{arg}}",
|
|
map[string]string{},
|
|
"hello {{arg}}",
|
|
},
|
|
{
|
|
"hello {{arg}}",
|
|
map[string]string{"arg": "there"},
|
|
"hello there",
|
|
},
|
|
{
|
|
"hello",
|
|
map[string]string{"arg": "there"},
|
|
"hello",
|
|
},
|
|
{
|
|
"{{nothing}}",
|
|
map[string]string{"nothing": ""},
|
|
"",
|
|
},
|
|
{
|
|
"{{}} {{ this }} { should not throw}} an {{{{}}}} error",
|
|
map[string]string{
|
|
"blah": "blah",
|
|
"this": "won't match",
|
|
},
|
|
"{{}} {{ this }} { should not throw}} an {{{{}}}} error",
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, s.expected, ResolvePlaceholderString(s.templateString, s.arguments))
|
|
}
|
|
}
|
|
|
|
// TestDisplayArraysAligned is a function.
|
|
func TestDisplayArraysAligned(t *testing.T) {
|
|
type scenario struct {
|
|
input [][]string
|
|
expected bool
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
[][]string{{"", ""}, {"", ""}},
|
|
true,
|
|
},
|
|
{
|
|
[][]string{{""}, {"", ""}},
|
|
false,
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, s.expected, displayArraysAligned(s.input))
|
|
}
|
|
}
|
|
|
|
type myDisplayable struct {
|
|
strings []string
|
|
}
|
|
|
|
type myStruct struct{}
|
|
|
|
// GetDisplayStrings is a function.
|
|
func (d *myDisplayable) GetDisplayStrings(isFocused bool) []string {
|
|
if isFocused {
|
|
return append(d.strings, "blah")
|
|
}
|
|
return d.strings
|
|
}
|
|
|
|
// TestGetDisplayStringArrays is a function.
|
|
func TestGetDisplayStringArrays(t *testing.T) {
|
|
type scenario struct {
|
|
input []Displayable
|
|
isFocused bool
|
|
expected [][]string
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
[]Displayable{
|
|
Displayable(&myDisplayable{[]string{"a", "b"}}),
|
|
Displayable(&myDisplayable{[]string{"c", "d"}}),
|
|
},
|
|
false,
|
|
[][]string{{"a", "b"}, {"c", "d"}},
|
|
},
|
|
{
|
|
[]Displayable{
|
|
Displayable(&myDisplayable{[]string{"a", "b"}}),
|
|
Displayable(&myDisplayable{[]string{"c", "d"}}),
|
|
},
|
|
true,
|
|
[][]string{{"a", "b", "blah"}, {"c", "d", "blah"}},
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, s.expected, getDisplayStringArrays(s.input, s.isFocused))
|
|
}
|
|
}
|
|
|
|
// TestRenderDisplayableList is a function.
|
|
func TestRenderDisplayableList(t *testing.T) {
|
|
type scenario struct {
|
|
input []Displayable
|
|
config RenderListConfig
|
|
expectedString string
|
|
expectedErrorMessage string
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
[]Displayable{
|
|
Displayable(&myDisplayable{[]string{}}),
|
|
Displayable(&myDisplayable{[]string{}}),
|
|
},
|
|
RenderListConfig{},
|
|
"\n",
|
|
"",
|
|
},
|
|
{
|
|
[]Displayable{
|
|
Displayable(&myDisplayable{[]string{"aa", "b"}}),
|
|
Displayable(&myDisplayable{[]string{"c", "d"}}),
|
|
},
|
|
RenderListConfig{},
|
|
"aa b\nc d",
|
|
"",
|
|
},
|
|
{
|
|
[]Displayable{
|
|
Displayable(&myDisplayable{[]string{"a"}}),
|
|
Displayable(&myDisplayable{[]string{"b", "c"}}),
|
|
},
|
|
RenderListConfig{},
|
|
"",
|
|
"Each item must return the same number of strings to display",
|
|
},
|
|
{
|
|
[]Displayable{
|
|
Displayable(&myDisplayable{[]string{"a"}}),
|
|
Displayable(&myDisplayable{[]string{"b"}}),
|
|
},
|
|
RenderListConfig{IsFocused: true},
|
|
"a blah\nb blah",
|
|
"",
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
str, err := renderDisplayableList(s.input, s.config)
|
|
assert.EqualValues(t, s.expectedString, str)
|
|
if s.expectedErrorMessage != "" {
|
|
assert.EqualError(t, err, s.expectedErrorMessage)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestRenderList is a function.
|
|
func TestRenderList(t *testing.T) {
|
|
type scenario struct {
|
|
input interface{}
|
|
options []func(*RenderListConfig)
|
|
expectedString string
|
|
expectedErrorMessage string
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
[]*myDisplayable{
|
|
{[]string{"aa", "b"}},
|
|
{[]string{"c", "d"}},
|
|
},
|
|
nil,
|
|
"aa b\nc d",
|
|
"",
|
|
},
|
|
{
|
|
[]*myStruct{
|
|
{},
|
|
{},
|
|
},
|
|
nil,
|
|
"",
|
|
"item does not implement the Displayable interface",
|
|
},
|
|
{
|
|
&myStruct{},
|
|
nil,
|
|
"",
|
|
"RenderList given a non-slice type",
|
|
},
|
|
{
|
|
[]*myDisplayable{
|
|
{[]string{"a"}},
|
|
},
|
|
[]func(*RenderListConfig){IsFocused(true)},
|
|
"a blah",
|
|
"",
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
str, err := RenderList(s.input, s.options...)
|
|
assert.EqualValues(t, s.expectedString, str)
|
|
if s.expectedErrorMessage != "" {
|
|
assert.EqualError(t, err, s.expectedErrorMessage)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestGetPaddedDisplayStrings is a function.
|
|
func TestGetPaddedDisplayStrings(t *testing.T) {
|
|
type scenario struct {
|
|
stringArrays [][]string
|
|
padWidths []int
|
|
expected []string
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
[][]string{{"a", "b"}, {"c", "d"}},
|
|
[]int{1},
|
|
[]string{"a b", "c d"},
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, s.expected, getPaddedDisplayStrings(s.stringArrays, s.padWidths))
|
|
}
|
|
}
|
|
|
|
// TestGetPadWidths is a function.
|
|
func TestGetPadWidths(t *testing.T) {
|
|
type scenario struct {
|
|
stringArrays [][]string
|
|
expected []int
|
|
}
|
|
|
|
scenarios := []scenario{
|
|
{
|
|
[][]string{{""}, {""}},
|
|
[]int{},
|
|
},
|
|
{
|
|
[][]string{{"a"}, {""}},
|
|
[]int{},
|
|
},
|
|
{
|
|
[][]string{{"aa", "b", "ccc"}, {"c", "d", "e"}},
|
|
[]int{2, 1},
|
|
},
|
|
}
|
|
|
|
for _, s := range scenarios {
|
|
assert.EqualValues(t, s.expected, getPadWidths(s.stringArrays))
|
|
}
|
|
}
|