1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
package window
import (
"reflect"
"testing"
)
func TestRolling(t *testing.T) {
testCases := []struct {
elements []string
n int
expected [][]string
}{
{
elements: nil,
n: 0,
expected: nil,
},
{
elements: []string{},
n: 0,
expected: nil,
},
{
elements: []string{"bail", "early"},
n: -1,
expected: nil,
},
{
elements: []string{"foo", "bar", "baz"},
n: 0,
expected: nil,
},
{
elements: []string{"foo", "bar", "baz"},
n: 1,
expected: [][]string{
[]string{"foo"},
[]string{"bar"},
[]string{"baz"},
},
},
{
elements: []string{"foo", "bar", "baz"},
n: 1,
expected: [][]string{
[]string{"foo"},
[]string{"bar"},
[]string{"baz"},
},
},
{
elements: []string{"foo", "bar", "baz"},
n: 2,
expected: [][]string{
[]string{"foo", "bar"},
[]string{"bar", "baz"},
},
},
{
elements: []string{"foo", "bar", "baz"},
n: 3,
expected: [][]string{
[]string{"foo", "bar", "baz"},
},
},
{
elements: []string{"foo", "bar", "baz", "boo"},
n: 2,
expected: [][]string{
[]string{"foo", "bar"},
[]string{"bar", "baz"},
[]string{"baz", "boo"},
},
},
}
for i, testCase := range testCases {
actual := Rolling(testCase.elements, testCase.n)
if !reflect.DeepEqual(actual, testCase.expected) {
t.Errorf("[i=%v] Actual rolling window result did not match expected value\n\tExpected: %+v\n\t Actual: %+v", i, testCase.expected, actual)
}
}
}
|