2012-06-04 23:19:00 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import mapnik
|
2015-02-02 19:31:16 +01:00
|
|
|
from nose.tools import assert_raises
|
2013-06-03 04:28:24 +02:00
|
|
|
from utilities import execution_path, run_all
|
2012-06-04 23:19:00 +02:00
|
|
|
|
|
|
|
datadir = '../data/pngsuite'
|
|
|
|
|
|
|
|
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('.'))
|
|
|
|
|
|
|
|
def assert_broken_file(fname):
|
|
|
|
assert_raises(RuntimeError, lambda: mapnik.Image.open(fname))
|
|
|
|
|
|
|
|
def assert_good_file(fname):
|
|
|
|
assert mapnik.Image.open(fname)
|
|
|
|
|
|
|
|
def get_pngs(good):
|
|
|
|
files = [ x for x in os.listdir(datadir) if x.endswith('.png') ]
|
|
|
|
return [ os.path.join(datadir, x) for x in files if good != x.startswith('x') ]
|
|
|
|
|
|
|
|
def test_good_pngs():
|
|
|
|
for x in get_pngs(True):
|
|
|
|
yield assert_good_file, x
|
|
|
|
|
|
|
|
def test_broken_pngs():
|
|
|
|
for x in get_pngs(False):
|
|
|
|
yield assert_broken_file, x
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
setup()
|
2014-07-14 18:34:20 +02:00
|
|
|
exit(run_all(eval(x) for x in dir() if x.startswith("test_")))
|