summaryrefslogtreecommitdiff
path: root/platform/android/scripts/run-render-test.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/scripts/run-render-test.py')
-rw-r--r--platform/android/scripts/run-render-test.py33
1 files changed, 26 insertions, 7 deletions
diff --git a/platform/android/scripts/run-render-test.py b/platform/android/scripts/run-render-test.py
index 83376256a4..1a7289a116 100644
--- a/platform/android/scripts/run-render-test.py
+++ b/platform/android/scripts/run-render-test.py
@@ -1,9 +1,11 @@
#!/usr/bin/python
import os
-from shutil import copyfile
+import shutil
catPath = os.getcwd() + "/platform/android/build/render-test/render/"
+failCounter = 0
+testCounter = 0
for cat in os.listdir(catPath):
testPath = catPath + cat + "/"
for test in os.listdir(testPath):
@@ -14,11 +16,28 @@ for cat in os.listdir(catPath):
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"
+ shutil.copyfile(inputPath + "/expected.png", expected)
+ shutil.copyfile(inputPath + "/style.json", outputPath + "/style.json")
+ pixelmatchCommand = "node_modules/pixelmatch/bin/pixelmatch " + actual + " " + expected + " " + output + " 0.1"
- print
- print "Pixel match "+ cat + " " + test
- os.system(pixelmatch)
+ print "Pixel match " + cat + " " + test
+
+ with os.popen(pixelmatchCommand) as f:
+ for line_terminated in f:
+ line = line_terminated.rstrip('\n')
+ pair = line.split(": ")
+ if pair[0] == "error":
+ testCounter += 1
+ currentError = pair[1]
+ if currentError != "0%":
+ failCounter += 1
+ # below deletes successful results
+ # print cat + " " + test + " " + currentError
+ # else:
+ # try:
+ # if os.path.isdir(outputPath):
+ # shutil.rmtree(outputPath)
+ # except OSError, e:
+ # print ("Error: %s - %s." % (e.filename, e.strerror))
print
+print str(failCounter) + "/" + str(testCounter)