-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
pointzm_test.go
95 lines (88 loc) · 2.02 KB
/
pointzm_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
package geom_test
import (
"fmt"
"reflect"
"strconv"
"testing"
"github.com/go-spatial/geom"
)
func TestPointZMSetter(t *testing.T) {
type tcase struct {
point [4]float64
setter geom.PointZMSetter
expected geom.PointZMSetter
err error
}
fn := func(tc tcase) func(*testing.T) {
return func(t *testing.T) {
err := tc.setter.SetXYZM(tc.point)
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
}
xyzm := tc.setter.XYZM()
if !reflect.DeepEqual(tc.point, xyzm) {
t.Errorf("XYZM, expected %v, got %v", tc.point, xyzm)
}
}
}
tests := []tcase{
{
point: [4]float64{10, 20, 30, 1000.},
setter: &geom.PointZM{15, 20, 30, 1000.},
expected: &geom.PointZM{10, 20, 30, 1000.},
},
{
setter: (*geom.PointZM)(nil),
err: geom.ErrNilPointZM,
},
}
for i, tc := range tests {
t.Run(strconv.FormatInt(int64(i), 10), fn(tc))
}
}
func TestPointZM(t *testing.T) {
fn := func(pt geom.PointZM) (string, func(*testing.T)) {
return fmt.Sprintf("%v", pt),
func(t *testing.T) {
t.Run("xyz", func(t *testing.T) {
xyz := pt.XYZ()
exp_xyz := geom.PointZ{pt[0], pt[1], pt[2]}
if xyz != exp_xyz {
t.Errorf("xyz, expected %v got %v", exp_xyz, xyz)
}
})
t.Run("xyzm", func(t *testing.T) {
xyzm := pt.XYZM()
exp_xyzm := pt
if xyzm != exp_xyzm {
t.Errorf("xyzm, expected %v got %v", exp_xyzm, xyzm)
}
})
t.Run("m", func(t *testing.T) {
m := pt.M()
exp_m := pt[3]
if m != exp_m {
t.Errorf("m, expected %v got %v", exp_m, m)
}
})
}
}
tests := []geom.PointZM{
{0, 1, 2, 1000.}, {2, 2, 3, 1000.}, {1, 2, 3, 1000.},
}
for _, pt := range tests {
t.Run(fn(pt))
}
}