forked from go-spatial/tegola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider_internal_test.go
62 lines (56 loc) · 1.22 KB
/
provider_internal_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
package provider
import "testing"
func TestProviderFilterInclude(t *testing.T) {
type tcase struct {
Expected providerFilter
Filters []providerType
IsMVT bool
IsSTD bool
}
fn := func(tc tcase) func(*testing.T) {
return func(t *testing.T) {
got := providerFilterInclude(tc.Filters...)
if got != tc.Expected {
t.Errorf("providerFilterInclude, expected %v got %v", tc.Expected, got)
return
}
is := got.Is(TypeStd)
if is != tc.IsSTD {
t.Errorf("IsStd, expected %v got %v", tc.IsSTD, is)
}
is = got.Is(TypeMvt)
if is != tc.IsMVT {
t.Errorf("IsMVT, expected %v got %v", tc.IsMVT, is)
}
}
}
tests := map[string]tcase{
"none": {},
"none2": {Filters: []providerType{}},
"std": {
Expected: 0b00000001,
Filters: []providerType{TypeStd},
IsSTD: true,
},
"mvt": {
Expected: 0b00000010,
Filters: []providerType{TypeMvt},
IsMVT: true,
},
"all": {
Expected: 0b00000011,
Filters: []providerType{TypeStd, TypeMvt},
IsSTD: true,
IsMVT: true,
},
"all2": {
Expected: 0b00000011,
Filters: []providerType{TypeMvt, TypeStd},
IsSTD: true,
IsMVT: true,
},
}
for name, tc := range tests {
t.Run(name, fn(tc))
}
}