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 WebXMLTest extends AbstractServiceGeneratorTestCase {
/**
* @param name
*/
public WebXMLTest(){}
File destDir = null;
File prDir = null;
File binDir = null;
@Before
public void init() throws Exception{
testingdir.ensureEmpty();
destDir = testingdir.getDir();
binDir = testingdir.getFile("bin");
createPropertyFile(destDir.getAbsolutePath(),"service_impl_project.properties");
}
/**
* @throws Exception
* @check Exceptions need to be handled
*/
@Test
public void webXML() throws Exception {
String testArgs1[] = new String[] {
"-genType","WebXml",
"-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-web-content/WEB-INF/web.xml";
String goldPath = getTestResrcDir() + "/HelloWorldIntf/gen-meta-src/WEB-INF/web.xml";
assertFileExists(genPath);
Assert.assertTrue(compareTwoFiles(genPath, goldPath));
}
}