Package org.apache.torque.om

Source Code of org.apache.torque.om.OMByNameMethodsTest

package org.apache.torque.om;

/*
* 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.
*/

import java.math.BigDecimal;
import java.util.Date;

import org.apache.torque.BaseDatabaseTestCase;
import org.apache.torque.Column;
import org.apache.torque.TorqueException;
import org.apache.torque.test.dbobject.TypesObject;
import org.apache.torque.test.dbobject.TypesPrimitive;
import org.apache.torque.test.peer.TypesObjectPeer;
import org.apache.torque.test.peer.TypesPrimitivePeer;

/**
* Test the various setBy and getBy methods that can be used to access field
* values.
* <p>
* Depends on names and ordering in the following tables to match the static
* fields defined in this class:
* <P>
*
* TypesObject table - which contain column definitions for all (AFAIK) Torque
* supported column types that use Java Objects for storage. E.g. Integer and
* not int.
* <P>
*
* TypesPrimitive table - which is the same as TypesObjects except that it uses
* primitive types for storage.
* <p>
*
* InheritanceTest table - which contains a protected field.
* <P>
*
* @author <a href="mailto:greg.monroe@dukece.com>Greg Monroe</a>
* @version $Id
*/
public class OMByNameMethodsTest extends BaseDatabaseTestCase
{
    public static final String PROTECTED_COLUMN_NAME = "PayLoadB";

    public static final String PROTECTED_COLUMN_PEER_NAME =
        "INHERITANCE_TEST.PAYLOAD_B";

    public static final String PROTECTED_COLUMN_TABLE = "INHERITANCE_TEST";

    public static final int PROTECTED_COLUMN_POSITION = 3;

    public static final Object[] OBJECT_TEST_VALUES =
    {
            new Boolean(true), // "OBit",
            new Byte((byte) 1), // "OTinyint",
            new Short((short) 1), // "OSmallint",
            new Long((long) 1.0), // "OBigint",
            new Double(1.0), // "OFloat",
            new Float(1.0), // "OReal",
            new BigDecimal(1.0), // "ONumeric",
            new BigDecimal(1.0), // "ODecimal",
            "OChar_TEST_VALUE", // "OChar",
            "OVarchar_TEST_VALUE", // "OVarchar",
            "OLongvarchar_TEST_VALUE", // "OLongvarchar",
            new Date(1000000000l), // "ODate",
            new Date(1000000000l), // "OTime",
            new Integer(1), // "OInteger",
            new Date(1000000000l), // "OTimestamp",
            new byte[]
            {
                    1, 1, 1
            }, // "OBinary",
            new byte[]
            {
                    1, 1, 1
            }, // "OVarbinary",
            new byte[]
            {
                    1, 1, 1
            }, // "OLongvarbinary",
            new byte[]
            {
                    1, 1, 1
            }, // "OBlob",
            "OClob_TEST_VALUE", // "OClob",
            new Boolean(true), // "OBooleanint",
            new Boolean(true), // "OBooleanchar",
            new Double(1.0)
    // "ODouble"
    };

    public static final String[] OBJECT_COLUMN_NAMES =
    {
            "OBit", "OTinyint", "OSmallint", "OBigint", "OFloat", "OReal",
            "ONumeric", "ODecimal", "OChar", "OVarchar", "OLongvarchar",
            "ODate", "OTime", "OInteger", "OTimestamp", "OBinary",
            "OVarbinary", "OLongvarbinary", "OBlob", "OClob", "OBooleanint",
            "OBooleanchar", "ODouble"
    };

    public static final String[] PRIMITIVE_COLUMN_NAMES =
    {
            "PBit", // boolean
            "PTinyint", // byte
            "PSmallint", // short
            "PBigint", // long
            "PFloat", // double
            "PReal", // float
            // "PNumeric", //BigDecimal - Skipped because same as Object
            // "PDecimal", //BigDecimal - Skipped because same as Object
            // "PChar", //String - Skipped because same as Object
            // "PVarchar", //String - Skipped because same as Object
            // "PLongvarchar", //String - Skipped because same as Object
            // "PDate", //Date - Skipped because same as Object
            // "PTime", //Date - Skipped because same as Object
            "PInteger", // int
            // "PTimestamp", //Date - Skipped because same as Object
            // "PBinary", //byte[] - Skipped because same as Object
            // "PVarbinary", //byte[] - Skipped because same as Object
            // "PLongvarbinary", //byte[] - Skipped because same as Object
            // "PBlob", //byte[] - Skipped because same as Object
            // "PClob", //String - Skipped because same as Object
            "PBooleanint", // boolean
            "PBooleanchar", // boolean
            "PDouble" // double
    };

