|
1 |
| -#docker-compose -f local.yml run --rm django pytest config_generation/tests/test_db_to_xml.py |
| 1 | +# docker-compose -f local.yml run --rm django pytest config_generation/tests/test_db_to_xml.py |
2 | 2 | from xml.etree.ElementTree import ElementTree, ParseError, fromstring
|
3 | 3 |
|
4 | 4 | import pytest
|
@@ -85,21 +85,23 @@ def test_add_new_element():
|
85 | 85 | updated_xml = editor.update_config_xml()
|
86 | 86 | assert "Value" in updated_xml and "<newchild>Value</newchild>" in updated_xml
|
87 | 87 |
|
| 88 | + |
88 | 89 | def test_add_third_level_hierarchy():
|
89 | 90 | xml_string = "<root></root>"
|
90 | 91 | editor = XmlEditor(xml_string)
|
91 | 92 | editor.update_or_add_element_value("parent/child/grandchild", "DeeplyNested")
|
92 | 93 | updated_xml = editor.update_config_xml()
|
93 | 94 | root = fromstring(updated_xml)
|
94 |
| - grandchild = root.find('.//grandchild') |
| 95 | + grandchild = root.find(".//grandchild") |
95 | 96 | assert grandchild is not None, "Grandchild element not found"
|
96 | 97 | assert grandchild.text == "DeeplyNested", "Grandchild does not contain the correct text"
|
97 |
| - |
| 98 | + |
98 | 99 | # Check complete path
|
99 |
| - parent = root.find('.//parent/child/grandchild') |
| 100 | + parent = root.find(".//parent/child/grandchild") |
100 | 101 | assert parent is not None, "Complete path to grandchild not found"
|
101 | 102 | assert parent.text == "DeeplyNested", "Complete path to grandchild does not contain correct text"
|
102 | 103 |
|
| 104 | + |
103 | 105 | # Test transformations and generic mapping
|
104 | 106 | def test_convert_indexer_to_scraper_transformation():
|
105 | 107 | xml_string = """<root><Plugin>Indexer</Plugin></root>"""
|
|
0 commit comments