Package org.jboss.test.metatype

Source Code of org.jboss.test.metatype.AbstractMetaTypeTest

/*
* JBoss, Home of Professional Open Source
* Copyright 2006, 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.metatype;

import java.util.HashMap;
import java.util.Map;

import org.jboss.metatype.api.types.ArrayMetaType;
import org.jboss.metatype.api.types.CompositeMetaType;
import org.jboss.metatype.api.types.ImmutableCompositeMetaType;
import org.jboss.metatype.api.types.MetaType;
import org.jboss.metatype.api.types.SimpleMetaType;
import org.jboss.metatype.api.types.TableMetaType;
import org.jboss.metatype.api.types.CollectionMetaType;
import org.jboss.metatype.api.values.MetaValue;
import org.jboss.metatype.api.values.SimpleValue;
import org.jboss.metatype.api.values.SimpleValueSupport;
import org.jboss.test.BaseTestCase;

/**
* AbstractMetaTypeTest.
*
* @author <a href="adrian@jboss.com">Adrian Brock</a>
* @version $Revision: 1.1 $
*/
public abstract class AbstractMetaTypeTest extends BaseTestCase
{
   /**
    * Create a new AbstractMetaTypeTest.
    *
    * @param name the test name
    */
   public AbstractMetaTypeTest(String name)
   {
      super(name);
   }

   /**
    * Initialise string value 1
    *
    * @return the value
    */
   protected SimpleValue initStringValue1()
   {
      return SimpleValueSupport.wrap("value1");
   }

   /**
    * Initialise string value 2
    *
    * @return the value
    */
   protected SimpleValue initStringValue2()
   {
      return SimpleValueSupport.wrap("value2");
   }

   /**
    * Initialise string name 1
    *
    * @return the name
    */
   protected SimpleValue initStringName1()
   {
      return SimpleValueSupport.wrap("name1");
   }

   /**
    * Initialise the empty string
    *
    * @return the empty string
    */
   protected SimpleValue initStringEmpty()
   {
      return SimpleValueSupport.wrap("");
   }

   /**
    * Initialise the null string
    *
    * @return the null string
    */
   protected SimpleValue initStringNull()
   {
      return new SimpleValueSupport(SimpleMetaType.STRING, null);
   }

   /**
    * Initialise the wrong string
    *
    * @return the wrong string
    */
   protected SimpleValue initStringWrong()
   {
      return SimpleValueSupport.wrap("wrong");
   }

   /**
    * Initialise the integer 2
    *
    * @return the value
    */
   protected SimpleValue initInteger2()
   {
      return SimpleValueSupport.wrap(new Integer(2));
   }

   /**
    * Initialise the integer 3
    *
    * @return the value
    */
   protected SimpleValue initInteger3()
   {
      return SimpleValueSupport.wrap(new Integer(3));
   }

   /**
    * Initialise the integer 4
    *
    * @return the value
    */
   protected SimpleValue initInteger4()
   {
      return SimpleValueSupport.wrap(new Integer(4));
   }

   /**
    * Initialise the null integer
    *
    * @return the value
    */
   protected SimpleValue initIntegerNull()
   {
      return new SimpleValueSupport(SimpleMetaType.INTEGER, null);
   }

   /**
    * Initialise map values
    *
    * @return the value
    */
   protected Map<String, MetaValue> initMapValues()
   {
      Map<String, MetaValue> map = new HashMap<String, MetaValue>();
      map.put("name1", initStringValue1());
      map.put("name2", initInteger2());
      return map;
   }

   /**
    * Initialise map values 2
    *
    * @return the value
    */
   protected Map<String, MetaValue> initMapValues2()
   {
      Map<String, MetaValue> map = new HashMap<String, MetaValue>();
      map.put("name1", initStringValue1());
      map.put("name2", initInteger3());
      return map;
   }

   /**
    * Initialise map values 3
    *
    * @return the value
    */
   protected Map<String, MetaValue> initMapValues3()
   {
      Map<String, MetaValue> map = new HashMap<String, MetaValue>();
      map.put("name1", initStringValue2());
      map.put("name2", initInteger3());
      return map;
   }

