summaryrefslogtreecommitdiff
path: root/platform/android/scripts/run-render-test.py
diff options
context:
space:
mode:
authorTobrun Van Nuland <tobrun.van.nuland@gmail.com>2017-09-21 07:26:24 +0200
committerTobrun <tobrun@mapbox.com>2018-06-01 20:05:56 +0200
commitbe66de6fcda643872311b21ba8fd5abc8302fc3e (patch)
tree4708e4aa4a57f6ba0bfb77fa9cd03832d7006d0e /platform/android/scripts/run-render-test.py
parenta721b74b87e51d17c5712fe947f56515c77defba (diff)
downloadqtlocation-mapboxgl-be66de6fcda643872311b21ba8fd5abc8302fc3e.tar.gz
[android] - Render tests with PixelMatch
Diffstat (limited to 'platform/android/scripts/run-render-test.py')
-rw-r--r--platform/android/scripts/run-render-test.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/platform/android/scripts/run-render-test.py b/platform/android/scripts/run-render-test.py
new file mode 100644
index 0000000000..83376256a4
--- /dev/null
+++ b/platform/android/scripts/run-render-test.py
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+
+import os
+from shutil import copyfile
+
+catPath = os.getcwd() + "/platform/android/build/render-test/render/"
+for cat in os.listdir(catPath):
+ testPath = catPath + cat + "/"
+ for test in os.listdir(testPath):
+ inputPath = os.getcwd() + "/mapbox-gl-js/test/integration/render-tests/" + cat + "/" + test
+ outputPath = testPath + test
+
+ expected = outputPath + "/expected.png"
+ actual = outputPath + "/actual.png"
+ output = outputPath + "/output.png"
+
+ copyfile(inputPath + "/expected.png", expected)
+ copyfile(inputPath + "/style.json", outputPath + "/style.json")
+ pixelmatch = "node_modules/pixelmatch/bin/pixelmatch " + actual + " " + expected + " " + output + " 0.1"
+
+ print
+ print "Pixel match "+ cat + " " + test
+ os.system(pixelmatch)
+print