2018-03-02 15:24:09 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2019-11-24 14:55:50 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
2018-03-02 15:24:09 +00:00
|
|
|
)
|
|
|
|
|
2020-02-06 08:56:34 +00:00
|
|
|
var testCases = []struct {
|
|
|
|
arr []byte
|
|
|
|
rev []byte
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
arr: []byte{},
|
|
|
|
rev: []byte{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
arr: []byte{0x01},
|
|
|
|
rev: []byte{0x01},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
arr: []byte{0x01, 0x02, 0x03, 0x04},
|
|
|
|
rev: []byte{0x04, 0x03, 0x02, 0x01},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
arr: []byte{0x01, 0x02, 0x03, 0x04, 0x05},
|
|
|
|
rev: []byte{0x05, 0x04, 0x03, 0x02, 0x01},
|
|
|
|
},
|
2019-08-23 12:44:49 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 08:56:34 +00:00
|
|
|
func TestArrayReverse(t *testing.T) {
|
|
|
|
for _, tc := range testCases {
|
2020-02-06 08:59:46 +00:00
|
|
|
arg := make([]byte, len(tc.arr))
|
|
|
|
copy(arg, tc.arr)
|
|
|
|
|
|
|
|
have := ArrayReverse(arg)
|
2020-02-06 08:56:34 +00:00
|
|
|
require.Equal(t, tc.rev, have)
|
2020-02-06 08:59:46 +00:00
|
|
|
|
|
|
|
// test that argument was copied
|
|
|
|
for i := range have {
|
|
|
|
have[i] = ^have[i]
|
|
|
|
}
|
|
|
|
require.Equal(t, tc.arr, arg)
|
2020-02-06 08:56:34 +00:00
|
|
|
}
|
2018-03-02 15:24:09 +00:00
|
|
|
}
|