/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.cxf.jaxrs.spring; import java.util.List; import javax.xml.bind.JAXBContext; import javax.xml.namespace.QName; import org.apache.cxf.BusFactory; import org.apache.cxf.jaxrs.JAXRSServerFactoryBean; import org.apache.cxf.jaxrs.provider.JAXBElementProvider; import org.apache.cxf.jaxrs.resources.Book; import org.apache.cxf.jaxrs.resources.BookStore; import org.apache.cxf.jaxrs.resources.BookStoreNoAnnotations; import org.apache.cxf.jaxrs.resources.BookStoreSubresourcesOnly; import org.apache.cxf.jaxrs.resources.SuperBook; import org.junit.After; import org.junit.Assert; import org.junit.Test; import org.springframework.context.support.ClassPathXmlApplicationContext; public class JAXRSServerFactoryBeanTest extends Assert { @After public void tearDown() throws Exception { if (BusFactory.getDefaultBus(false) != null) { BusFactory.getDefaultBus(false).shutdown(true); } } @Test public void testServers() throws Exception { ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(new String[] {"/org/apache/cxf/jaxrs/spring/servers.xml"}); JAXRSServerFactoryBean sfb = (JAXRSServerFactoryBean)ctx.getBean("simple"); assertEquals("Get a wrong address", "http://localhost:9090/rs", sfb.getAddress()); assertNotNull("The resource classes should not be null", sfb.getResourceClasses()); assertEquals("Get a wrong resource class", BookStore.class, sfb.getResourceClasses().get(0)); QName serviceQName = new QName("http://books.com", "BookService"); assertEquals(serviceQName, sfb.getServiceName()); assertEquals(serviceQName, sfb.getServiceFactory().getServiceName()); sfb = (JAXRSServerFactoryBean)ctx.getBean("inlineServiceBeans"); assertNotNull("The resource classes should not be null", sfb.getResourceClasses()); assertEquals("Get a wrong resource class", BookStore.class, sfb.getResourceClasses().get(0)); assertEquals("Get a wrong resource class", BookStoreSubresourcesOnly.class, sfb.getResourceClasses().get(1)); sfb = (JAXRSServerFactoryBean)ctx.getBean("inlineProvider"); assertNotNull("The provider should not be null", sfb.getProviders()); assertEquals("Get a wrong provider size", 2, sfb.getProviders().size()); verifyJaxbProvider(sfb.getProviders()); sfb = (JAXRSServerFactoryBean)ctx.getBean("moduleServer"); assertNotNull("The resource classes should not be null", sfb.getResourceClasses()); assertEquals("Get a wrong ResourceClasses size", 1, sfb.getResourceClasses().size()); assertEquals("Get a wrong resource class", BookStoreNoAnnotations.class, sfb.getResourceClasses().get(0)); ctx.close(); } private void verifyJaxbProvider(List<?> providers) throws Exception { JAXBElementProvider<?> provider = null; for (Object o : providers) { if (o instanceof JAXBElementProvider) { provider = (JAXBElementProvider<?>)o; } } assertNotNull(provider); JAXBContext c1 = provider.getClassContext(Book.class); assertNotNull(c1); JAXBContext c2 = provider.getClassContext(SuperBook.class); assertSame(c1, c2); provider.clearContexts(); } }