Skip to content

Commit

Permalink
Add a test (currently failing) ensuring that named fontsets created i…
Browse files Browse the repository at this point in the history
…n python are propertly serialized
  • Loading branch information
Dane Springmeyer committed Sep 26, 2012
1 parent 00a4ab0 commit 62b7400
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/python_tests/test_fontset.py
Expand Up @@ -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()
Expand Down

0 comments on commit 62b7400

Please sign in to comment.