package org.ebayopensource.turmeric.tools.codegen; import static org.junit.Assert.*; import java.io.File; import junit.framework.Assert; import org.junit.After; import org.junit.Before; import org.junit.Test; /** * @author svaddi * */ public class WsdlQETest extends AbstractServiceGeneratorTestCase { /** * @param name */ public WsdlQETest(){} File destDir = null; File prDir = null; File binDir = null; @Before public void init() throws Exception{ testingdir.ensureEmpty(); destDir = testingdir.getDir(); binDir = testingdir.getFile("bin"); } /** * @throws Exception * @check Exceptions need to be handled */ @Test public void wsdl() throws Exception { String testArgs1[] = new String[] { "-genType","wsdl", "-interface","org.ebayopensource.turmeric.tools.codegen.IHelloWorld", "-serviceName","HelloWorldService", "-cn","HelloWorld", "-environment","production", "-scv","1.0.0", "-dest",destDir.getAbsolutePath(), "-src",destDir.getAbsolutePath(), "-bin",binDir.getAbsolutePath(), }; performDirectCodeGen(testArgs1, binDir); String genPath = destDir.getAbsolutePath() + "/gen-meta-src/META-INF/soa/services/wsdl/HelloWorldService/HelloWorldService.wsdl"; String goldPath = getTestResrcDir() + "/HelloWorldIntf/gen-meta-src/META-INF/soa/services/wsdl/HelloWorldService/HelloWorldService.wsdl"; assertFileExists(genPath); assertXML(goldPath, genPath, null); } }