2020-03-06 01:38:02 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2020-05-04 19:39:25 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-03-06 01:38:02 +00:00
|
|
|
)
|
|
|
|
|
2021-11-11 09:13:32 +00:00
|
|
|
func TestShouldNotGenerateSameRandomString(t *testing.T) {
|
|
|
|
randomStringOne := RandomString(10, AlphaNumericCharacters, false)
|
|
|
|
randomStringTwo := RandomString(10, AlphaNumericCharacters, false)
|
|
|
|
|
|
|
|
randomCryptoStringOne := RandomString(10, AlphaNumericCharacters, true)
|
|
|
|
randomCryptoStringTwo := RandomString(10, AlphaNumericCharacters, true)
|
|
|
|
|
|
|
|
assert.NotEqual(t, randomStringOne, randomStringTwo)
|
|
|
|
assert.NotEqual(t, randomCryptoStringOne, randomCryptoStringTwo)
|
|
|
|
}
|
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
func TestShouldDetectAlphaNumericString(t *testing.T) {
|
|
|
|
assert.True(t, IsStringAlphaNumeric("abc"))
|
|
|
|
assert.True(t, IsStringAlphaNumeric("abc123"))
|
|
|
|
assert.False(t, IsStringAlphaNumeric("abc123@"))
|
|
|
|
}
|
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
func TestShouldSplitIntoEvenStringsOfFour(t *testing.T) {
|
2020-05-02 16:20:40 +00:00
|
|
|
input := testStringInput
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
arrayOfStrings := SliceString(input, 4)
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
assert.Equal(t, len(arrayOfStrings), 3)
|
|
|
|
assert.Equal(t, "abcd", arrayOfStrings[0])
|
|
|
|
assert.Equal(t, "efgh", arrayOfStrings[1])
|
|
|
|
assert.Equal(t, "ijkl", arrayOfStrings[2])
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldSplitIntoEvenStringsOfOne(t *testing.T) {
|
2020-05-02 16:20:40 +00:00
|
|
|
input := testStringInput
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
arrayOfStrings := SliceString(input, 1)
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
assert.Equal(t, 12, len(arrayOfStrings))
|
|
|
|
assert.Equal(t, "a", arrayOfStrings[0])
|
|
|
|
assert.Equal(t, "b", arrayOfStrings[1])
|
|
|
|
assert.Equal(t, "c", arrayOfStrings[2])
|
|
|
|
assert.Equal(t, "d", arrayOfStrings[3])
|
|
|
|
assert.Equal(t, "l", arrayOfStrings[11])
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldSplitIntoUnevenStringsOfFour(t *testing.T) {
|
2020-05-02 16:20:40 +00:00
|
|
|
input := testStringInput + "m"
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
arrayOfStrings := SliceString(input, 4)
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
assert.Equal(t, len(arrayOfStrings), 4)
|
|
|
|
assert.Equal(t, "abcd", arrayOfStrings[0])
|
|
|
|
assert.Equal(t, "efgh", arrayOfStrings[1])
|
|
|
|
assert.Equal(t, "ijkl", arrayOfStrings[2])
|
|
|
|
assert.Equal(t, "m", arrayOfStrings[3])
|
|
|
|
}
|
2020-05-04 19:39:25 +00:00
|
|
|
|
|
|
|
func TestShouldFindSliceDifferencesDelta(t *testing.T) {
|
|
|
|
before := []string{"abc", "onetwothree"}
|
|
|
|
after := []string{"abc", "xyz"}
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
added, removed := StringSlicesDelta(before, after)
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
require.Len(t, added, 1)
|
|
|
|
require.Len(t, removed, 1)
|
|
|
|
assert.Equal(t, "onetwothree", removed[0])
|
|
|
|
assert.Equal(t, "xyz", added[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldNotFindSliceDifferencesDelta(t *testing.T) {
|
|
|
|
before := []string{"abc", "onetwothree"}
|
|
|
|
after := []string{"abc", "onetwothree"}
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
added, removed := StringSlicesDelta(before, after)
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
require.Len(t, added, 0)
|
|
|
|
require.Len(t, removed, 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldFindSliceDifferences(t *testing.T) {
|
|
|
|
a := []string{"abc", "onetwothree"}
|
|
|
|
b := []string{"abc", "xyz"}
|
2021-03-05 04:18:31 +00:00
|
|
|
|
|
|
|
assert.True(t, IsStringSlicesDifferent(a, b))
|
2021-05-04 22:06:05 +00:00
|
|
|
assert.True(t, IsStringSlicesDifferentFold(a, b))
|
|
|
|
|
|
|
|
c := []string{"Abc", "xyz"}
|
|
|
|
|
|
|
|
assert.True(t, IsStringSlicesDifferent(b, c))
|
|
|
|
assert.False(t, IsStringSlicesDifferentFold(b, c))
|
2020-05-04 19:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldNotFindSliceDifferences(t *testing.T) {
|
|
|
|
a := []string{"abc", "onetwothree"}
|
|
|
|
b := []string{"abc", "onetwothree"}
|
2021-03-05 04:18:31 +00:00
|
|
|
|
|
|
|
assert.False(t, IsStringSlicesDifferent(a, b))
|
2021-05-04 22:06:05 +00:00
|
|
|
assert.False(t, IsStringSlicesDifferentFold(a, b))
|
2020-05-04 19:39:25 +00:00
|
|
|
}
|
2020-12-03 05:23:52 +00:00
|
|
|
|
2021-02-02 01:01:46 +00:00
|
|
|
func TestShouldFindSliceDifferenceWhenDifferentLength(t *testing.T) {
|
|
|
|
a := []string{"abc", "onetwothree"}
|
|
|
|
b := []string{"abc", "onetwothree", "more"}
|
2021-03-05 04:18:31 +00:00
|
|
|
|
|
|
|
assert.True(t, IsStringSlicesDifferent(a, b))
|
2021-05-04 22:06:05 +00:00
|
|
|
assert.True(t, IsStringSlicesDifferentFold(a, b))
|
2021-02-02 01:01:46 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 01:30:03 +00:00
|
|
|
func TestShouldFindStringInSliceContains(t *testing.T) {
|
|
|
|
a := "abc"
|
2021-03-05 04:18:31 +00:00
|
|
|
slice := []string{"abc", "onetwothree"}
|
|
|
|
|
|
|
|
assert.True(t, IsStringInSliceContains(a, slice))
|
2020-12-16 01:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldNotFindStringInSliceContains(t *testing.T) {
|
|
|
|
a := "xyz"
|
2021-03-05 04:18:31 +00:00
|
|
|
slice := []string{"abc", "onetwothree"}
|
|
|
|
|
|
|
|
assert.False(t, IsStringInSliceContains(a, slice))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldFindStringInSliceFold(t *testing.T) {
|
|
|
|
a := "xYz"
|
|
|
|
b := "AbC"
|
|
|
|
slice := []string{"XYz", "abc"}
|
|
|
|
|
|
|
|
assert.True(t, IsStringInSliceFold(a, slice))
|
|
|
|
assert.True(t, IsStringInSliceFold(b, slice))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldNotFindStringInSliceFold(t *testing.T) {
|
|
|
|
a := "xyZ"
|
|
|
|
b := "ABc"
|
|
|
|
slice := []string{"cba", "zyx"}
|
|
|
|
|
|
|
|
assert.False(t, IsStringInSliceFold(a, slice))
|
|
|
|
assert.False(t, IsStringInSliceFold(b, slice))
|
2020-12-16 01:30:03 +00:00
|
|
|
}
|
2021-08-03 09:55:21 +00:00
|
|
|
|
|
|
|
func TestIsStringInSliceSuffix(t *testing.T) {
|
|
|
|
suffixes := []string{"apple", "banana"}
|
|
|
|
|
|
|
|
assert.True(t, IsStringInSliceSuffix("apple.banana", suffixes))
|
|
|
|
assert.True(t, IsStringInSliceSuffix("a.banana", suffixes))
|
|
|
|
assert.True(t, IsStringInSliceSuffix("a_banana", suffixes))
|
|
|
|
assert.True(t, IsStringInSliceSuffix("an.apple", suffixes))
|
|
|
|
assert.False(t, IsStringInSliceSuffix("an.orange", suffixes))
|
|
|
|
assert.False(t, IsStringInSliceSuffix("an.apple.orange", suffixes))
|
|
|
|
}
|
2021-12-01 03:32:58 +00:00
|
|
|
|
|
|
|
func TestIsStringSliceContainsAll(t *testing.T) {
|
|
|
|
needles := []string{"abc", "123", "xyz"}
|
|
|
|
haystackOne := []string{"abc", "tvu", "123", "456", "xyz"}
|
|
|
|
haystackTwo := []string{"tvu", "123", "456", "xyz"}
|
|
|
|
|
|
|
|
assert.True(t, IsStringSliceContainsAll(needles, haystackOne))
|
|
|
|
assert.False(t, IsStringSliceContainsAll(needles, haystackTwo))
|
|
|
|
}
|