    public static final Object[] PRIMITIVE_TEST_VALUES =
    {
            new Boolean(true), // "PBit",
            new Byte((byte) 1), // "PTinyint",
            new Short((short) 1), // "PSmallint",
            new Long((long) 1.0), // "PBigint",
            new Double(1.0), // "PFloat",
            new Float(1.0), // "PReal",
            new Integer(1), // "PInteger",
            new Boolean(true), // "PBooleanint",
            new Boolean(true), // "PBooleanchar",
            new Double(1.0)    //" PDouble"
    };

    public static final Column[] OBJECT_PEER_NAMES =
    {
        TypesObjectPeer.O_BIT,
        TypesObjectPeer.O_TINYINT,
        TypesObjectPeer.O_SMALLINT,
        TypesObjectPeer.O_BIGINT,
        TypesObjectPeer.O_FLOAT,
        TypesObjectPeer.O_REAL,
        TypesObjectPeer.O_NUMERIC,
        TypesObjectPeer.O_DECIMAL,
        TypesObjectPeer.O_CHAR,
        TypesObjectPeer.O_VARCHAR,
        TypesObjectPeer.O_LONGVARCHAR,
        TypesObjectPeer.O_DATE,
        TypesObjectPeer.O_TIME,
        TypesObjectPeer.O_INTEGER,
        TypesObjectPeer.O_TIMESTAMP,
        TypesObjectPeer.O_BINARY,
        TypesObjectPeer.O_VARBINARY,
        TypesObjectPeer.O_LONGVARBINARY,
        TypesObjectPeer.O_BLOB,
        TypesObjectPeer.O_CLOB,
        TypesObjectPeer.O_BOOLEANINT,
        TypesObjectPeer.O_BOOLEANCHAR,
        TypesObjectPeer.O_DOUBLE
    };

    public static final Column[] PRIMITIVE_PEER_NAMES =
    {
        TypesPrimitivePeer.P_BIT,
        TypesPrimitivePeer.P_TINYINT,
        TypesPrimitivePeer.P_SMALLINT,
        TypesPrimitivePeer.P_BIGINT,
        TypesPrimitivePeer.P_FLOAT,
        TypesPrimitivePeer.P_REAL,
        TypesPrimitivePeer.P_NUMERIC,
        TypesPrimitivePeer.P_DECIMAL,
        TypesPrimitivePeer.P_CHAR,
        TypesPrimitivePeer.P_VARCHAR,
        TypesPrimitivePeer.P_LONGVARCHAR,
        TypesPrimitivePeer.P_DATE,
        TypesPrimitivePeer.P_TIME,
        TypesPrimitivePeer.P_INTEGER,
        TypesPrimitivePeer.P_TIMESTAMP,
        TypesPrimitivePeer.P_BINARY,
        TypesPrimitivePeer.P_VARBINARY,
        TypesPrimitivePeer.P_LONGVARBINARY,
        TypesPrimitivePeer.P_BLOB,
        TypesPrimitivePeer.P_CLOB,
        TypesPrimitivePeer.P_BOOLEANINT,
        TypesPrimitivePeer.P_BOOLEANCHAR,
        TypesPrimitivePeer.P_DOUBLE
    };

