aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/at/gv/egiz/moazs/MsgClientTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/at/gv/egiz/moazs/MsgClientTest.java')
-rw-r--r--src/test/java/at/gv/egiz/moazs/MsgClientTest.java51
1 files changed, 42 insertions, 9 deletions
diff --git a/src/test/java/at/gv/egiz/moazs/MsgClientTest.java b/src/test/java/at/gv/egiz/moazs/MsgClientTest.java
index 62df52d..294b2b8 100644
--- a/src/test/java/at/gv/egiz/moazs/MsgClientTest.java
+++ b/src/test/java/at/gv/egiz/moazs/MsgClientTest.java
@@ -7,25 +7,28 @@ import at.gv.egiz.moazs.scheme.Marshaller;
import at.gv.zustellung.app2mzs.xsd.ClientType;
import at.gv.zustellung.msg.xsd.DeliveryRequestType;
import at.gv.zustellung.msg.xsd.ObjectFactory;
+import org.junit.Test;
+import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
import javax.xml.bind.JAXBElement;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
+import static at.gv.zustellung.app2mzs.xsd.KeyStoreType.keyStoreTypeBuilder;
+import static at.gv.zustellung.app2mzs.xsd.SSLType.SSLTypeBuilder;
// @RunWith(SpringRunner.class)
// @SpringBootTest
-public class MsgClientTest {
-
- private final static Logger logger = LoggerFactory.getLogger(MsgClient.class);
- private String httpServiceUri = "http://localhost:8081/services/DeliveryRequest";
- private String sslServiceUri = "https://localhost/zusemsg/services/DeliveryRequest";
+public class MsgClientTest {
+ private final static Logger log = LoggerFactory.getLogger(MsgClient.class);
private final String basePath = "src/test/resources/at/gv/egiz/moazs/MsgClientTest/";
@Autowired
@@ -46,27 +49,57 @@ public class MsgClientTest {
public void sendValidMessage() throws IOException {
var request = loadFromFile("validDeliveryRequest.xml");
+ var httpServiceUri = "http://localhost:8081/services/DeliveryRequest";
var clientParams = generateClientParams(httpServiceUri);
var client = factory.create(clientParams);
try{
var status = client.send(request);
- logger.info("status: " + msgMarshaller.marshallXml(OF.createDeliveryResponse(status)));
+ log.info("status: " + msgMarshaller.marshallXml(OF.createDeliveryResponse(status)));
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
//@Test
- public void sendValidMessageToSSL() throws IOException {
+ public void sendValidMessageSSL() throws IOException {
var request = loadFromFile("validDeliveryRequest.xml");
- var clientParams = generateClientParams(sslServiceUri);
+ var sslServiceUri = "https://localhost/zusemsg/services/DeliveryRequest";
+ var clientParams = generateSSLClientParams(sslServiceUri);
var client = factory.create(clientParams);
var status = client.send(request);
+ log.info("status: " + msgMarshaller.marshallXml(OF.createDeliveryRequestStatus(status)));
+
+ }
+
+ private ClientType generateSSLClientParams(String sslServiceUri) {
+
+ var keystore = keyStoreTypeBuilder()
+ .withFileName("ssl/client.cert.key.p12")
+ .withFileType("PKCS12")
+ .withPassword("123456")
+ .build();
+
+ var truststore = keyStoreTypeBuilder()
+ .withFileName("ssl/truststore.jks")
+ .withPassword("123456")
+ .withFileType("JKS")
+ .build();
+
+ var sslParams = SSLTypeBuilder()
+ .withLaxHostNameVerification(false)
+ .withTrustAll(false)
+ .withKeyStore(keystore)
+ .withTrustStore(truststore)
+ .build();
+
+ return ClientType.clientTypeBuilder()
+ .withURL(sslServiceUri)
+ .withSSL(sslParams)
+ .build();
- logger.info("status: " + msgMarshaller.marshallXml(OF.createDeliveryRequestStatus(status)));
}
private DeliveryRequestType loadFromFile(String fileName) throws IOException {