-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
...java/org/openehealth/ipf/platform/camel/ihe/hl7v3/core/converters/TypeConversionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.openehealth.ipf.platform.camel.ihe.hl7v3.core.converters; | ||
|
||
import net.ihe.gazelle.hl7v3.datatypes.II; | ||
import org.apache.camel.Exchange; | ||
import org.apache.camel.support.DefaultExchange; | ||
import org.apache.cxf.transport.servlet.CXFServlet; | ||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.Test; | ||
import org.openehealth.ipf.commons.ihe.hl7v3.core.metadata.Device; | ||
import org.openehealth.ipf.commons.ihe.hl7v3.core.requests.PixV3QueryRequest; | ||
import org.openehealth.ipf.platform.camel.ihe.ws.StandardTestContainer; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
public class TypeConversionTest extends StandardTestContainer { | ||
|
||
@BeforeAll | ||
public static void beforeAll() { | ||
startServer(new CXFServlet(), "context.xml"); | ||
} | ||
|
||
@Test | ||
public void testPixV3QueryRequestTranslation() throws Exception { | ||
PixV3QueryRequest request = new PixV3QueryRequest(); | ||
request.setReceiver(new Device()); | ||
request.setSender(new Device()); | ||
request.setQueryPatientId(new II("patient1", "3.14.15.926")); | ||
|
||
Exchange exchange = new DefaultExchange(camelContext); | ||
exchange.getMessage().setBody(request); | ||
|
||
String s = exchange.getMessage().getMandatoryBody(String.class); | ||
assertTrue(s.startsWith("<")); | ||
} | ||
|
||
} |
45 changes: 45 additions & 0 deletions
45
platform-camel/ihe/hl7v3model/src/test/resources/context.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!-- | ||
~ Copyright 2024 the original author or authors. | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:camel="http://camel.apache.org/schema/spring" | ||
xmlns:ipf="http://openehealth.org/schema/ipf-commons-core" | ||
xsi:schemaLocation=" | ||
http://www.springframework.org/schema/beans | ||
http://www.springframework.org/schema/beans/spring-beans.xsd | ||
http://camel.apache.org/schema/spring | ||
http://camel.apache.org/schema/spring/camel-spring.xsd | ||
http://openehealth.org/schema/ipf-commons-core | ||
http://openehealth.org/schema/ipf-commons-core.xsd"> | ||
|
||
<import resource="classpath:META-INF/cxf/cxf.xml"/> | ||
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/> | ||
|
||
<camel:camelContext id="camelContext"> | ||
<camel:jmxAgent id="agent" disabled="false"/> | ||
</camel:camelContext> | ||
|
||
<ipf:globalContext id="globalContext"/> | ||
|
||
<bean id="auditContext" class="org.openehealth.ipf.commons.audit.DefaultAuditContext"> | ||
<property name="auditEnabled" value="false"/> | ||
<property name="auditMessageQueue"> | ||
<bean class="org.openehealth.ipf.commons.audit.queue.RecordingAuditMessageQueue"/> | ||
</property> | ||
</bean> | ||
|
||
|
||
</beans> |