-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapkeys_test.go
52 lines (47 loc) · 981 Bytes
/
mapkeys_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
package maps_test
import (
"testing"
"github.com/dosadczuk/go-maps"
"github.com/google/go-cmp/cmp"
)
func TestMapKeys(t *testing.T) {
tt := map[string]struct {
// input
values map[int]int
transform func(int, int) int
// assert
want map[int]int
}{
"empty map": {
values: nil, // zero value
transform: func(_, _ int) int { return 0 },
want: nil, // zero value
},
"map with key-value pair": {
values: map[int]int{1: 2},
transform: func(key, val int) int { return key + val },
want: map[int]int{3: 2},
},
"map with key-value pairs": {
values: map[int]int{
1: 2,
2: 4,
3: 6,
},
transform: func(key, val int) int { return key + val },
want: map[int]int{
3: 2,
6: 4,
9: 6,
},
},
}
for name, tc := range tt {
t.Run(name, func(t *testing.T) {
have := maps.MapKeys(tc.values, tc.transform)
if !cmp.Equal(tc.want, have) {
t.Error(cmp.Diff(tc.want, have))
}
})
}
}