Package org.jboss.test.ws.tools.xsdjava

Source Code of org.jboss.test.ws.tools.xsdjava.ComplexTypesTestCase

/*
  * JBoss, Home of Professional Open Source
  * Copyright 2005, JBoss Inc., and individual contributors as indicated
  * by the @authors tag. See the copyright.txt in the distribution for a
  * full listing of individual contributors.
  *
  * This is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * This software is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this software; if not, write to the Free
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
package org.jboss.test.ws.tools.xsdjava;

import java.io.File;

import org.jboss.test.ws.tools.WSToolsTest;
import org.jboss.test.ws.tools.fixture.JBossSourceComparator;
import org.jboss.ws.core.jaxrpc.LiteralTypeMapping;
import org.jboss.ws.tools.XSDToJava;
import org.jboss.ws.tools.interfaces.XSDToJavaIntf;

/** Testcase that generates XSD -> Java Types
*  Then uses the JBossSourceComparator to check the
*  Java Types against the ones generated by wscompile
*  [JBWS-147] XSDSchema to Java comprehensive test collection
@author <mailto:Anil.Saldhana@jboss.org>Anil Saldhana
@since  Mar 10, 2005
*/
public class ComplexTypesTestCase extends WSToolsTest
{
   protected String genPath = "tools/xsd-java-checker/jbossws/complextypes";
  
   /**
    * Tests a Complex Type that contains only elements (Xerces Version)
    * @throws Exception
    */
   public void testXSComplexType_ElementsOnlyTestCase() throws Exception
   {
      String filename = "ComplexType_ElementsOnly.xsd";
      String packagename = "org.jboss.ws.types";
      String schemaFile = "resources/tools/xsd/complextypes/ComplexType_ElementsOnly.xsd";

      this.mkdirs(genPath);
      File dir = new File(genPath);
      generateJavaSource(schemaFile, dir, packagename, true);

      //Compare the generated Java type against the one generated by wscompile
      String fname = "USAddress.java";
      String base = "resources/tools/xsd-java-checker";
      File file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
      File file1 = new File(base + "/wscompile/complextypes/" + fname);
      JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Mismatch", sc.validate());
      sc.validateImports();

      //Compare the generated Java type against the one generated by wscompile
      fname = "Country.java";
      base = "resources/tools/xsd-java-checker";
      file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
      file1 = new File(base + "/wscompile/complextypes/" + fname);
      sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Mismatch", sc.validate());
      sc.validateImports();
   }


   /**
    * Tests a Complex Type can be composed of elements and xsd:attributes
    * @throws Exception
    */
   public void testXSComplexType_ElementsAttribTestCase() throws Exception
   {
      String filename = "ComplexType_ElementsAttrib.xsd";
      String packagename = "org.jboss.ws.types";
      String schemaFile = "resources/tools/xsd/complextypes/ComplexType_ElementsAttrib.xsd";

      this.mkdirs(genPath);
      File dir = new File(genPath);
      generateJavaSource(schemaFile, dir, packagename, true);

      //Compare the generated Java type against the one generated by wscompile
      String fname = "Address.java";
      String base = "resources/tools/xsd-java-checker";
      File file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
      File file1 = new File(base + "/wscompile/complextypes/" + fname);
      JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Match:", sc.validate());
      sc.validateImports();
   }


   /**
    * Tests Complex Type derived from Simple Type (with simplecontent)
    * @throws Exception
    */
   public void testXSComplexType_FromSimpleType() throws Exception
   {
      String filename = "resources/tools/xsd/complextypes/ComplexTypeFromSimpleType.xsd";
      String packagename = "org.jboss.ws.types";

      this.mkdirs(genPath);
      File dir = new File(genPath);
      generateJavaSource(filename, dir, packagename, true);

      //Compare the generated Java type against the one generated by wscompile
      String fname = "GlobalPrice.java";
      String base = "resources/tools/xsd-java-checker";
      File file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
      File file1 = new File(base + "/wscompile/complextypes/" + fname);
      JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Match:", sc.validate());
      sc.validateImports();
   }


