-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
line_strings_test.go
61 lines (57 loc) · 1.44 KB
/
line_strings_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
package geom_test
import (
"reflect"
"strconv"
"testing"
"github.com/go-spatial/geom"
)
func TestLineStringSSetter(t *testing.T) {
type tcase struct {
srid uint32
linestring geom.LineString
setter geom.LineStringSSetter
expected geom.LineStringSSetter
err error
}
fn := func(t *testing.T, tc tcase) {
err := tc.setter.SetSRID(tc.srid, tc.linestring)
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)
}
lss := tc.setter.Vertices()
tc_lss := struct {
Srid uint32
Ls geom.LineString
}{tc.srid, tc.linestring}
if !reflect.DeepEqual(tc_lss, lss) {
t.Errorf("Referenced LineString, expected %v got %v", tc_lss, lss)
}
}
tests := []tcase{
{
srid: 4326,
linestring: geom.LineString{{10, 20}, {30, 40}},
setter: &geom.LineStringS{Srid: 4326, Ls: geom.LineString{{15, 20}, {35, 40}}},
expected: &geom.LineStringS{Srid: 4326, Ls: geom.LineString{{10, 20}, {30, 40}}},
},
{
setter: (*geom.LineStringS)(nil),
err: geom.ErrNilLineStringS,
},
}
for i, tc := range tests {
tc := tc
t.Run(strconv.FormatInt(int64(i), 10), func(t *testing.T) { fn(t, tc) })
}
}