-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
multi_pointms_test.go
62 lines (57 loc) · 1.52 KB
/
multi_pointms_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 geom_test
import (
"reflect"
"strconv"
"testing"
"github.com/go-spatial/geom"
)
func TestMultiPointMSSetter(t *testing.T) {
type tcase struct {
srid uint32
multipointm geom.MultiPointM
setter geom.MultiPointMSSetter
expected geom.MultiPointMSSetter
err error
}
fn := func(t *testing.T, tc tcase) {
err := tc.setter.SetSRID(tc.srid, tc.multipointm)
if tc.err == nil && err != nil {
t.Errorf("error, expected nil got %v", err)
return
}
if tc.err != nil {
if tc.err.Error() != err.Error() {
t.Errorf("error, expected %v got %v", tc.err, err)
}
return
}
// compare the results
if !reflect.DeepEqual(tc.expected, tc.setter) {
t.Errorf("setter, expected %v got %v", tc.expected, tc.setter)
}
ptms := tc.setter.Points()
tc_ptms := struct {
Srid uint32
Mpm geom.MultiPointM
}{tc.srid, tc.multipointm}
if !reflect.DeepEqual(tc_ptms, ptms) {
t.Errorf("PointMSs, expected %v got %v", tc_ptms, ptms)
}
}
tests := []tcase{
{
srid: 4326,
multipointm: geom.MultiPointM{{10, 20, 30}, {30, 40, 50}, {-10, -5, 0}},
setter: &geom.MultiPointMS{Srid: 4326, Mpm: geom.MultiPointM{{15, 20, 30}, {35, 40, 50}, {-15, -5, 0}}},
expected: &geom.MultiPointMS{Srid: 4326, Mpm: geom.MultiPointM{{10, 20, 30}, {30, 40, 50}, {-10, -5, 0}}},
},
{
setter: (*geom.MultiPointMS)(nil),
err: geom.ErrNilMultiPointMS,
},
}
for i, tc := range tests {
tc := tc
t.Run(strconv.FormatInt(int64(i), 10), func(t *testing.T) { fn(t, tc) })
}
}