    /*
     * Validate that the setByName methods work using a BaseObject class type.
     * Checks the setValue against the value returned by the get<FieldName>()
     * methods for all known object and primitive types.
     */
    public void testSetByNameMethod() throws Exception
    {

        // Testing SetByName method for Object Types
        ColumnAccessByName objectTypes = new TypesObject();
        try
        {
            for (int i = 0; i < OBJECT_COLUMN_NAMES.length; i++)
            {
                boolean status = objectTypes.setByName(OBJECT_COLUMN_NAMES[i],
                        OBJECT_TEST_VALUES[i]);
                assertTrue("setByName returned false setting column "
                        + OBJECT_COLUMN_NAMES[i], status);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesObject.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        String eMsg = "Did not get expected value for object column: ";
        int iValue = 0;
        // "OBit",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOBit()));
        // "OTinyint",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOTinyint()));
        // "OSmallint",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOSmallint()));
        // "OBigint",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOBigint()));
        // "OFloat",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOFloat()));
        // "OReal",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOReal()));
        // "ONumeric",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getONumeric()));
        // "ODecimal",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getODecimal()));
        // "OChar",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOChar()));
        // "OVarchar",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOVarchar()));
        // "OLongvarchar",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOLongvarchar()));
        // "ODate",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getODate()));
        // "OTime",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOTime()));
        // "OInteger",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOInteger()));
        // "OTimestamp",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOTimestamp()));
        // "OBinary",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOBinary()));
        // "OVarbinary",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOVarbinary()));
        // "OLongvarbinary",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOLongvarbinary()));
        // "OBlob",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOBlob()));
        // "OClob",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOClob()));
        // "OBooleanint",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOBooleanint()));
        // "OBooleanchar",
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getOBooleanchar()));
        // "ODouble"
        assertTrue(eMsg + OBJECT_COLUMN_NAMES[iValue],
                OBJECT_TEST_VALUES[iValue++].equals(((TypesObject) objectTypes)
                        .getODouble()));
        // Test Primitive Types
        ColumnAccessByName primitiveTypes = new TypesPrimitive();
        try
        {
            for (int i = 0; i < PRIMITIVE_COLUMN_NAMES.length; i++)
            {
                boolean status = primitiveTypes.setByName(
                        PRIMITIVE_COLUMN_NAMES[i], PRIMITIVE_TEST_VALUES[i]);
                assertTrue("setByName returned false setting column "
                        + PRIMITIVE_COLUMN_NAMES[i], status);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesObject.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        eMsg = "Did not get expected value for primitive column: ";
        // "PBit", true, //boolean
        assertTrue(eMsg + "PBit",
                ((TypesPrimitive) primitiveTypes).getPBit() == true);
        // "PTinyint", (byte) 1 //byte
        assertTrue(eMsg + "PTinyint", ((TypesPrimitive) primitiveTypes)
                .getPTinyint() == (byte) 1);
        // "PSmallint", (short) 1 //short
        assertTrue(eMsg + "PSmallint", ((TypesPrimitive) primitiveTypes)
                .getPSmallint() == (short) 1);
        // "PBigint", (long) 1.0 //long
        assertTrue(eMsg + "PBigint", ((TypesPrimitive) primitiveTypes)
                .getPBigint() == (long) 1.0);
        // "PFloat", 1.0 //double
        assertTrue(eMsg + "PFloat", ((TypesPrimitive) primitiveTypes)
                .getPFloat() == 1.0);
        // "PReal", 1.0 //float
        assertTrue(eMsg + "PReal",
                ((TypesPrimitive) primitiveTypes).getPReal() == 1.0);
        // "PInteger", 1 //int
        assertTrue(eMsg + "PInteger", ((TypesPrimitive) primitiveTypes)
                .getPInteger() == 1);
        // "PBooleanint", true, //boolean
        assertTrue(eMsg + "PBooleanint", ((TypesPrimitive) primitiveTypes)
                .getPBooleanint() == true);
        // "PBooleanchar", true, //boolean
        assertTrue(eMsg + "PBooleanchar", ((TypesPrimitive) primitiveTypes)
                .getPBooleanchar() == true);
        // "PDouble" 1.0 //double
        assertTrue(eMsg + "PDouble", ((TypesPrimitive) primitiveTypes)
                .getPDouble() == 1.0);
    }

    /*
     * Validate that the getBy* methods work using a BaseObject class type.
     * Checks that getValue returns the value set with a setBy call for all
     * known object and primitive types.
     *
     * @throws Exception
     */
    public void testGetByNameMethod() throws Exception
    {
        // Testing GetByName method for Object Types
        ColumnAccessByName objectTypes = new TypesObject();
        try
        {
            for (int i = 0; i < OBJECT_COLUMN_NAMES.length; i++)
            {
                objectTypes.setByName(OBJECT_COLUMN_NAMES[i],
                        OBJECT_TEST_VALUES[i]);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesObject.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        String eMsg = "Did not get expected value for object column: ";
        for (int i = 0; i < OBJECT_COLUMN_NAMES.length; i++)
        {
            assertTrue(eMsg + OBJECT_COLUMN_NAMES[i], OBJECT_TEST_VALUES[i]
                    .equals(objectTypes.getByName(OBJECT_COLUMN_NAMES[i])));
        }

        // Test Primative Types
        ColumnAccessByName primitiveTypes = new TypesPrimitive();
        try
        {
            for (int i = 0; i < PRIMITIVE_COLUMN_NAMES.length; i++)
            {
                primitiveTypes.setByName(PRIMITIVE_COLUMN_NAMES[i],
                        PRIMITIVE_TEST_VALUES[i]);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesObject.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        for (int i = 0; i < PRIMITIVE_COLUMN_NAMES.length; i++)
        {
            assertTrue(eMsg + PRIMITIVE_COLUMN_NAMES[i],
                  PRIMITIVE_TEST_VALUES[i].equals(
                  primitiveTypes.getByName(PRIMITIVE_COLUMN_NAMES[i])));
        }
    }

    /*
     * Validate that the setByPeerName methods work using a BaseObject class type.
     * Checks that getValue returns the value set with a setByPeerName call for all
     * known object and primitive types.
     */
    public void testSetByPeerNameMethod() throws Exception
    {
        // Testing GetByName method for Object Types
        ColumnAccessByName objectTypes = new TypesObject();
        try
        {
            for (int i = 0; i < OBJECT_PEER_NAMES.length; i++)
            {
                boolean status = objectTypes.setByPeerName(
                        OBJECT_PEER_NAMES[i].getSqlExpression(),
                        OBJECT_TEST_VALUES[i]);
                assertTrue("setByPeerName returned false setting column "
                        + OBJECT_PEER_NAMES[i], status);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesObject.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        String eMsg = "Did not get expected value for object column: ";
        for (int i = 0; i < OBJECT_COLUMN_NAMES.length; i++)
        {
            assertTrue(eMsg + OBJECT_COLUMN_NAMES[i], OBJECT_TEST_VALUES[i]
                    .equals(objectTypes.getByName(OBJECT_COLUMN_NAMES[i])));
        }

        // Test Primitive Types
        ColumnAccessByName primitiveTypes = new TypesPrimitive();
        try
        {
            for (int i = 0; i < PRIMITIVE_PEER_NAMES.length; i++)
            {
                boolean status = primitiveTypes.setByPeerName(
                        PRIMITIVE_PEER_NAMES[i].getSqlExpression(),
                        OBJECT_TEST_VALUES[i]);
                assertTrue("setByPeerName returned false setting column "
                        + PRIMITIVE_PEER_NAMES[i], status);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesObject.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        for (int i = 0; i < PRIMITIVE_COLUMN_NAMES.length; i++)
        {
            assertTrue(eMsg + PRIMITIVE_COLUMN_NAMES[i],
                           PRIMITIVE_TEST_VALUES[i].equals(
                           primitiveTypes.getByName(PRIMITIVE_COLUMN_NAMES[i])));
        }
    }

    /*
     * Validate that the setByPostion methods work using a BaseObject class type.
     * Checks that getByPosition returns the value set with a setByPosition call
     * for all known object and primitive types.
     */
    public void testSetByPositionMethod() throws Exception
    {
        // Testing GetByName method for Object Types
        ColumnAccessByName objectTypes = new TypesObject();
        try
        {
            for (int i = 0; i < OBJECT_PEER_NAMES.length; i++)
            {
                boolean status = objectTypes.setByPosition(i + 1,
                        OBJECT_TEST_VALUES[i]);
                assertTrue("objectTypes.setByPosition(int, Object ) returned "
                                + "false setting position " + (i + 1), status);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesObject.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        String eMsg = "Did not get expected value for object column: ";
        for (int i = 0; i < OBJECT_COLUMN_NAMES.length; i++)
        {
            assertTrue(eMsg + OBJECT_COLUMN_NAMES[i], OBJECT_TEST_VALUES[i]
                    .equals(objectTypes.getByName(OBJECT_COLUMN_NAMES[i])));
        }

        // Test Primitive Types
        ColumnAccessByName primitiveTypes = new TypesPrimitive();
        try
        {
            for (int i = 0; i < PRIMITIVE_PEER_NAMES.length; i++)
            {
                boolean status = primitiveTypes.setByPosition(i + 1,
                        OBJECT_TEST_VALUES[i]);
                assertTrue("primitiveTypes.setByPosition(int, Object) returned "
                                + "false setting position " + (i + 1), status);
            }
        }
        catch (TorqueException e)
        {
            fail("Exception caught trying to call TypesPrimitive.setByName() "
                 + "method!\nWas OM generated with torque.addGetByNameMethod "
                 + "property = true?\nError message was: '" + e.getMessage()
                 + "'");
        }
        for (int i = 0; i < PRIMITIVE_COLUMN_NAMES.length; i++)
        {
            assertTrue(eMsg + PRIMITIVE_COLUMN_NAMES[i],
                  PRIMITIVE_TEST_VALUES[i].equals(
                  primitiveTypes.getByName(PRIMITIVE_COLUMN_NAMES[i])));
        }

    }

    /*
     * Validate that various an IllegalArgumentException if thrown if the
     * Object type of the value is not correct.
     */
    public void testInvalidObjectErrors() throws Exception
    {
        ColumnAccessByName objectTypes = new TypesObject();
        ColumnAccessByName primitiveTypes = new TypesPrimitive();
        // Test catching invalid object types
        boolean error = false;
        try
        {
            objectTypes.setByName("OBit", new Integer(1));
        }
        catch (IllegalArgumentException e)
        {
            error = true;
        }
        assertTrue(
                "setByName for OBit column did not catch illegal object type!",
                error);

        error = false;
        try
        {
            primitiveTypes.setByName("PBit", new Integer(99));
        }
        catch (IllegalArgumentException e)
        {
            error = true;
        }
        assertTrue(
                "setByName for PBit column did not catch illegal object type!",
                error);
    }

    /*
     * Validate that a false rc is returned if non-column names passed to methods.
     */
    public void testInvalidNameErrors() throws Exception
    {
        ColumnAccessByName objectTypes = new TypesObject();
        // Test that false status is returned for invalid column names.
        boolean status = objectTypes.setByName("xxxOBit", new Integer(1));
        assertFalse("Did not get a false status from setByName with "
                        + "invalid column name!", status);

        status = objectTypes.setByPeerName("xxxOBit", new Integer(1));
        assertFalse("Did not get a false status from setByPeerName with "
                        + "invalid column name!", status);

        status = objectTypes.setByPosition(1000, new Integer(1));
        assertFalse("Did not get a false status from setByPosition with "
                        + "invalid position!", status);
    }

    /**
     *  Verify that null handling (can't use them for primitives) works.
     */
    public void testNullHandling() throws Exception
    {
        ColumnAccessByName objectTypes = new TypesObject();
        ColumnAccessByName primitiveTypes = new TypesPrimitive();
        // Object type fields should allow nulls
        boolean error = false;
        try
        {
            objectTypes.setByName("OBit", null);
        }
        catch (IllegalArgumentException e)
        {
            error = true;
        }
        assertFalse("objectTypes.setByName(\"OBit\",null) did not allow "
                        "a null value!", error);

    // Primitive types should not allow null values
        error = false;
        try
        {
            primitiveTypes.setByName("PBit", null);
        }
        catch (IllegalArgumentException e)
        {
            error = true;
        }
        assertTrue("primitiveTypes.setByName(\"PBit\",null) allowed "
                        "a null value!", error);
    }
}
TOP

Related Classes of org.apache.torque.om.OMByNameMethodsTest

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.