pomerium/pkg/slices/slices_test.go
Caleb Doxsey 10662d7034
databroker: fix fast forward (#4192)
* databroker: sort configs

* databroker: fix fast-forward

* newest not oldest
2023-05-23 15:30:27 -06:00

32 lines
591 B
Go

package slices
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestReverse(t *testing.T) {
t.Parallel()
for _, tc := range []struct {
in []int
expect []int
}{
{in: []int{1, 2, 3}, expect: []int{3, 2, 1}},
{in: []int{1, 2}, expect: []int{2, 1}},
{in: []int{1}, expect: []int{1}},
} {
s := make([]int, len(tc.in))
copy(s, tc.in)
Reverse(s)
assert.Equal(t, tc.expect, s)
}
}
func TestUniqueBy(t *testing.T) {
t.Parallel()
s := UniqueBy([]int{1, 2, 3, 4, 3, 1, 1, 4, 2}, func(i int) int { return i % 3 })
assert.Equal(t, []int{1, 2, 3}, s)
}