Esempio n. 1
0
 def test_delete_attribute_removed_if_exists(self):
     xsd_string = "<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema'>" \
                  "<root><test attr='value'></test></root></xs:schema>"
     xpath = "root/test"
     attribute_name = "attr"
     updated_xsd_string = delete_attribute(xsd_string, xpath, attribute_name)
     self.assertTrue('attr=' not in updated_xsd_string)
 def test_delete_attribute_does_not_fail_if_not_present(self):
     xsd_string = "<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema'>" \
                  "<root><test></test></root></xs:schema>"
     xpath = "root/test"
     attribute_name = "attr"
     delete_attribute(xsd_string, xpath, attribute_name)
 def test_delete_attribute_invalid_xpath_raises_xsd_error(self):
     xsd_string = "<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema'><root><test></test></root></xs:schema>"
     xpath = "invalid"
     with self.assertRaises(XMLError):
         delete_attribute(xsd_string, xpath, "")
 def test_delete_attribute_invalid_xsd_raises_xsd_error(self):
     xsd_string = "invalid"
     with self.assertRaises(etree.XMLSyntaxError):
         delete_attribute(xsd_string, "", "")