summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2018-07-23 16:08:44 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2018-07-24 11:08:40 -0700
commit2bbc79206073d260863c887a95ee4ba25bc45910 (patch)
tree4478ba0db1d873ed35e80b7e342100d85728ed18 /test
parentcb714d57c5c5ad181aaf5e1690221da8d965682b (diff)
downloadqtlocation-mapboxgl-2bbc79206073d260863c887a95ee4ba25bc45910.tar.gz
[core] Check all bucket dynamic_casts
A mismatch can occur when a layer changes from one type to another.
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/map/issue12432/0-0-0.mvtbin0 -> 482553 bytes
-rw-r--r--test/map/map.test.cpp49
2 files changed, 49 insertions, 0 deletions
diff --git a/test/fixtures/map/issue12432/0-0-0.mvt b/test/fixtures/map/issue12432/0-0-0.mvt
new file mode 100644
index 0000000000..a0f049ad43
--- /dev/null
+++ b/test/fixtures/map/issue12432/0-0-0.mvt
Binary files differ
diff --git a/test/map/map.test.cpp b/test/map/map.test.cpp
index 4f7bd2df7b..8e2d9cb9cd 100644
--- a/test/map/map.test.cpp
+++ b/test/map/map.test.cpp
@@ -653,3 +653,52 @@ TEST(Map, NoContentTiles) {
0.0015,
0.1);
}
+
+// https://github.com/mapbox/mapbox-gl-native/issues/12432
+TEST(Map, Issue12432) {
+ MapTest<> test { 1, MapMode::Continuous };
+
+ test.fileSource.tileResponse = [&](const Resource&) {
+ Response result;
+ result.data = std::make_shared<std::string>(util::read_file("test/fixtures/map/issue12432/0-0-0.mvt"));
+ return result;
+ };
+
+ test.map.getStyle().loadJSON(R"STYLE({
+ "version": 8,
+ "sources": {
+ "mapbox": {
+ "type": "vector",
+ "tiles": ["http://example.com/{z}-{x}-{y}.vector.pbf"]
+ }
+ },
+ "layers": [{
+ "id": "water",
+ "type": "fill",
+ "source": "mapbox",
+ "source-layer": "water"
+ }]
+ })STYLE");
+
+ test.observer.didFinishLoadingMapCallback = [&]() {
+ test.map.getStyle().loadJSON(R"STYLE({
+ "version": 8,
+ "sources": {
+ "mapbox": {
+ "type": "vector",
+ "tiles": ["http://example.com/{z}-{x}-{y}.vector.pbf"]
+ }
+ },
+ "layers": [{
+ "id": "water",
+ "type": "line",
+ "source": "mapbox",
+ "source-layer": "water"
+ }]
+ })STYLE");
+
+ test.runLoop.stop();
+ };
+
+ test.runLoop.run();
+}