Skip to content

Commit 62b2c0e

Browse files
authored
fix(ahb): Bedingung text might be None in XML + SG AHB_Status is not always set (#84)
1 parent bcaf402 commit 62b2c0e

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

src/fundamend/reader/ahbreader.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ def _to_code(element: ET.Element) -> Code:
5151
def _to_bedingung(element: ET.Element) -> Bedingung:
5252
return Bedingung(
5353
nummer=strip("[", element.attrib["Nummer"], "]"),
54-
text=element.text.strip(), # type:ignore[union-attr]
54+
text=(element.text or "").strip(),
5555
)
5656

5757

5858
def _to_ub_bedingung(element: ET.Element) -> UbBedingung:
5959
return UbBedingung(
6060
nummer=strip("[", element.attrib["Nummer"], "]"),
61-
text=element.text.strip(), # type:ignore[union-attr]
61+
text=(element.text or "").strip(),
6262
)
6363

6464

@@ -148,7 +148,11 @@ def _to_segment_group(element: ET.Element) -> SegmentGroup:
148148
return SegmentGroup(
149149
id=lstrip("G_SG", element.tag),
150150
name=element.attrib["Name"],
151-
ahb_status=element.attrib["AHB_Status"],
151+
ahb_status=(
152+
element.attrib["AHB_Status"].strip() or None
153+
if "AHB_Status" in element.attrib and element.attrib["AHB_Status"] is not None
154+
else None
155+
),
152156
elements=tuple(list(segments_and_groups)),
153157
)
154158

unittests/test_ahb_serialisierung.py

+24
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
data_path: Path = Path(__file__).parent.parent / "xml-migs-and-ahbs"
99

1010

11+
def private_submodule_is_checked_out() -> bool:
12+
return any(data_path.iterdir())
13+
14+
1115
@pytest.mark.parametrize(
1216
"ahb_xml_file_path, expected_date",
1317
[
@@ -94,11 +98,21 @@
9498
],
9599
)
96100
def test_read_ahb_xml(ahb_xml_file_path: Path, expected_date: date) -> None:
101+
if not private_submodule_is_checked_out():
102+
pytest.skip("Skipping test because of missing private submodule")
97103
reader = AhbReader(ahb_xml_file_path)
98104
actual = reader.get_publishing_date()
99105
assert actual == expected_date
100106

101107

108+
def test_deserializing_all_ahbs() -> None:
109+
if not private_submodule_is_checked_out():
110+
pytest.skip("Skipping test because of missing private submodule")
111+
for ahb_file_path in data_path.rglob("**/*AHB*.xml"):
112+
reader = AhbReader(ahb_file_path)
113+
_ = reader.read() # must not crash
114+
115+
102116
@pytest.mark.parametrize(
103117
"mig_xml_file_path, expected_date",
104118
[
@@ -185,6 +199,16 @@ def test_read_ahb_xml(ahb_xml_file_path: Path, expected_date: date) -> None:
185199
],
186200
)
187201
def test_read_mig_xml(mig_xml_file_path: Path, expected_date: date) -> None:
202+
if not private_submodule_is_checked_out():
203+
pytest.skip("Skipping test because of missing private submodule")
188204
reader = MigReader(mig_xml_file_path)
189205
actual = reader.get_publishing_date()
190206
assert actual == expected_date
207+
208+
209+
def test_deserializing_all_migs() -> None:
210+
if not private_submodule_is_checked_out():
211+
pytest.skip("Skipping test because of missing private submodule")
212+
for mig_file_path in data_path.rglob("**/*MIG*.xml"):
213+
reader = MigReader(mig_file_path)
214+
_ = reader.read() # must not crash

0 commit comments

Comments
 (0)