/* * 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 javax.xml.namespace.QName; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import org.switchyard.quickstarts.transform.dozer.Order; import org.switchyard.quickstarts.transform.dozer.OrderAck; import org.switchyard.remote.RemoteInvoker; import org.switchyard.remote.RemoteMessage; import org.switchyard.remote.http.HttpInvoker; public class TransformDozerQuickstartTest extends AbstractQuickstartTest { private static String bundleName = "org.switchyard.quickstarts.switchyard.transform.dozer"; private static String featureName = "switchyard-quickstart-transform-dozer"; private static final QName SERVICE = new QName( "urn:switchyard-quickstart:transform-dozer:0.1.0", "OrderService"); private static final String URL = "http://localhost:8181/switchyard-remote"; @BeforeClass public static void before() throws Exception { startTestContainer(featureName, bundleName); } //Require RemoteInvoker @Test public void testDeployment() throws Exception { RemoteInvoker invoker = new HttpInvoker(URL); // Create request payload Order order = new Order(); order.setItem("Turkey"); order.setQuantity(1); // Create the request message RemoteMessage message = new RemoteMessage(); message.setService(SERVICE).setOperation("submitOrder").setContent(order); // Invoke the service RemoteMessage reply = invoker.invoke(message); System.out.println(">>>>> " + reply.getContent().toString()); OrderAck orderAck = (OrderAck) reply.getContent(); Assert.assertEquals(true, orderAck.isAccepted()); Assert.assertEquals("Order Accepted", orderAck.getStatusDescription()); Assert.assertEquals("PO-19838-XYZ", orderAck.getOrderId()); } }