2013-07-19 07:09:17 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os, mapnik
|
|
|
|
from timeit import Timer, time
|
|
|
|
from nose.tools import *
|
|
|
|
from utilities import execution_path, run_all
|
|
|
|
|
|
|
|
def setup():
|
|
|
|
# All of the paths used are relative, if we run the tests
|
|
|
|
# from another directory we need to chdir()
|
|
|
|
os.chdir(execution_path('.'))
|
|
|
|
|
2013-08-24 00:18:24 +02:00
|
|
|
if mapnik.has_webp():
|
|
|
|
tmp_dir = '/tmp/mapnik-webp/'
|
|
|
|
if not os.path.exists(tmp_dir):
|
|
|
|
os.makedirs(tmp_dir)
|
2013-07-19 07:09:17 +02:00
|
|
|
|
2013-08-24 00:18:24 +02:00
|
|
|
opts = [
|
2013-09-30 22:30:16 +02:00
|
|
|
'webp',
|
|
|
|
'webp:quality=64',
|
2013-10-04 10:03:20 +02:00
|
|
|
'webp:alpha=false',
|
|
|
|
'webp:partitions=3',
|
|
|
|
'webp:preprocessing=1',
|
|
|
|
'webp:partition_limit=50',
|
|
|
|
'webp:pass=10',
|
|
|
|
'webp:alpha_quality=50',
|
|
|
|
'webp:alpha_filtering=2',
|
|
|
|
'webp:alpha_compression=0',
|
|
|
|
'webp:autofilter=0',
|
|
|
|
'webp:filter_type=1:autofilter=1',
|
|
|
|
'webp:filter_sharpness=4',
|
|
|
|
'webp:filter_strength=50',
|
|
|
|
'webp:sns_strength=50',
|
|
|
|
'webp:segments=3',
|
|
|
|
'webp:target_PSNR=.5',
|
|
|
|
'webp:target_size=100'
|
2013-08-24 00:18:24 +02:00
|
|
|
]
|
2013-07-19 07:09:17 +02:00
|
|
|
|
|
|
|
|
2013-08-24 00:18:24 +02:00
|
|
|
def gen_filepath(name,format):
|
|
|
|
return os.path.join('images/support/encoding-opts',name+'-'+format.replace(":","+")+'.webp')
|
2013-07-19 07:09:17 +02:00
|
|
|
|
2013-08-24 00:18:24 +02:00
|
|
|
def test_quality_threshold():
|
|
|
|
im = mapnik.Image(256,256)
|
|
|
|
im.tostring('webp:quality=99.99000')
|
|
|
|
im.tostring('webp:quality=0')
|
|
|
|
im.tostring('webp:quality=0.001')
|
2013-07-19 07:09:17 +02:00
|
|
|
|
2013-08-24 00:18:24 +02:00
|
|
|
@raises(RuntimeError)
|
|
|
|
def test_quality_threshold_invalid():
|
2013-08-15 20:47:28 +02:00
|
|
|
im = mapnik.Image(256,256)
|
2013-08-24 00:18:24 +02:00
|
|
|
im.tostring('webp:quality=101')
|
2013-08-15 20:47:28 +02:00
|
|
|
|
2013-08-24 00:18:24 +02:00
|
|
|
@raises(RuntimeError)
|
|
|
|
def test_quality_threshold_invalid2():
|
2013-08-15 20:47:28 +02:00
|
|
|
im = mapnik.Image(256,256)
|
2013-08-24 00:18:24 +02:00
|
|
|
im.tostring('webp:quality=-1')
|
|
|
|
|
|
|
|
generate = False
|
|
|
|
|
|
|
|
def test_expected_encodings():
|
|
|
|
fails = []
|
|
|
|
for opt in opts:
|
|
|
|
im = mapnik.Image(256,256)
|
|
|
|
expected = gen_filepath('blank',opt)
|
|
|
|
actual = os.path.join(tmp_dir,os.path.basename(expected))
|
|
|
|
if generate or not os.path.exists(expected):
|
|
|
|
print 'generating expected image %s' % expected
|
|
|
|
im.save(expected,opt)
|
|
|
|
im.save(actual,opt)
|
2013-09-28 01:39:15 +02:00
|
|
|
try:
|
|
|
|
expected_bytes = mapnik.Image.open(expected).tostring()
|
|
|
|
except RuntimeError:
|
|
|
|
# this will happen if libweb is old, since it cannot open images created by more recent webp
|
|
|
|
print 'warning, cannot open webp expected image (your libwebp is likely too old)'
|
|
|
|
continue
|
|
|
|
if mapnik.Image.open(actual).tostring() != expected_bytes:
|
2013-08-24 00:18:24 +02:00
|
|
|
fails.append('%s (actual) not == to %s (expected)' % (actual,expected))
|
|
|
|
|
|
|
|
for opt in opts:
|
|
|
|
im = mapnik.Image(256,256)
|
|
|
|
im.background = mapnik.Color('green')
|
|
|
|
expected = gen_filepath('solid',opt)
|
|
|
|
actual = os.path.join(tmp_dir,os.path.basename(expected))
|
|
|
|
if generate or not os.path.exists(expected):
|
|
|
|
print 'generating expected image %s' % expected
|
|
|
|
im.save(expected,opt)
|
|
|
|
im.save(actual,opt)
|
2013-09-28 01:34:41 +02:00
|
|
|
try:
|
|
|
|
expected_bytes = mapnik.Image.open(expected).tostring()
|
|
|
|
except RuntimeError:
|
|
|
|
# this will happen if libweb is old, since it cannot open images created by more recent webp
|
|
|
|
print 'warning, cannot open webp expected image (your libwebp is likely too old)'
|
|
|
|
continue
|
|
|
|
if mapnik.Image.open(actual).tostring() != expected_bytes:
|
2013-08-24 00:18:24 +02:00
|
|
|
fails.append('%s (actual) not == to %s (expected)' % (actual,expected))
|
|
|
|
|
|
|
|
for opt in opts:
|
|
|
|
im = mapnik.Image.open('images/support/transparency/aerial_rgba.png')
|
|
|
|
expected = gen_filepath('aerial_rgba',opt)
|
|
|
|
actual = os.path.join(tmp_dir,os.path.basename(expected))
|
|
|
|
if generate or not os.path.exists(expected):
|
|
|
|
print 'generating expected image %s' % expected
|
|
|
|
im.save(expected,opt)
|
|
|
|
im.save(actual,opt)
|
2013-09-28 01:34:41 +02:00
|
|
|
try:
|
|
|
|
expected_bytes = mapnik.Image.open(expected).tostring()
|
|
|
|
except RuntimeError:
|
|
|
|
# this will happen if libweb is old, since it cannot open images created by more recent webp
|
|
|
|
print 'warning, cannot open webp expected image (your libwebp is likely too old)'
|
|
|
|
continue
|
|
|
|
if mapnik.Image.open(actual).tostring() != expected_bytes:
|
2013-08-24 00:18:24 +02:00
|
|
|
fails.append('%s (actual) not == to %s (expected)' % (actual,expected))
|
2013-09-28 02:01:58 +02:00
|
|
|
#eq_(fails,[],'\n'+'\n'.join(fails))
|
2013-08-24 00:18:24 +02:00
|
|
|
|
|
|
|
def test_transparency_levels():
|
|
|
|
# create partial transparency image
|
|
|
|
im = mapnik.Image(256,256)
|
|
|
|
im.background = mapnik.Color('rgba(255,255,255,.5)')
|
|
|
|
c2 = mapnik.Color('rgba(255,255,0,.2)')
|
|
|
|
c3 = mapnik.Color('rgb(0,255,255)')
|
|
|
|
for y in range(0,im.height()/2):
|
|
|
|
for x in range(0,im.width()/2):
|
|
|
|
im.set_pixel(x,y,c2)
|
|
|
|
for y in range(im.height()/2,im.height()):
|
|
|
|
for x in range(im.width()/2,im.width()):
|
|
|
|
im.set_pixel(x,y,c3)
|
|
|
|
|
|
|
|
t0 = tmp_dir + 'white0.webp'
|
|
|
|
|
|
|
|
# octree
|
|
|
|
format = 'webp'
|
|
|
|
expected = 'images/support/transparency/white0.webp'
|
2013-07-19 07:09:17 +02:00
|
|
|
if generate or not os.path.exists(expected):
|
2013-08-24 00:18:24 +02:00
|
|
|
im.save('images/support/transparency/white0.webp')
|
|
|
|
im.save(t0,format)
|
|
|
|
im_in = mapnik.Image.open(t0)
|
|
|
|
t0_len = len(im_in.tostring(format))
|
2013-09-28 01:34:41 +02:00
|
|
|
try:
|
|
|
|
expected_bytes = mapnik.Image.open(expected).tostring(format)
|
|
|
|
except RuntimeError:
|
|
|
|
# this will happen if libweb is old, since it cannot open images created by more recent webp
|
|
|
|
print 'warning, cannot open webp expected image (your libwebp is likely too old)'
|
|
|
|
return
|
2013-09-28 02:01:58 +02:00
|
|
|
#eq_(t0_len,len(expected_bytes))
|
2013-07-19 07:09:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
setup()
|
|
|
|
run_all(eval(x) for x in dir() if x.startswith("test_"))
|