aboutsummaryrefslogtreecommitdiffstats
path: root/BRMSGateway
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@ericsson.com>2018-04-25 20:11:54 +0100
committerliamfallon <liam.fallon@ericsson.com>2018-04-25 20:24:49 +0100
commit06890d6ab0b7b11eb3fa5a76234195a376b3854c (patch)
treefbe349de5d8472d9491ffe991886fb737a3a31b1 /BRMSGateway
parent5e10681059449e28f0e49a2088cf671e75f42f19 (diff)
Remove unit test Java version dependency
In the unit tests for the direct Sona Nexus Rest Interface, one of the unit tests only passed on an Oracle Java specific string. This test is fixed to now work on both Oracle and OpenJDK java Issue-ID: POLICY-700 Change-Id: Idae1aaf612a10ac003f2a91c0b5a80540152ac95 Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'BRMSGateway')
-rw-r--r--BRMSGateway/src/test/java/org/onap/policy/brms/api/nexus/NexusRestWrapperTest.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/BRMSGateway/src/test/java/org/onap/policy/brms/api/nexus/NexusRestWrapperTest.java b/BRMSGateway/src/test/java/org/onap/policy/brms/api/nexus/NexusRestWrapperTest.java
index bc666fb08..60adecd41 100644
--- a/BRMSGateway/src/test/java/org/onap/policy/brms/api/nexus/NexusRestWrapperTest.java
+++ b/BRMSGateway/src/test/java/org/onap/policy/brms/api/nexus/NexusRestWrapperTest.java
@@ -103,8 +103,7 @@ public class NexusRestWrapperTest {
fail("test shold throw an exception here");
} catch (NexusRestWrapperException e) {
assertEquals("search to URI http://localhost:99999/service/local/lucene/search?g=org.onap.policy.engine "
- + "failed with message: java.lang.IllegalArgumentException: port out of range:99999",
- e.getMessage());
+ + "failed with message: ", e.getMessage().substring(0, 111));
}
wrapper.close();
@@ -118,8 +117,7 @@ public class NexusRestWrapperTest {
fail("test shold throw an exception here");
} catch (NexusRestWrapperException e) {
assertEquals("search to URI http://localhost:57344/service/local/lucene/search?g=org.onap.policy.engine "
- + "failed with message: java.net.ConnectException: Connection refused (Connection refused)",
- e.getMessage());
+ + "failed with message: ", e.getMessage().substring(0, 111));
}
wrapper.close();