/** * Copyright 2009-2010 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 net.javacrumbs.calc.server; import static net.javacrumbs.smock.common.SmockCommon.resource; import static net.javacrumbs.smock.common.server.CommonSmockServer.message; import static net.javacrumbs.smock.common.server.CommonSmockServer.withMessage; import static net.javacrumbs.smock.http.cxf.server.servlet.SmockServer.createClient; import static org.springframework.ws.test.server.ResponseMatchers.clientOrSenderFault; import static org.springframework.ws.test.server.ResponseMatchers.noFault; import static org.springframework.ws.test.server.ResponseMatchers.validPayload; import static org.springframework.ws.test.server.ResponseMatchers.xpath; import java.util.Collections; import java.util.Map; import net.javacrumbs.smock.http.cxf.server.servlet.ServletBasedMockWebServiceClient; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/cxf-servlet.xml"}) public class EndpointTest { private ServletBasedMockWebServiceClient client; @Autowired public void setApplicationContex(ApplicationContext applicationContext) { client = createClient(applicationContext); } private static final Map<String, String> NS_MAP = Collections.singletonMap("ns", "http://javacrumbs.net/calc"); @Test public void testSimple() throws Exception { client.sendRequestTo("/CalculatorService", withMessage("request1.xml")).andExpect(noFault()); } @Test public void testCompare() throws Exception { client.sendRequestTo("/CalculatorService",withMessage("request1.xml")).andExpect(message("response1.xml")); } @Test public void testValidateResponse() throws Exception { client.sendRequestTo("/CalculatorService",withMessage("request1.xml")).andExpect(noFault()).andExpect(validPayload(resource("xsd/calc.xsd"))); } @Test public void testAssertXPath() throws Exception { client.sendRequestTo("/CalculatorService",withMessage("request1.xml")).andExpect(noFault()).andExpect(xpath("//ns:result",NS_MAP).evaluatesTo(3)); } @Test public void testError() throws Exception { client.sendRequestTo("/CalculatorService",withMessage("request-error.xml")).andExpect(message("response-error.xml")); } @Test public void testErrorMessage() throws Exception { client.sendRequestTo("/CalculatorService",withMessage("request-error.xml")).andExpect(clientOrSenderFault("Unmarshalling Error: For input string: \"aaa\" ")); } @Test public void testResponseTemplate() throws Exception { client.sendRequestTo("/CalculatorService",withMessage("request-context-xslt.xml").withParameter("a",1).withParameter("b", 2)).andExpect(message("response-context-xslt.xml").withParameter("result", 3)); } }