skip failing xml test on windows w/ burnettk

This commit is contained in:
jasquat 2023-01-18 10:38:43 -05:00
parent f3c404aa09
commit c2daae0420
2 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
<!--?xml version="1.0" ?-->
<!DOCTYPE replace [<!ENTITY ent SYSTEM "{{FULL_PATH_TO_FILE}}"> ]>
<!DOCTYPE replace [<!ENTITY ent SYSTEM "file://{{FULL_PATH_TO_FILE}}"> ]>
<userInfo>
<firstName>John</firstName>
<lastName>&ent;</lastName>

View File

@ -1,5 +1,6 @@
"""Test_message_service."""
import os
import sys
import pytest
from flask import Flask
@ -238,6 +239,7 @@ class TestSpecFileService(BaseTest):
full_file_path = SpecFileService.full_file_path(process_model, "bad_xml.bpmn")
assert not os.path.isfile(full_file_path)
@pytest.mark.skipif(sys.platform == "win32", reason="tmp file path is not valid xml for windows and it doesn't matter")
def test_does_not_evaluate_entities(
self,
app: Flask,
@ -249,9 +251,6 @@ class TestSpecFileService(BaseTest):
tmp_file = os.path.normpath(
self.get_test_data_file_full_path("file_to_inject", "xml_with_entity")
)
# add the file: with the correct separator for windows
tmp_file = f"file:{os.path.sep}{tmp_file}"
file_contents = self.get_test_data_file_contents(
"invoice.bpmn", "xml_with_entity"
)