2012-04-04 23:54:07 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2012-02-18 17:51:18 +01:00
|
|
|
import sys
|
2012-07-07 02:44:15 +02:00
|
|
|
import mapnik
|
2012-02-18 17:51:18 +01:00
|
|
|
|
2012-11-21 00:08:53 +01:00
|
|
|
try:
|
|
|
|
import json
|
|
|
|
except ImportError:
|
|
|
|
import simplejson as json
|
|
|
|
|
2012-02-18 17:51:18 +01:00
|
|
|
COMPUTE_THRESHOLD = 16
|
|
|
|
|
|
|
|
# returns true if pixels are not identical
|
2012-11-21 00:08:53 +01:00
|
|
|
def compare_pixels(pixel1, pixel2, alpha=True):
|
2012-07-07 02:44:15 +02:00
|
|
|
if pixel1 == pixel2:
|
|
|
|
return False
|
|
|
|
r_diff = abs((pixel1 & 0xff) - (pixel2 & 0xff))
|
|
|
|
g_diff = abs(((pixel1 >> 8) & 0xff) - ((pixel2 >> 8) & 0xff))
|
|
|
|
b_diff = abs(((pixel1 >> 16) & 0xff)- ((pixel2 >> 16) & 0xff))
|
2012-11-21 00:08:53 +01:00
|
|
|
if alpha:
|
|
|
|
a_diff = abs(((pixel1 >> 24) & 0xff) - ((pixel2 >> 24) & 0xff))
|
|
|
|
if(r_diff > COMPUTE_THRESHOLD or
|
|
|
|
g_diff > COMPUTE_THRESHOLD or
|
|
|
|
b_diff > COMPUTE_THRESHOLD or
|
|
|
|
a_diff > COMPUTE_THRESHOLD):
|
|
|
|
return True
|
2012-02-18 17:51:18 +01:00
|
|
|
else:
|
2012-11-21 00:08:53 +01:00
|
|
|
if(r_diff > COMPUTE_THRESHOLD or
|
|
|
|
g_diff > COMPUTE_THRESHOLD or
|
|
|
|
b_diff > COMPUTE_THRESHOLD):
|
|
|
|
return True
|
|
|
|
return False
|
2012-02-18 17:51:18 +01:00
|
|
|
|
2012-07-07 02:44:15 +02:00
|
|
|
# compare two images and return number of different pixels
|
2013-03-25 03:56:14 +01:00
|
|
|
def compare(actual, expected, alpha=True):
|
2012-07-07 02:44:15 +02:00
|
|
|
im1 = mapnik.Image.open(actual)
|
2012-02-20 17:42:12 +01:00
|
|
|
try:
|
2012-07-07 02:44:15 +02:00
|
|
|
im2 = mapnik.Image.open(expected)
|
2012-07-29 01:47:16 +02:00
|
|
|
except RuntimeError:
|
2013-03-25 03:56:14 +01:00
|
|
|
return 99999990
|
2012-02-18 17:51:18 +01:00
|
|
|
diff = 0
|
2012-07-07 02:44:15 +02:00
|
|
|
pixels = im1.width() * im1.height()
|
|
|
|
delta_pixels = (im2.width() * im2.height()) - pixels
|
2012-03-08 18:29:46 +01:00
|
|
|
if delta_pixels != 0:
|
2013-03-25 12:36:35 +01:00
|
|
|
return abs(delta_pixels)
|
2012-07-07 02:44:15 +02:00
|
|
|
for x in range(0,im1.width(),2):
|
|
|
|
for y in range(0,im1.height(),2):
|
2012-11-21 00:08:53 +01:00
|
|
|
if compare_pixels(im1.get_pixel(x,y),im2.get_pixel(x,y),alpha=alpha):
|
2012-07-07 02:44:15 +02:00
|
|
|
diff += 1
|
2012-02-18 17:51:18 +01:00
|
|
|
return diff
|
|
|
|
|
2012-11-21 00:08:53 +01:00
|
|
|
def compare_grids(actual, expected, threshold=0, alpha=True):
|
|
|
|
global errors
|
|
|
|
global passed
|
|
|
|
im1 = json.loads(open(actual).read())
|
|
|
|
try:
|
|
|
|
im2 = json.loads(open(expected).read())
|
|
|
|
except RuntimeError:
|
2013-03-25 03:56:14 +01:00
|
|
|
return 9999990
|
2012-11-21 00:08:53 +01:00
|
|
|
equal = (im1 == im2)
|
|
|
|
# TODO - real diffing
|
|
|
|
if not equal:
|
2013-03-25 03:56:14 +01:00
|
|
|
return 99999999
|
2013-03-09 05:28:32 +01:00
|
|
|
return 0
|