2009-04-16 01:06:18 +02:00
|
|
|
#!/usr/bin/env python
|
2007-09-25 23:06:52 +02:00
|
|
|
|
2009-04-13 00:38:46 +02:00
|
|
|
from nose.tools import *
|
2010-08-10 19:15:03 +02:00
|
|
|
from utilities import Todo
|
2009-04-13 00:38:46 +02:00
|
|
|
from utilities import execution_path
|
2010-06-18 23:03:47 +02:00
|
|
|
import tempfile
|
2007-09-25 23:06:52 +02:00
|
|
|
|
2010-03-11 19:12:22 +01:00
|
|
|
import os, sys, glob, mapnik2
|
2007-09-25 23:06:52 +02:00
|
|
|
|
2009-04-13 00:38:46 +02:00
|
|
|
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('.'))
|
2007-09-25 23:06:52 +02:00
|
|
|
|
2009-04-13 00:38:46 +02:00
|
|
|
def test():
|
|
|
|
# TODO: Write a better test
|
|
|
|
# 1. Construct map in memory
|
|
|
|
# 2. Save map as XML
|
|
|
|
# 3. Load map to a second object
|
|
|
|
# 4. Compare both map objects
|
2010-03-11 19:12:22 +01:00
|
|
|
map = mapnik2.Map(256, 256)
|
2007-09-25 23:06:52 +02:00
|
|
|
|
2010-10-07 03:00:58 +02:00
|
|
|
raise Todo("map comparison is currently broken due to lacking relative paths support (#324,#340")
|
2010-08-10 19:15:03 +02:00
|
|
|
|
2010-06-18 23:03:47 +02:00
|
|
|
def compare_map(in_map):
|
2010-08-10 19:15:03 +02:00
|
|
|
|
2010-06-18 23:03:47 +02:00
|
|
|
mapnik2.load_map(map, in_map)
|
|
|
|
|
|
|
|
(handle, test_map) = tempfile.mkstemp(suffix='.xml', prefix='mapnik-temp-map1-')
|
|
|
|
os.close(handle)
|
|
|
|
|
|
|
|
(handle, test_map2) = tempfile.mkstemp(suffix='.xml', prefix='mapnik-temp-map2-')
|
|
|
|
os.close(handle)
|
|
|
|
|
|
|
|
if os.path.exists(test_map):
|
|
|
|
os.remove(test_map)
|
|
|
|
|
|
|
|
mapnik2.save_map(map, test_map)
|
|
|
|
new_map = mapnik2.Map(256, 256)
|
|
|
|
|
|
|
|
mapnik2.load_map(new_map, test_map)
|
|
|
|
open(test_map2,'w').write(mapnik2.save_map_to_string(new_map))
|
|
|
|
|
|
|
|
diff = ' diff %s %s' % (os.path.abspath(test_map),os.path.abspath(test_map2))
|
|
|
|
try:
|
|
|
|
eq_(open(test_map).read(),open(test_map2).read())
|
|
|
|
except AssertionError, e:
|
|
|
|
raise AssertionError('serialized map "%s" not the same after being reloaded, \ncompare with command:\n\n$%s' % (in_map,diff))
|
|
|
|
|
|
|
|
if os.path.exists(test_map):
|
|
|
|
os.remove(test_map)
|
|
|
|
else:
|
|
|
|
# Fail, the map wasn't written
|
|
|
|
return False
|
|
|
|
|
|
|
|
for m in glob.glob("../data/good_maps/*.xml"):
|
|
|
|
compare_map(m)
|
2011-08-31 00:51:42 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
setup()
|
|
|
|
[eval(run)() for run in dir() if 'test_' in run]
|