reduce text logging running tests
This commit is contained in:
parent
ced9a748ad
commit
ba7b0d8bfa
|
@ -133,7 +133,7 @@ class FHIRToolingClientTest {
|
||||||
|
|
||||||
private void checkHeaders(Headers argumentCaptorValue) {
|
private void checkHeaders(Headers argumentCaptorValue) {
|
||||||
getHeaders().forEach(header -> {
|
getHeaders().forEach(header -> {
|
||||||
System.out.println("Checking header <" + header.component1().utf8() + ", " + header.component2().utf8() + ">");
|
// System.out.println("Checking header <" + header.component1().utf8() + ", " + header.component2().utf8() + ">");
|
||||||
Assertions.assertEquals(argumentCaptorValue.get(header.component1().utf8()), header.component2().utf8());
|
Assertions.assertEquals(argumentCaptorValue.get(header.component1().utf8()), header.component2().utf8());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -141,7 +141,7 @@ class FHIRToolingClientTest {
|
||||||
|
|
||||||
private void checkHeaders(Headers argumentCaptorValue) {
|
private void checkHeaders(Headers argumentCaptorValue) {
|
||||||
getHeaders().forEach(header -> {
|
getHeaders().forEach(header -> {
|
||||||
System.out.println("Checking header <" + header.component1().utf8() + ", " + header.component2().utf8() + ">");
|
// System.out.println("Checking header <" + header.component1().utf8() + ", " + header.component2().utf8() + ">");
|
||||||
Assertions.assertEquals(argumentCaptorValue.get(header.component1().utf8()), header.component2().utf8());
|
Assertions.assertEquals(argumentCaptorValue.get(header.component1().utf8()), header.component2().utf8());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,8 +16,8 @@ public class SimpleHTTPClientTest {
|
||||||
|
|
||||||
SimpleHTTPClient.HTTPResult res = http.get(url, "application/json");
|
SimpleHTTPClient.HTTPResult res = http.get(url, "application/json");
|
||||||
|
|
||||||
System.out.println(res.getCode());
|
// System.out.println(res.getCode());
|
||||||
System.out.println(new String(res.getContent(), StandardCharsets.UTF_8));
|
// System.out.println(new String(res.getContent(), StandardCharsets.UTF_8));
|
||||||
assertTrue(res.getCode() != 400);
|
assertTrue(res.getCode() != 400);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -67,7 +67,7 @@ class I18nBaseTest {
|
||||||
BufferedReader reader = new BufferedReader(streamReader)) {
|
BufferedReader reader = new BufferedReader(streamReader)) {
|
||||||
String line;
|
String line;
|
||||||
while ((line = reader.readLine()) != null) {
|
while ((line = reader.readLine()) != null) {
|
||||||
System.out.println("Searching for umlauts -> " + line);
|
// System.out.println("Searching for umlauts -> " + line);
|
||||||
Assertions.assertFalse(stringContainsItemFromList(line, UMLAUTS));
|
Assertions.assertFalse(stringContainsItemFromList(line, UMLAUTS));
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
|
@ -35,9 +35,9 @@ public class CachingPackageClientTests {
|
||||||
public void testSearch() throws IOException {
|
public void testSearch() throws IOException {
|
||||||
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER1);
|
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER1);
|
||||||
List<PackageInfo> matches = client.search("core", null, null, false);
|
List<PackageInfo> matches = client.search("core", null, null, false);
|
||||||
for (PackageInfo pi : matches) {
|
// for (PackageInfo pi : matches) {
|
||||||
System.out.println(pi.toString());
|
// System.out.println(pi.toString());
|
||||||
}
|
// }
|
||||||
Assertions.assertTrue(matches.size() > 0);
|
Assertions.assertTrue(matches.size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,9 +52,9 @@ public class CachingPackageClientTests {
|
||||||
public void testVersions() throws IOException {
|
public void testVersions() throws IOException {
|
||||||
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER1);
|
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER1);
|
||||||
List<PackageInfo> matches = client.getVersions("Simplifier.Core.STU3");
|
List<PackageInfo> matches = client.getVersions("Simplifier.Core.STU3");
|
||||||
for (PackageInfo pi : matches) {
|
// for (PackageInfo pi : matches) {
|
||||||
System.out.println(pi.toString());
|
// System.out.println(pi.toString());
|
||||||
}
|
// }
|
||||||
Assertions.assertTrue(matches.size() > 0);
|
Assertions.assertTrue(matches.size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,9 +78,9 @@ public class CachingPackageClientTests {
|
||||||
public void testSearch2() throws IOException {
|
public void testSearch2() throws IOException {
|
||||||
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER2);
|
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER2);
|
||||||
List<PackageInfo> matches = client.search("core", null, null, false);
|
List<PackageInfo> matches = client.search("core", null, null, false);
|
||||||
for (PackageInfo pi : matches) {
|
// for (PackageInfo pi : matches) {
|
||||||
System.out.println(pi.toString());
|
// System.out.println(pi.toString());
|
||||||
}
|
// }
|
||||||
Assertions.assertTrue(matches.size() > 0);
|
Assertions.assertTrue(matches.size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,9 +105,9 @@ public class CachingPackageClientTests {
|
||||||
public void testVersions2A() throws IOException {
|
public void testVersions2A() throws IOException {
|
||||||
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER2);
|
CachingPackageClient client = new CachingPackageClient(CachingPackageClientTests.SERVER2);
|
||||||
List<PackageInfo> matches = client.getVersions("hl7.fhir.us.core");
|
List<PackageInfo> matches = client.getVersions("hl7.fhir.us.core");
|
||||||
for (PackageInfo pi : matches) {
|
// for (PackageInfo pi : matches) {
|
||||||
System.out.println(pi.toString());
|
// System.out.println(pi.toString());
|
||||||
}
|
// }
|
||||||
Assertions.assertTrue(matches.size() > 0);
|
Assertions.assertTrue(matches.size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@ public class XhtmlNodeTest {
|
||||||
"</xhtml:div>");
|
"</xhtml:div>");
|
||||||
|
|
||||||
String output = node.getValueAsString();
|
String output = node.getValueAsString();
|
||||||
ourLog.info(output);
|
// ourLog.info(output);
|
||||||
|
|
||||||
Assertions.assertEquals("<div xmlns=\"http://www.w3.org/1999/xhtml\"><img src=\"http://pbs.twimg.com/profile_images/544507893991485440/r_vo3uj2_bigger.png\" alt=\"Twitter Avatar\"/>@fhirabend</div>", output);
|
Assertions.assertEquals("<div xmlns=\"http://www.w3.org/1999/xhtml\"><img src=\"http://pbs.twimg.com/profile_images/544507893991485440/r_vo3uj2_bigger.png\" alt=\"Twitter Avatar\"/>@fhirabend</div>", output);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "valueSet" :{
|
||||||
|
"resourceType" : "ValueSet",
|
||||||
|
"compose" : {
|
||||||
|
"inactive" : true,
|
||||||
|
"include" : [{
|
||||||
|
"system" : "urn:iso:std:iso:4217"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "url": "http://hl7.org/fhir/ValueSet/currencies", "version": "4.0.1"}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
|
@ -0,0 +1,11 @@
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"code" : {
|
||||||
|
"system" : "urn:ietf:bcp:47",
|
||||||
|
"code" : "fr-CA"
|
||||||
|
}, "valueSet" :null, "lang":"en-US", "useServer":"true", "useClient":"true", "guessSystem":"false", "valueSetMode":"ALL_CHECKS", "versionFlexible":"true"}####
|
||||||
|
v: {
|
||||||
|
"severity" : "error",
|
||||||
|
"error" : "Attempt to use Terminology server when no Terminology server is available",
|
||||||
|
"class" : "SERVER_ERROR"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
|
@ -0,0 +1,90 @@
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "valueSet" :{
|
||||||
|
"resourceType" : "ValueSet",
|
||||||
|
"compose" : {
|
||||||
|
"inactive" : true,
|
||||||
|
"include" : [{
|
||||||
|
"system" : "http://loinc.org",
|
||||||
|
"concept" : [{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "A."
|
||||||
|
}],
|
||||||
|
"code" : "LA20752-4",
|
||||||
|
"display" : "Within 24 hours"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "B."
|
||||||
|
}],
|
||||||
|
"code" : "LA20753-2",
|
||||||
|
"display" : "After 24 hours but before 3 days"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "C."
|
||||||
|
}],
|
||||||
|
"code" : "LA20754-0",
|
||||||
|
"display" : "Three days or later"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "D."
|
||||||
|
}],
|
||||||
|
"code" : "LA4489-6",
|
||||||
|
"display" : "Unknown"
|
||||||
|
}]
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "valueSet" :{
|
||||||
|
"resourceType" : "ValueSet",
|
||||||
|
"compose" : {
|
||||||
|
"include" : [{
|
||||||
|
"system" : "http://loinc.org",
|
||||||
|
"concept" : [{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "A."
|
||||||
|
}],
|
||||||
|
"code" : "LA20752-4",
|
||||||
|
"display" : "Within 24 hours"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "B."
|
||||||
|
}],
|
||||||
|
"code" : "LA20753-2",
|
||||||
|
"display" : "After 24 hours but before 3 days"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "C."
|
||||||
|
}],
|
||||||
|
"code" : "LA20754-0",
|
||||||
|
"display" : "Three days or later"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-label",
|
||||||
|
"valueString" : "D."
|
||||||
|
}],
|
||||||
|
"code" : "LA4489-6",
|
||||||
|
"display" : "Unknown"
|
||||||
|
}]
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
|
@ -0,0 +1,19 @@
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "valueSet" :{
|
||||||
|
"resourceType" : "ValueSet",
|
||||||
|
"compose" : {
|
||||||
|
"inactive" : true,
|
||||||
|
"include" : [{
|
||||||
|
"system" : "urn:ietf:bcp:13"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "url": "http://hl7.org/fhir/ValueSet/mimetypes", "version": "4.0.1"}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
|
@ -0,0 +1,103 @@
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "valueSet" :{
|
||||||
|
"resourceType" : "ValueSet",
|
||||||
|
"compose" : {
|
||||||
|
"inactive" : true,
|
||||||
|
"include" : [{
|
||||||
|
"system" : "http://unitsofmeasure.org",
|
||||||
|
"concept" : [{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition",
|
||||||
|
"valueString" : "second"
|
||||||
|
}],
|
||||||
|
"code" : "s",
|
||||||
|
"display" : "second",
|
||||||
|
"designation" : [{
|
||||||
|
"language" : "zh",
|
||||||
|
"value" : "秒"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition",
|
||||||
|
"valueString" : "minute"
|
||||||
|
}],
|
||||||
|
"code" : "min",
|
||||||
|
"display" : "minute",
|
||||||
|
"designation" : [{
|
||||||
|
"language" : "zh",
|
||||||
|
"value" : "分钟"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition",
|
||||||
|
"valueString" : "hour"
|
||||||
|
}],
|
||||||
|
"code" : "h",
|
||||||
|
"display" : "hour",
|
||||||
|
"designation" : [{
|
||||||
|
"language" : "zh",
|
||||||
|
"value" : "小时"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition",
|
||||||
|
"valueString" : "day"
|
||||||
|
}],
|
||||||
|
"code" : "d",
|
||||||
|
"display" : "day",
|
||||||
|
"designation" : [{
|
||||||
|
"language" : "zh",
|
||||||
|
"value" : "天"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition",
|
||||||
|
"valueString" : "week"
|
||||||
|
}],
|
||||||
|
"code" : "wk",
|
||||||
|
"display" : "week",
|
||||||
|
"designation" : [{
|
||||||
|
"language" : "zh",
|
||||||
|
"value" : "星期"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition",
|
||||||
|
"valueString" : "month"
|
||||||
|
}],
|
||||||
|
"code" : "mo",
|
||||||
|
"display" : "month",
|
||||||
|
"designation" : [{
|
||||||
|
"language" : "zh",
|
||||||
|
"value" : "月"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"extension" : [{
|
||||||
|
"url" : "http://hl7.org/fhir/StructureDefinition/valueset-concept-definition",
|
||||||
|
"valueString" : "year"
|
||||||
|
}],
|
||||||
|
"code" : "a",
|
||||||
|
"display" : "year",
|
||||||
|
"designation" : [{
|
||||||
|
"language" : "zh",
|
||||||
|
"value" : "年"
|
||||||
|
}]
|
||||||
|
}]
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
{"hierarchical" : false, "url": "http://hl7.org/fhir/ValueSet/units-of-time", "version": "4.0.1"}####
|
||||||
|
e: {
|
||||||
|
"error" : "java.lang.NullPointerException"
|
||||||
|
}
|
||||||
|
-------------------------------------------------------------------------------------
|
Loading…
Reference in New Issue