@@ -5,16 +5,13 @@ import (
5
5
"fmt"
6
6
"io/ioutil"
7
7
"os"
8
+ "testing"
8
9
9
10
osm "github.com/omniscale/go-osm"
10
11
"github.com/omniscale/imposm3/cache"
11
-
12
12
"github.com/omniscale/imposm3/geom"
13
- "github.com/omniscale/imposm3/proj"
14
-
15
- "testing"
16
-
17
13
"github.com/omniscale/imposm3/geom/geos"
14
+ "github.com/omniscale/imposm3/proj"
18
15
)
19
16
20
17
func TestComplete (t * testing.T ) {
@@ -171,6 +168,13 @@ func TestComplete(t *testing.T) {
171
168
})
172
169
})
173
170
171
+ t .Run ("WayWithInvalidLayer" , func (t * testing.T ) {
172
+ // Layer value is not a valid int32.
173
+ ts .assertRecords (t , []checkElem {
174
+ {"osm_roads" , 17003 , "residential" , map [string ]string {"z_order" : "NULL" }},
175
+ })
176
+ })
177
+
174
178
t .Run ("NodeWayInsertedTwice" , func (t * testing.T ) {
175
179
// Way with multiple mappings is inserted twice in same table
176
180
rows := ts .queryRows (t , "osm_roads" , 18001 )
@@ -591,6 +595,13 @@ func TestComplete(t *testing.T) {
591
595
ts .assertGeomArea (t , checkElem {"osm_landusages" , - 16001 , "park" , nil }, 12779350582 )
592
596
})
593
597
598
+ t .Run ("WayWithInvalidLayerUpdate" , func (t * testing.T ) {
599
+ // Layer value is now a valid int32.
600
+ ts .assertRecords (t , []checkElem {
601
+ {"osm_roads" , 17003 , "residential" , map [string ]string {"z_order" : "23" }},
602
+ })
603
+ })
604
+
594
605
t .Run ("NodeWayRefAfterDelete2" , func (t * testing.T ) {
595
606
// Node does not referece deleted way
596
607
0 commit comments