2018-08-19 13:20:50 +02:00
|
|
|
package utils
|
|
|
|
|
2018-08-19 08:51:37 +02:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestSplitLines is a function.
|
2018-08-19 08:51:37 +02:00
|
|
|
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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestWithPadding is a function.
|
2018-08-19 08:51:37 +02:00
|
|
|
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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestTrimTrailingNewline is a function.
|
2018-08-19 08:51:37 +02:00
|
|
|
func TestTrimTrailingNewline(t *testing.T) {
|
|
|
|
type scenario struct {
|
|
|
|
str string
|
|
|
|
expected string
|
|
|
|
}
|
|
|
|
|
|
|
|
scenarios := []scenario{
|
|
|
|
{
|
|
|
|
"hello world !\n",
|
|
|
|
"hello world !",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"hello world !",
|
|
|
|
"hello world !",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range scenarios {
|
|
|
|
assert.EqualValues(t, s.expected, TrimTrailingNewline(s.str))
|
|
|
|
}
|
|
|
|
}
|
2018-08-19 13:20:50 +02:00
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestNormalizeLinefeeds is a function.
|
2018-08-19 13:20:50 +02:00
|
|
|
func TestNormalizeLinefeeds(t *testing.T) {
|
2018-08-20 05:39:57 +02:00
|
|
|
type scenario struct {
|
|
|
|
byteArray []byte
|
|
|
|
expected []byte
|
|
|
|
}
|
|
|
|
var scenarios = []scenario{
|
|
|
|
{
|
|
|
|
// \r\n
|
|
|
|
[]byte{97, 115, 100, 102, 13, 10},
|
2018-08-20 15:16:35 +02:00
|
|
|
[]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},
|
2018-08-20 05:39:57 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
// \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)))
|
2018-08-20 05:31:26 +02:00
|
|
|
}
|
2018-08-19 13:20:50 +02:00
|
|
|
}
|
2018-09-03 11:31:27 +02:00
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestResolvePlaceholderString is a function.
|
2018-09-03 11:31:27 +02:00
|
|
|
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 {
|
2019-07-19 04:01:10 +02:00
|
|
|
assert.EqualValues(t, s.expected, ResolvePlaceholderString(s.templateString, s.arguments))
|
2018-09-03 11:31:27 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-12 11:39:36 +02:00
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestDisplayArraysAligned is a function.
|
2018-09-19 10:03:44 +02:00
|
|
|
func TestDisplayArraysAligned(t *testing.T) {
|
2018-09-12 11:39:36 +02:00
|
|
|
type scenario struct {
|
2018-09-19 10:03:44 +02:00
|
|
|
input [][]string
|
|
|
|
expected bool
|
2018-09-12 11:39:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
scenarios := []scenario{
|
|
|
|
{
|
2018-09-19 10:03:44 +02:00
|
|
|
[][]string{{"", ""}, {"", ""}},
|
|
|
|
true,
|
2018-09-12 11:39:36 +02:00
|
|
|
},
|
|
|
|
{
|
2018-09-19 10:03:44 +02:00
|
|
|
[][]string{{""}, {"", ""}},
|
|
|
|
false,
|
2018-09-12 11:39:36 +02:00
|
|
|
},
|
2018-09-19 10:03:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range scenarios {
|
|
|
|
assert.EqualValues(t, s.expected, displayArraysAligned(s.input))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type myStruct struct{}
|
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestGetPaddedDisplayStrings is a function.
|
2018-09-19 10:03:44 +02:00
|
|
|
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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestGetPadWidths is a function.
|
2018-09-19 10:03:44 +02:00
|
|
|
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},
|
2018-09-12 11:39:36 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range scenarios {
|
2018-09-19 10:03:44 +02:00
|
|
|
assert.EqualValues(t, s.expected, getPadWidths(s.stringArrays))
|
2018-09-12 11:39:36 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-19 11:31:29 +02:00
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestMin is a function.
|
2018-09-19 11:31:29 +02:00
|
|
|
func TestMin(t *testing.T) {
|
|
|
|
type scenario struct {
|
|
|
|
a int
|
|
|
|
b int
|
|
|
|
expected int
|
|
|
|
}
|
|
|
|
|
|
|
|
scenarios := []scenario{
|
|
|
|
{
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
2,
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range scenarios {
|
|
|
|
assert.EqualValues(t, s.expected, Min(s.a, s.b))
|
|
|
|
}
|
|
|
|
}
|
2018-09-19 12:36:40 +02:00
|
|
|
|
2018-11-30 02:47:14 +02:00
|
|
|
// TestIncludesString is a function.
|
2018-09-19 12:36:40 +02:00
|
|
|
func TestIncludesString(t *testing.T) {
|
|
|
|
type scenario struct {
|
|
|
|
list []string
|
|
|
|
element string
|
|
|
|
expected bool
|
|
|
|
}
|
|
|
|
|
|
|
|
scenarios := []scenario{
|
|
|
|
{
|
|
|
|
[]string{"a", "b"},
|
|
|
|
"a",
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"a", "b"},
|
|
|
|
"c",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"a", "b"},
|
|
|
|
"",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{""},
|
|
|
|
"",
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range scenarios {
|
|
|
|
assert.EqualValues(t, s.expected, IncludesString(s.list, s.element))
|
|
|
|
}
|
|
|
|
}
|
2018-12-05 10:33:46 +02:00
|
|
|
|
|
|
|
func TestNextIndex(t *testing.T) {
|
|
|
|
type scenario struct {
|
|
|
|
testName string
|
|
|
|
list []int
|
|
|
|
element int
|
|
|
|
expected int
|
|
|
|
}
|
|
|
|
|
|
|
|
scenarios := []scenario{
|
|
|
|
{
|
|
|
|
// I'm not really fussed about how it behaves here
|
|
|
|
"no elements",
|
|
|
|
[]int{},
|
|
|
|
1,
|
2019-10-30 11:23:25 +02:00
|
|
|
-1,
|
2018-12-05 10:33:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"one element",
|
|
|
|
[]int{1},
|
|
|
|
1,
|
|
|
|
0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"two elements",
|
|
|
|
[]int{1, 2},
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"two elements, giving second one",
|
|
|
|
[]int{1, 2},
|
|
|
|
2,
|
2019-10-30 11:23:25 +02:00
|
|
|
1,
|
2018-12-05 10:33:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"three elements, giving second one",
|
|
|
|
[]int{1, 2, 3},
|
|
|
|
2,
|
|
|
|
2,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range scenarios {
|
|
|
|
t.Run(s.testName, func(t *testing.T) {
|
|
|
|
assert.EqualValues(t, s.expected, NextIndex(s.list, s.element))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrevIndex(t *testing.T) {
|
|
|
|
type scenario struct {
|
|
|
|
testName string
|
|
|
|
list []int
|
|
|
|
element int
|
|
|
|
expected int
|
|
|
|
}
|
|
|
|
|
|
|
|
scenarios := []scenario{
|
|
|
|
{
|
|
|
|
// I'm not really fussed about how it behaves here
|
|
|
|
"no elements",
|
|
|
|
[]int{},
|
|
|
|
1,
|
2019-10-30 11:23:25 +02:00
|
|
|
0,
|
2018-12-05 10:33:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"one element",
|
|
|
|
[]int{1},
|
|
|
|
1,
|
|
|
|
0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"two elements",
|
|
|
|
[]int{1, 2},
|
|
|
|
1,
|
2019-10-30 11:23:25 +02:00
|
|
|
0,
|
2018-12-05 10:33:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"three elements, giving second one",
|
|
|
|
[]int{1, 2, 3},
|
|
|
|
2,
|
|
|
|
0,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range scenarios {
|
|
|
|
t.Run(s.testName, func(t *testing.T) {
|
|
|
|
assert.EqualValues(t, s.expected, PrevIndex(s.list, s.element))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2018-12-07 09:52:31 +02:00
|
|
|
|
|
|
|
func TestAsJson(t *testing.T) {
|
|
|
|
type myStruct struct {
|
|
|
|
a string
|
|
|
|
}
|
|
|
|
|
|
|
|
output := AsJson(&myStruct{a: "foo"})
|
|
|
|
|
|
|
|
// no idea why this is returning empty hashes but it's works in the app ¯\_(ツ)_/¯
|
|
|
|
assert.EqualValues(t, "{}", output)
|
|
|
|
}
|