-
Notifications
You must be signed in to change notification settings - Fork 3
/
distinct_test.go
130 lines (113 loc) · 3.21 KB
/
distinct_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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package gollection_test
import (
"testing"
"github.com/azihsoyn/gollection"
"github.com/stretchr/testify/assert"
)
func TestDistinct(t *testing.T) {
assert := assert.New(t)
arr := []int{1, 2, 3, 1, 2, 3}
expect := []int{1, 2, 3}
res, err := gollection.New(arr).Distinct().Result()
assert.NoError(err)
assert.Equal(expect, res)
}
func TestDistinct_NotSlice(t *testing.T) {
assert := assert.New(t)
_, err := gollection.New("not slice value").Distinct().Result()
assert.Error(err)
}
func TestDistinct_HavingError(t *testing.T) {
assert := assert.New(t)
_, err := gollection.New("not slice value").Distinct().Distinct().Result()
assert.Error(err)
res := []int{}
err = gollection.New("not slice value").Distinct().Distinct().ResultAs(&res)
assert.Error(err)
}
func TestDistinctBy(t *testing.T) {
assert := assert.New(t)
arr := []string{"aaa", "bb", "c", "ddd", "ee", "f"}
expect := []string{"aaa", "bb", "c"}
res, err := gollection.New(arr).DistinctBy(func(v string) int {
return len(v)
}).Result()
assert.NoError(err)
assert.Equal(expect, res)
}
func TestDistinctBy_NotSlice(t *testing.T) {
assert := assert.New(t)
_, err := gollection.New("not slice value").DistinctBy(func(v interface{}) interface{} {
return v
}).Result()
assert.Error(err)
}
func TestDistinctBy_NotFunc(t *testing.T) {
assert := assert.New(t)
_, err := gollection.New([]int{}).DistinctBy(0).Result()
assert.Error(err)
}
func TestDistinctBy_HavingError(t *testing.T) {
assert := assert.New(t)
_, err := gollection.New("not slice value").
DistinctBy(func(v interface{}) interface{} {
return v
}).
DistinctBy(func(v interface{}) interface{} {
return v
}).
Result()
assert.Error(err)
}
func TestDistinct_Stream(t *testing.T) {
assert := assert.New(t)
arr := []int{1, 2, 3, 1, 2, 3}
expect := []int{1, 2, 3}
res, err := gollection.NewStream(arr).Distinct().Result()
assert.NoError(err)
assert.Equal(expect, res)
}
func TestDistinct_Stream_NotSlice(t *testing.T) {
assert := assert.New(t)
_, err := gollection.NewStream("not slice value").Distinct().Result()
assert.Error(err)
}
func TestDistinct_Stream_HavingError(t *testing.T) {
assert := assert.New(t)
_, err := gollection.NewStream("not slice value").Distinct().Distinct().Result()
assert.Error(err)
}
func TestDistinctBy_Stream(t *testing.T) {
assert := assert.New(t)
arr := []string{"aaa", "bb", "c", "ddd", "ee", "f"}
expect := []string{"aaa", "bb", "c"}
res, err := gollection.NewStream(arr).DistinctBy(func(v string) int {
return len(v)
}).Result()
assert.NoError(err)
assert.Equal(expect, res)
}
func TestDistinctBy_Stream_NotSlice(t *testing.T) {
assert := assert.New(t)
_, err := gollection.NewStream("not slice value").DistinctBy(func(v interface{}) interface{} {
return v
}).Result()
assert.Error(err)
}
func TestDistinctBy_Stream_NotFunc(t *testing.T) {
assert := assert.New(t)
_, err := gollection.NewStream([]int{}).DistinctBy(0).Result()
assert.Error(err)
}
func TestDistinctBy_Stream_HavingError(t *testing.T) {
assert := assert.New(t)
_, err := gollection.NewStream("not slice value").
DistinctBy(func(v interface{}) interface{} {
return v
}).
DistinctBy(func(v interface{}) interface{} {
return v
}).
Result()
assert.Error(err)
}