   /**
    * Tests Complex Type with empty content (with simplecontent)
    * @throws Exception
    */
   public void testXSComplexType_EmptyContent() throws Exception
   {
      String filename = "resources/tools/xsd/complextypes/CT_EmptyContent.xsd";
      String packagename = "org.jboss.ws.types";

      this.mkdirs(genPath);
      File dir = new File(genPath);
      generateJavaSource(filename, dir, packagename, true);

      //Compare the generated Java type against the one generated by wscompile
      String fname = "Price.java";
      String base = "resources/tools/xsd-java-checker";
      File file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
      File file1 = new File(base + "/wscompile/complextypes/emptycontent/" + fname);
      JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Match:", sc.validate());
      sc.validateImports();
   }

   /**
    * Tests Complex Type with Occurrence Indicator
    * @throws Exception
    */
   public void testXSComplexTypeOccurrence() throws Exception
   {
      String filename = "resources/tools/xsd/complextypes/ComplexTypesOccurence.xsd";
      String packagename = "org.jboss.ws.types";

      this.mkdirs(genPath);
      File dir = new File(genPath + "/occurrence");
      generateJavaSource(filename, dir, packagename, true);

      //Compare the generated Java type against the one generated by wscompile
      String fname = "President.java";
      String base = "resources/tools/xsd-java-checker";
      File file2 = new File(genPath + "/occurrence/org/jboss/ws/types/" + fname);
      File file1 = new File(base + "/wscompile/complextypes/occurrence/" + fname);
      JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Match:", sc.validate());
      sc.validateImports();
   }


   /**
    * Tests Complex Type with Inheritance
    * @throws Exception
    */
   public void testXSComplexType_Inheritance() throws Exception
   {
      String filename = "resources/tools/xsd/complextypes/CT_ExtensionRestriction.xsd";
      String packagename = "org.jboss.ws.types";

      this.mkdirs(genPath);
      File dir = new File(genPath);
      generateJavaSource(filename, dir, packagename, true);

      //Compare the generated Java type against the one generated by wscompile
      String fname = "AwardEmployee.java";
      String base = "resources/tools/xsd-java-checker";
      File file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
      File file1 = new File(base + "/wscompile/complextypes/inheritance/" + fname);
      JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Match:", sc.validate());
      sc.validateImports();

      //Compare the generated Java type against the one generated by wscompile
      fname = "Employee.java";
      file2 = new File(genPath + "/org/jboss/ws/types/" + fname);
      file1 = new File(base + "/wscompile/complextypes/inheritance/" + fname);
      sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Match:", sc.validate());
      sc.validateImports();
   }


   /**
    * Tests Complex Type with sequence groups [Element Groups and Attribute Groups]
    * @throws Exception
    */
   public void testXSComplexType_SequenceGroups() throws Exception
   {
      /**
       * wscompile does not support element groups
       */
      String filename = "resources/tools/xsd/complextypes/CT_SequenceGroups.xsd";
      //This testcase will pass because wscompile does not support xsd:group
      String packagename = "org.jboss.ws.types";

      this.mkdirs(genPath + "/groups");
      File dir = new File(genPath + "/groups");
      generateJavaSource(filename, dir, packagename, true);

      //Compare the generated Java type against the one generated by wscompile
      String fname = "Teacher.java";
      String base = "resources/tools/xsd-java-checker";
      File file2 = new File(genPath + "/groups" + "/org/jboss/ws/types/" + fname);
      File file1 = new File(base + "/wscompile/complextypes/groups/" + fname);
      JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
      assertTrue("Source Files Match:", sc.validate());
      sc.validateImports();
   }
  
   private void generateJavaSource( String filename, File dir, String packageName,
         boolean createPackageDir) throws Exception
   {
      XSDToJavaIntf xsdJava = new XSDToJava();
      xsdJava.setTypeMapping(new LiteralTypeMapping());
      xsdJava.generateJavaSource(filename, dir, packageName, createPackageDir);
   }
}
TOP

Related Classes of org.jboss.test.ws.tools.xsdjava.ComplexTypesTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.