-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
pointzms_test.go
101 lines (94 loc) · 2.37 KB
/
pointzms_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
package geom_test
import (
"fmt"
"reflect"
"strconv"
"testing"
"github.com/go-spatial/geom"
)
func TestPointZMSSetter(t *testing.T) {
type tcase struct {
point_srid uint32
point_xyzm geom.PointZM
setter geom.PointZMSSetter
expected geom.PointZMSSetter
err error
}
fn := func(tc tcase) func(*testing.T) {
return func(t *testing.T) {
err := tc.setter.SetXYZMS(tc.point_srid, tc.point_xyzm)
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)
return
}
xyzms := tc.setter.XYZMS()
tc_xyzms := struct {
Srid uint32
Xyzm geom.PointZM
}{tc.point_srid, geom.PointZM{tc.point_xyzm[0], tc.point_xyzm[1], tc.point_xyzm[2], tc.point_xyzm[3]}}
if !reflect.DeepEqual(tc_xyzms, xyzms) {
t.Errorf("XYZS, expected %v, got %v", tc_xyzms, xyzms)
}
}
}
tests := []tcase{
{
point_srid: 4326,
point_xyzm: geom.PointZM{10, 20, 30, 1000},
setter: &geom.PointZMS{4326, geom.PointZM{15, 20, 30, 1000}},
expected: &geom.PointZMS{4326, geom.PointZM{10, 20, 30, 1000}},
},
{
setter: (*geom.PointZMS)(nil),
err: geom.ErrNilPointZMS,
},
}
for i, tc := range tests {
t.Run(strconv.FormatInt(int64(i), 10), fn(tc))
}
}
func TestPointZMS(t *testing.T) {
fn := func(pt geom.PointZMS) (string, func(*testing.T)) {
return fmt.Sprintf("%v", pt),
func(t *testing.T) {
t.Run("xyzm", func(t *testing.T) {
xyzm := pt.XYZM()
exp_xyzm := pt.Xyzm
if xyzm != exp_xyzm {
t.Errorf("xyzm, expected %v got %v", exp_xyzm, xyzm)
}
})
t.Run("s", func(t *testing.T) {
s := pt.S()
exp_s := pt.Srid
if s != exp_s {
t.Errorf("srid, expected %v got %v", exp_s, s)
}
})
t.Run("xyzms", func(t *testing.T) {
xyzms := pt.XYZMS()
exp_xyzms := pt
if xyzms != exp_xyzms {
t.Errorf("xyzms, expected %v got %v", exp_xyzms, xyzms)
}
})
}
}
tests := []geom.PointZMS{
{4326, geom.PointZM{0, 1, 2, 1000}}, {4326, geom.PointZM{2, 2, 3, 1000}}, {4326, geom.PointZM{1, 2, 3, 1000}},
}
for _, pt := range tests {
t.Run(fn(pt))
}
}