-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathfind-index_test.go
63 lines (56 loc) · 1.21 KB
/
find-index_test.go
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
package underscore
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Benchmark_FindIndex(b *testing.B) {
for n := 0; n < b.N; n++ {
Range(1, benchmarkSize, 1).FindIndex(func(r, _ int) bool {
return r == 200
})
}
}
func Test_FindIndex(t *testing.T) {
src := []testModel{
{ID: 1, Name: "one"},
{ID: 2, Name: "two"},
{ID: 3, Name: "three"},
}
res := Chain(src).FindIndex(func(r testModel, _ int) bool {
return r.Name == src[1].Name
})
assert.Equal(t, res, 1)
}
func Test_FindIndex_NotExists(t *testing.T) {
src := []testModel{
{ID: 1, Name: "one"},
{ID: 2, Name: "two"},
{ID: 3, Name: "three"},
}
res := Chain(src).FindIndex(func(r testModel, _ int) bool {
return r.Name == ""
})
assert.Equal(t, res, -1)
}
func Test_FindIndexBy(t *testing.T) {
src := []testModel{
{ID: 1, Name: "one"},
{ID: 2, Name: "two"},
{ID: 3, Name: "three"},
}
res := Chain(src).FindIndexBy(map[string]interface{}{
"id": 1,
})
assert.Equal(t, res, 0)
}
func Test_FindIndexBy_NotExists(t *testing.T) {
src := []testModel{
{ID: 1, Name: "one"},
{ID: 2, Name: "two"},
{ID: 3, Name: "three"},
}
res := Chain(src).FindIndexBy(map[string]interface{}{
"id": 0,
})
assert.Equal(t, res, -1)
}