aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristof Rabensteiner <christof.rabensteiner@iaik.tugraz.at>2020-02-18 14:04:27 +0100
committerChristof Rabensteiner <christof.rabensteiner@iaik.tugraz.at>2020-02-18 14:05:18 +0100
commitc257eea0453dfb484cf4f7a68ccc04a472d08bb7 (patch)
tree19f781b2bd9b79b044e2c693e9b827127dbbdd54 /src
parentb510d764ebbeef049f4806c6be56a9e7739b0fd6 (diff)
downloadmoa-zs-c257eea0453dfb484cf4f7a68ccc04a472d08bb7.tar.gz
moa-zs-c257eea0453dfb484cf4f7a68ccc04a472d08bb7.tar.bz2
moa-zs-c257eea0453dfb484cf4f7a68ccc04a472d08bb7.zip
SSL Tests: Fix Routes
Diffstat (limited to 'src')
-rw-r--r--src/test/java/at/gv/egiz/moazs/ITSSLMsgClientTest.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/java/at/gv/egiz/moazs/ITSSLMsgClientTest.java b/src/test/java/at/gv/egiz/moazs/ITSSLMsgClientTest.java
index 4158aec..072294a 100644
--- a/src/test/java/at/gv/egiz/moazs/ITSSLMsgClientTest.java
+++ b/src/test/java/at/gv/egiz/moazs/ITSSLMsgClientTest.java
@@ -72,7 +72,7 @@ public class ITSSLMsgClientTest {
public void sendValidMessage() throws IOException {
var request = loadFromFile("validDeliveryRequest.xml");
- var httpServiceURL = "http://localhost:8081/services/DeliveryRequest";
+ var httpServiceURL = "http://localhost:8081/services/app2zuse";
var clientParams = clientTypeBuilder()
.withURL(httpServiceURL)
.withConnectionTimeout(BigInteger.ZERO)
@@ -98,7 +98,7 @@ public class ITSSLMsgClientTest {
public void sendOverSSLWithClientAuthentication() throws IOException {
var request = loadFromFile("validDeliveryRequest.xml");
- var httpsServiceURL = "https://localhost/zusemsg/services/DeliveryRequest";
+ var httpsServiceURL = "https://localhost/app2zuse/services/app2zuse";
var clientParams = generateSSLClientParams(httpsServiceURL, false, false);
App2ZusePort port = createPort(clientParams);
@@ -116,7 +116,7 @@ public class ITSSLMsgClientTest {
public void sendOverSSLWithClientAuthTrustAll() throws IOException {
var request = loadFromFile("validDeliveryRequest.xml");
- var httpsServiceURL = "https://localhost/zusemsg/services/DeliveryRequest";
+ var httpsServiceURL = "https://localhost/app2zuse/services/app2zuse";
var clientParams = generateSSLClientParams(httpsServiceURL, true, false);
App2ZusePort port = createPort(clientParams);
@@ -134,7 +134,7 @@ public class ITSSLMsgClientTest {
public void sendOverSSLWithClientAuthLaxHostnameVerification() throws IOException {
var request = loadFromFile("validDeliveryRequest.xml");
- var httpsServiceURL = "https://notlocalhost/zusemsg/services/DeliveryRequest";
+ var httpsServiceURL = "https://notlocalhost/app2zuse/services/app2zuse";
var clientParams = generateSSLClientParams(httpsServiceURL, false, true);
App2ZusePort port = createPort(clientParams);
@@ -152,7 +152,7 @@ public class ITSSLMsgClientTest {
public void rejectBecauseHostNameVerificationFails() throws IOException {
var request = loadFromFile("validDeliveryRequest.xml");
- var httpsServiceURL = "https://notlocalhost/zusemsg/services/DeliveryRequest";
+ var httpsServiceURL = "https://notlocalhost/app2zuse/services/app2zuse";
var clientParams = generateSSLClientParams(httpsServiceURL, false, false);
App2ZusePort port = createPort(clientParams);