/** * 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.tools.java2wsdl.generator.wsdl11; import java.io.File; import java.lang.reflect.Method; import java.net.URI; import java.util.HashSet; import java.util.Set; import org.apache.cxf.service.model.ServiceInfo; import org.apache.cxf.tools.common.ProcessorTestBase; import org.apache.cxf.tools.common.ToolConstants; import org.apache.cxf.tools.java2wsdl.processor.JavaToWSDLProcessor; import org.junit.After; import org.junit.Before; import org.junit.Test; public class FaultBeanGeneratorTest extends ProcessorTestBase { JavaToWSDLProcessor processor = new JavaToWSDLProcessor(); String classPath = ""; @Before public void setUp() throws Exception { classPath = System.getProperty("java.class.path"); System.setProperty("java.class.path", getClassPath()); if (System.getProperty("java.version").startsWith("9")) { System.setProperty("org.apache.cxf.common.util.Compiler-fork", "true"); } processor.setEnvironment(env); } @After public void tearDown() { super.tearDown(); System.setProperty("java.class.path", classPath); } private ServiceInfo getServiceInfo() { return processor.getServiceBuilder().createService(); } @Test public void testGenFaultBean() throws Exception { String testingClass = "org.apache.cxf.tools.fortest.cxf523.Database"; env.put(ToolConstants.CFG_CLASSNAME, testingClass); FaultBeanGenerator generator = new FaultBeanGenerator(); generator.setToolContext(env); generator.setServiceModel(getServiceInfo()); generator.generate(output); String pkgBase = "org/apache/cxf/tools/fortest/cxf523/jaxws"; assertEquals(2, new File(output, pkgBase).listFiles().length); File faultBeanClass = new File(output, pkgBase + "/DBServiceFaultBean.java"); assertTrue(faultBeanClass.exists()); URI expectedFile = getClass().getResource("expected/DBServiceFaultBean.java.source").toURI(); assertFileEquals(new File(expectedFile), faultBeanClass); } @Test public void testGenFaultBeanWithCustomization() throws Exception { String testingClass = "org.apache.cxf.tools.fortest.jaxws.rpc.GreeterFault"; env.put(ToolConstants.CFG_CLASSNAME, testingClass); FaultBeanGenerator generator = new FaultBeanGenerator(); generator.setServiceModel(getServiceInfo()); generator.setToolContext(env); generator.generate(output); String pkgBase = "org/apache/cxf/tools/fortest/jaxws/rpc/types"; assertEquals(2, new File(output, pkgBase).listFiles().length); File faultBeanClass = new File(output, pkgBase + "/FaultDetail.java"); assertTrue(faultBeanClass.exists()); URI expectedFile = getClass().getResource("expected/FaultDetail.java.source").toURI(); assertFileEquals(new File(expectedFile), faultBeanClass); } @Test public void testGetExceptionClasses() throws Exception { Class<?> seiClass = Class.forName("org.apache.hello_world.Greeter"); FaultBeanGenerator generator = new FaultBeanGenerator(); Set<Class<?>> classes = new HashSet<Class<?>>(); for (Method method : seiClass.getMethods()) { classes.addAll(generator.getExceptionClasses(method)); } assertEquals(0, classes.size()); classes.clear(); seiClass = Class.forName("org.apache.cxf.tools.fortest.cxf523.Database"); for (Method method : seiClass.getMethods()) { classes.addAll(generator.getExceptionClasses(method)); } assertEquals(1, classes.size()); assertEquals("org.apache.cxf.tools.fortest.cxf523.DBServiceFault", classes.iterator().next().getName()); } }