+
+
+def test_picture_parts():
+ wlp = picture.WLPicture.from_file(open(get_fixture('picture', 'angelus-novus.xml')))
+ parts = list(wlp.partiter())
+ expect_parts = 4
+ assert len(parts) == expect_parts, "there should be %d parts of the picture" % expect_parts
+ motifs = set()
+ names = set()
+
+ print parts
+ for p in parts:
+ for m in p['themes']:
+ motifs.add(m)
+ for p in parts:
+ if p['object']:
+ names.add(p['object'])
+
+ assert motifs == {u'anioł historii', u'spojrzenie'}, "missing motifs, got: %s" % motifs
+ assert names == {u'obraz cały', u'skrzydło'}, 'missing objects, got: %s' % names