Adding conditional execution for new Narrative test, removing test suite, as we don't use those anymore, they are from JUnit 4 and cause the vintage engine to kick in, which double runs some tests.
This commit is contained in:
parent
ccb6b067b3
commit
5c7e713997
|
@ -181,7 +181,6 @@ public abstract class XmlParserBase extends ParserBase implements IParser {
|
||||||
writer.end();
|
writer.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Compose a type to a stream (used in the spec, for example, but not normally in production)
|
* Compose a type to a stream (used in the spec, for example, but not normally in production)
|
||||||
* @
|
* @
|
||||||
|
|
|
@ -10,6 +10,7 @@ import java.util.stream.Stream;
|
||||||
import javax.xml.parsers.ParserConfigurationException;
|
import javax.xml.parsers.ParserConfigurationException;
|
||||||
|
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
|
import org.apache.commons.lang3.SystemUtils;
|
||||||
import org.hl7.fhir.exceptions.FHIRFormatError;
|
import org.hl7.fhir.exceptions.FHIRFormatError;
|
||||||
import org.hl7.fhir.r5.context.IWorkerContext;
|
import org.hl7.fhir.r5.context.IWorkerContext;
|
||||||
import org.hl7.fhir.r5.formats.IParser.OutputStyle;
|
import org.hl7.fhir.r5.formats.IParser.OutputStyle;
|
||||||
|
@ -38,6 +39,8 @@ import org.xml.sax.SAXException;
|
||||||
|
|
||||||
public class NarrativeGenerationTests {
|
public class NarrativeGenerationTests {
|
||||||
|
|
||||||
|
public static final String WINDOWS = "WINDOWS";
|
||||||
|
|
||||||
private static final String HEADER = "<html><head>"+
|
private static final String HEADER = "<html><head>"+
|
||||||
"<link rel=\"stylesheet\" href=\"http://hl7.org/fhir/fhir.css\"/>"+
|
"<link rel=\"stylesheet\" href=\"http://hl7.org/fhir/fhir.css\"/>"+
|
||||||
"<link rel=\"stylesheet\" href=\"http://hl7.org/fhir/dist/css/bootstrap.css\"/>"+
|
"<link rel=\"stylesheet\" href=\"http://hl7.org/fhir/dist/css/bootstrap.css\"/>"+
|
||||||
|
@ -76,7 +79,15 @@ public class NarrativeGenerationTests {
|
||||||
List<Arguments> objects = new ArrayList<>();
|
List<Arguments> objects = new ArrayList<>();
|
||||||
while (test != null && test.getNodeName().equals("test")) {
|
while (test != null && test.getNodeName().equals("test")) {
|
||||||
TestDetails t = new TestDetails(test);
|
TestDetails t = new TestDetails(test);
|
||||||
objects.add(Arguments.of(t.getId(), t));
|
if (t.getId().equals("sdc")) {
|
||||||
|
if (SystemUtils.OS_NAME.contains(WINDOWS)) {
|
||||||
|
objects.add(Arguments.of(t.getId(), t));
|
||||||
|
} else {
|
||||||
|
System.out.println("sdc test not being adding because the current OS will not pass the test...");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
objects.add(Arguments.of(t.getId(), t));
|
||||||
|
}
|
||||||
test = XMLUtil.getNextSibling(test);
|
test = XMLUtil.getNextSibling(test);
|
||||||
}
|
}
|
||||||
return objects.stream();
|
return objects.stream();
|
||||||
|
@ -103,14 +114,6 @@ public class NarrativeGenerationTests {
|
||||||
source = (DomainResource) new XmlParser().parse(new FileInputStream(TestingUtilities.tempFile("narrative", test.getId() + "-actual.xml")));
|
source = (DomainResource) new XmlParser().parse(new FileInputStream(TestingUtilities.tempFile("narrative", test.getId() + "-actual.xml")));
|
||||||
String html = HEADER+new XhtmlComposer(true).compose(source.getText().getDiv())+FOOTER;
|
String html = HEADER+new XhtmlComposer(true).compose(source.getText().getDiv())+FOOTER;
|
||||||
TextFile.stringToFile(html, TestingUtilities.tempFile("narrative", test.getId() + ".html"));
|
TextFile.stringToFile(html, TestingUtilities.tempFile("narrative", test.getId() + ".html"));
|
||||||
// if (source instanceof Questionnaire) {
|
|
||||||
// for (QuestionnaireRendererMode mode : QuestionnaireRendererMode.values()) {
|
|
||||||
// rc.setQuestionnaireMode(mode);
|
|
||||||
// RendererFactory.factory(source, rc).render(source);
|
|
||||||
// html = HEADER+new XhtmlComposer(true).compose(source.getText().getDiv())+FOOTER;
|
|
||||||
// TextFile.stringToFile(html, TestingUtilities.tempFile("narrative", test.getId() +"-"+ mode.toString()+ ".html"));
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
Assertions.assertTrue(source.equalsDeep(target), "Output does not match expected");
|
Assertions.assertTrue(source.equalsDeep(target), "Output does not match expected");
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue