|
8 | 8 | data_path: Path = Path(__file__).parent.parent / "xml-migs-and-ahbs"
|
9 | 9 |
|
10 | 10 |
|
| 11 | +def private_submodule_is_checked_out() -> bool: |
| 12 | + return any(data_path.iterdir()) |
| 13 | + |
| 14 | + |
11 | 15 | @pytest.mark.parametrize(
|
12 | 16 | "ahb_xml_file_path, expected_date",
|
13 | 17 | [
|
|
94 | 98 | ],
|
95 | 99 | )
|
96 | 100 | 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") |
97 | 103 | reader = AhbReader(ahb_xml_file_path)
|
98 | 104 | actual = reader.get_publishing_date()
|
99 | 105 | assert actual == expected_date
|
100 | 106 |
|
101 | 107 |
|
| 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 | + |
102 | 116 | @pytest.mark.parametrize(
|
103 | 117 | "mig_xml_file_path, expected_date",
|
104 | 118 | [
|
@@ -185,6 +199,16 @@ def test_read_ahb_xml(ahb_xml_file_path: Path, expected_date: date) -> None:
|
185 | 199 | ],
|
186 | 200 | )
|
187 | 201 | 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") |
188 | 204 | reader = MigReader(mig_xml_file_path)
|
189 | 205 | actual = reader.get_publishing_date()
|
190 | 206 | 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