/* * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors. * * 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.switchyard.karaf.test.quickstarts; import java.io.InputStreamReader; import java.io.StringReader; import org.custommonkey.xmlunit.XMLAssert; import org.custommonkey.xmlunit.XMLUnit; import org.junit.BeforeClass; import org.junit.Test; import org.switchyard.common.type.Classes; import org.switchyard.component.test.mixins.http.HTTPMixIn; public class BeanServiceQuickstartTest extends AbstractQuickstartTest { private static String bundleName = "org.switchyard.quickstarts.switchyard.bean.service"; private static String featureName = "switchyard-quickstart-bean-service"; @BeforeClass public static void before() throws Exception { startTestContainer(featureName, bundleName); } @Test public void testOrders() throws Exception { HTTPMixIn httpMixIn = new HTTPMixIn(); httpMixIn.initialize(); try { XMLUnit.setIgnoreWhitespace(true); String port = getSoapClientPort(); String wsdl = httpMixIn.sendString("http://localhost:" + port + "/quickstart-bean/OrderService?wsdl", "", HTTPMixIn.HTTP_GET); XMLAssert.assertXMLEqual(new InputStreamReader(Classes.getResourceAsStream("quickstarts/bean-service/OrderService.wsdl")), new StringReader(wsdl)); String response = httpMixIn.postString("http://localhost:" + port + "/quickstart-bean/OrderService", SOAP_REQUEST); XMLAssert.assertXpathEvaluatesTo("PO-19838-XYZ", "//orderAck/orderId", response); XMLAssert.assertXpathEvaluatesTo("true", "//orderAck/accepted", response); XMLAssert.assertXpathEvaluatesTo("Order Accepted [intercepted]", "//orderAck/status", response); } finally { httpMixIn.uninitialize(); } } private static final String SOAP_REQUEST = "<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\">\n" + " <soap:Body>\n" + " <orders:submitOrder xmlns:orders=\"urn:switchyard-quickstart:bean-service:1.0\">\n" + " <order>\n" + " <orderId>PO-19838-XYZ</orderId>\n" + " <itemId>BUTTER</itemId>\n" + " <quantity>200</quantity>\n" + " </order>\n" + " </orders:submitOrder>\n" + " </soap:Body>\n" + "</soap:Envelope>"; }