Exemplo n.º 1
0
 def target_ref_fixture_(self, request, part):
     rId = 'rId246'
     url = 'https://github.com/scanny/python-docx'
     rels = Relationships(None)
     rels.add_relationship(None, url, rId, is_external=True)
     part._rels = rels
     return part, rId, url
Exemplo n.º 2
0
 def target_ref_fixture_(self, request, part):
     rId = 'rId246'
     url = 'https://github.com/scanny/python-docx'
     rels = Relationships(None)
     rels.add_relationship(None, url, rId, is_external=True)
     part._rels = rels
     return part, rId, url
Exemplo n.º 3
0
 def it_can_add_a_relationship(self, _Relationship_):
     baseURI, rId, reltype, target, is_external = ('baseURI', 'rId9',
                                                   'reltype', 'target',
                                                   False)
     rels = Relationships(baseURI)
     rel = rels.add_relationship(reltype, target, rId, is_external)
     _Relationship_.assert_called_once_with(rId, reltype, target, baseURI,
                                            is_external)
     assert rels[rId] == rel
     assert rel == _Relationship_.return_value
Exemplo n.º 4
0
 def it_can_add_a_relationship(self, _Relationship_):
     baseURI, rId, reltype, target, external = (
         'baseURI', 'rId9', 'reltype', 'target', False
     )
     rels = Relationships(baseURI)
     rel = rels.add_relationship(reltype, target, rId, external)
     _Relationship_.assert_called_once_with(
         rId, reltype, target, baseURI, external
     )
     assert rels[rId] == rel
     assert rel == _Relationship_.return_value
Exemplo n.º 5
0
 def rels(self):
     """
     Populated Relationships instance that will exercise the rels.xml
     property.
     """
     rels = Relationships('/baseURI')
     rels.add_relationship(
         reltype='http://rt-hyperlink', target='http://some/link',
         rId='rId1', is_external=True
     )
     part = Mock(name='part')
     part.partname.relative_ref.return_value = '../media/image1.png'
     rels.add_relationship(reltype='http://rt-image', target=part,
                           rId='rId2')
     return rels
Exemplo n.º 6
0
 def add_matching_ext_rel_fixture_(self, request, reltype, url):
     rId = 'rId369'
     rels = Relationships(None)
     rels.add_relationship(reltype, url, rId, is_external=True)
     return rels, reltype, url, rId
Exemplo n.º 7
0
 def add_ext_rel_fixture_(self, reltype, url):
     rels = Relationships(None)
     return rels, reltype, url
Exemplo n.º 8
0
 def it_should_raise_on_failed_lookup_by_rId(self):
     rels = Relationships(None)
     with pytest.raises(KeyError):
         rels['barfoo']
Exemplo n.º 9
0
 def it_has_dict_style_lookup_of_rel_by_rId(self):
     rel = Mock(name='rel', rId='foobar')
     rels = Relationships(None)
     rels['foobar'] = rel
     assert rels['foobar'] == rel
Exemplo n.º 10
0
 def it_has_a_len(self):
     rels = Relationships(None)
     assert len(rels) == 0
Exemplo n.º 11
0
 def build(self):
     rels = Relationships()
     for rel in self.relationships:
         rels.add_rel(rel)
     return rels
Exemplo n.º 12
0
 def build(self):
     rels = Relationships()
     for rel in self.relationships:
         rels.add_rel(rel)
     return rels
Exemplo n.º 13
0
 def rels(self, _baseURI):
     return Relationships(_baseURI)