1919from mitreattack .navlayers .layerGenerator_cli import main as LGC_main
2020
2121
22+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
2223def test_export_svg (tmp_path : Path , layer_v43 : Layer , stix_file_enterprise_latest : str ):
2324 """Test SVG Export capabilities from CLI."""
2425 demo_file = tmp_path / "demo_file.json"
@@ -42,6 +43,7 @@ def test_export_svg(tmp_path: Path, layer_v43: Layer, stix_file_enterprise_lates
4243 assert test_export_svg_file .exists ()
4344
4445
46+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
4547def test_export_excel (tmp_path : Path , layer_v43 : Layer , stix_file_enterprise_latest : str ):
4648 """Test excel export capabilities from CLI."""
4749 demo_file = tmp_path / "demo_file.json"
@@ -65,6 +67,7 @@ def test_export_excel(tmp_path: Path, layer_v43: Layer, stix_file_enterprise_lat
6567 assert test_export_xlsx_file .exists ()
6668
6769
70+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
6871def test_generate_overview_group (tmp_path : Path , stix_file_mobile_latest : str ):
6972 """Test CLI group overview generation."""
7073 output_layer_file = tmp_path / "test_overview_group.json"
@@ -85,6 +88,7 @@ def test_generate_overview_group(tmp_path: Path, stix_file_mobile_latest: str):
8588 assert output_layer_file .exists ()
8689
8790
91+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
8892def test_generate_overview_software (tmp_path : Path , stix_file_mobile_latest : str ):
8993 """Test CLI software overview generation."""
9094 output_layer_file = tmp_path / "test_overview_software.json"
@@ -105,6 +109,7 @@ def test_generate_overview_software(tmp_path: Path, stix_file_mobile_latest: str
105109 assert output_layer_file .exists ()
106110
107111
112+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
108113def test_generate_overview_mitigation (tmp_path : Path , stix_file_enterprise_latest : str ):
109114 """Test CLI mitigation overview generation."""
110115 output_layer_file = tmp_path / "test_overview_mitigation.json"
@@ -125,6 +130,7 @@ def test_generate_overview_mitigation(tmp_path: Path, stix_file_enterprise_lates
125130 assert output_layer_file .exists ()
126131
127132
133+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
128134def test_generate_overview_datasource (tmp_path : Path , stix_file_enterprise_latest : str ):
129135 """Test CLI datasource overview generation."""
130136 output_layer_file = tmp_path / "test_overview_datasource.json"
@@ -145,6 +151,7 @@ def test_generate_overview_datasource(tmp_path: Path, stix_file_enterprise_lates
145151 assert output_layer_file .exists ()
146152
147153
154+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
148155def test_generate_mapped_group (tmp_path : Path , stix_file_enterprise_latest : str ):
149156 """Test CLI group mapped generation (APT1)."""
150157 output_layer_file = tmp_path / "test_mapped_group.json"
@@ -165,6 +172,7 @@ def test_generate_mapped_group(tmp_path: Path, stix_file_enterprise_latest: str)
165172 assert output_layer_file .exists ()
166173
167174
175+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
168176def test_generate_mapped_software (tmp_path : Path , stix_file_enterprise_latest : str ):
169177 """Test CLI software mapped generation (S0202)."""
170178 output_layer_file = tmp_path / "test_mapped_software.json"
@@ -185,6 +193,7 @@ def test_generate_mapped_software(tmp_path: Path, stix_file_enterprise_latest: s
185193 assert output_layer_file .exists ()
186194
187195
196+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
188197def test_generate_mapped_mitigation (tmp_path : Path , stix_file_mobile_latest : str ):
189198 """Test CLI mitigation mapped generation (M1013)."""
190199 output_layer_file = tmp_path / "test_mapped_mitigation.json"
@@ -205,6 +214,7 @@ def test_generate_mapped_mitigation(tmp_path: Path, stix_file_mobile_latest: str
205214 assert output_layer_file .exists ()
206215
207216
217+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
208218def test_generate_mapped_datasource (tmp_path : Path , stix_file_enterprise_latest : str ):
209219 """Test CLI datasource mapped generation."""
210220 output_layer_file = tmp_path / "test_mapped_datasource.json"
@@ -267,6 +277,7 @@ def test_generate_batch_software(tmp_path: Path, stix_file_ics_latest: str):
267277 assert output_layers_dir .is_dir ()
268278
269279
280+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
270281def test_generate_batch_mitigation (tmp_path : Path , stix_file_enterprise_latest : str ):
271282 """Test CLI mitigation batch generation."""
272283 output_layers_dir = tmp_path / "test_batch_mitigation"
@@ -287,6 +298,7 @@ def test_generate_batch_mitigation(tmp_path: Path, stix_file_enterprise_latest:
287298 assert output_layers_dir .is_dir ()
288299
289300
301+ @pytest .mark .skip ("Unsupported functionality of mitreattack-python. keeping the unit test for legacy awareness" )
290302def test_generate_batch_datasource (tmp_path : Path , stix_file_enterprise_latest : str ):
291303 """Test CLI datasource batch generation."""
292304 output_layers_dir = tmp_path / "test_batch_datasource"
0 commit comments