   /**
    * Initialise map values 4
    *
    * @return the value
    */
   protected Map<String, MetaValue> initMapValues4()
   {
      Map<String, MetaValue> map = new HashMap<String, MetaValue>();
      map.put("name1", initStringValue1());
      map.put("name2", initInteger4());
      return map;
   }
  
   /**
    * Initialise map keys
    *
    * @return the keys
    */
   protected String[] initKeys()
   {
      return new String[] { "name1", "name2" };
   }

   /**
    * Initialise map values
    *
    * @return the values
    */
   protected MetaValue[] initValues()
   {
      return new MetaValue[] { initStringValue1(), initInteger2() };
   }

   /**
    * Initialise map values 2
    *
    * @return the values
    */
   protected MetaValue[] initValues2()
   {
      return new MetaValue[] { initStringValue1(), initInteger3() };
   }

   /**
    * Initialise map values 4
    *
    * @return the values
    */
   protected MetaValue[] initValues4()
   {
      return new MetaValue[] { initStringValue1(), initInteger4() };
   }

   /**
    * Initialise a composite meta type
    *
    * @return the type
    */
   protected CompositeMetaType initCompositeMetaType()
   {
      String[] itemNames = new String[] { "name1", "name2" };
      String[] itemDescriptions = new String[] { "desc1", "desc2" };
      MetaType[] itemTypes = new MetaType[] { SimpleMetaType.STRING, SimpleMetaType.INTEGER };
      CompositeMetaType compositeMetaType = new ImmutableCompositeMetaType("typeName", "description", itemNames, itemDescriptions, itemTypes);
      return compositeMetaType;
   }

   /**
    * Initialise a composite meta type 2
    *
    * @return the type
    */
   protected CompositeMetaType initCompositeMetaType2()
   {
      String[] itemNames = new String[] { "name1", "name2" };
      String[] itemDescriptions = new String[] { "desc1", "desc2" };
      MetaType[] itemTypes = new MetaType[] { SimpleMetaType.STRING, SimpleMetaType.INTEGER };
      CompositeMetaType compositeMetaType = new ImmutableCompositeMetaType("typeName2", "description", itemNames, itemDescriptions, itemTypes);
      return compositeMetaType;
   }

   /**
    * Print a composite type
    *
    * @param context the context
    * @param type the type
    */
   protected void printComposite(String context, CompositeMetaType type)
   {
      getLog().debug(context + " className=" + type.getClassName() + " typeName=" + type.getTypeName() + " description=" + type.getDescription() + " keys=" + type.keySet() + " items=" + type.itemSet());
   }

   /**
    * Test an array type
    *
    * @param expected the expected
    * @param actual the actual
    * @throws Exception for any problem
    */
   protected void testArray(ArrayMetaType expected, ArrayMetaType actual) throws Exception
   {
      getLog().debug("Array MetaType: className=" + actual.getClassName() + " typeName=" + actual.getTypeName() + " description=" + actual.getDescription() + " dim=" + actual.getDimension());
      assertEquals(expected, actual);
   }

   /**
    * Test an array type
    *
    * @param expected the expected
    * @param actual the actual
    * @throws Exception for any problem
    */
   protected void testCollection(CollectionMetaType expected, CollectionMetaType actual) throws Exception
   {
      getLog().debug("Collection MetaType: className=" + actual.getClassName() + " typeName=" + actual.getTypeName() + " description=" + actual.getDescription());
      assertEquals(expected, actual);
   }

   /**
    * Test a table type
    *
    * @param expected the expected
    * @param actual the actual
    * @throws Exception for any problem
    */
   protected void testTable(TableMetaType expected, TableMetaType actual) throws Exception
   {
      getLog().debug("Table MetaType: className=" + actual.getClassName() + " typeName=" + actual.getTypeName() + " description=" + actual.getDescription() + " index=" + actual.getIndexNames() + " row=" + actual.getRowType());
      assertEquals(expected, actual);
   }

   /**
    * Test a composite type
    *
    * @param expected the expected
    * @param actual the actual
    * @throws Exception for any problem
    */
   protected void testComposite(CompositeMetaType expected, CompositeMetaType actual) throws Exception
   {
      printComposite("Composite MetaType", actual);
      assertEquals(expected, actual);
   }
}
TOP

Related Classes of org.jboss.test.metatype.AbstractMetaTypeTest

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.