Add a test (currently failing) ensuring that named fontsets created in python are propertly serialized
This commit is contained in:
parent
00a4ab0528
commit
62b74002cb
1 changed files with 15 additions and 0 deletions
|
@ -17,6 +17,21 @@ def test_loading_fontset_from_map():
|
||||||
eq_(len(fs.names),2)
|
eq_(len(fs.names),2)
|
||||||
eq_(list(fs.names),['DejaVu Sans Book','DejaVu Sans Oblique'])
|
eq_(list(fs.names),['DejaVu Sans Book','DejaVu Sans Oblique'])
|
||||||
|
|
||||||
|
def test_loading_fontset_from_python():
|
||||||
|
m = mapnik.Map(256,256)
|
||||||
|
fset = mapnik.FontSet('my-set')
|
||||||
|
fset.add_face_name('Comic Sans')
|
||||||
|
fset.add_face_name('Papyrus')
|
||||||
|
m.append_fontset('my-set', fset)
|
||||||
|
sty = mapnik.Style()
|
||||||
|
rule = mapnik.Rule()
|
||||||
|
tsym = mapnik.TextSymbolizer()
|
||||||
|
tsym.fontset = fset
|
||||||
|
rule.symbols.append(tsym)
|
||||||
|
sty.rules.append(rule)
|
||||||
|
m.append_style('Style',sty)
|
||||||
|
serialized_map = mapnik.save_map_to_string(m)
|
||||||
|
eq_('fontset-name="my-set"' in serialized_map,True)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
setup()
|
setup()
|
||||||
|
|
Loading…
Add table
Reference in a new issue