Package ctf.jdo.tc7x

Source Code of ctf.jdo.tc7x.TestSortedContainer

package ctf.jdo.tc7x;

import harness.CastorTestCase;
import harness.TestHarness;

import java.util.Iterator;
import java.util.SortedSet;

import jdo.JDOCategory;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.exolab.castor.jdo.Database;
import org.exolab.castor.jdo.OQLQuery;
import org.exolab.castor.jdo.QueryResults;

/**
* Test for different collection types supported by Castor JDO.
* This test creates data objects that each has a collection as
* a field type.
*/
public final class TestSortedContainer extends CastorTestCase {
   
    private static final Log LOG = LogFactory.getLog(TestSortedContainer.class);

    private JDOCategory _category;

    public TestSortedContainer(final TestHarness category) {
        super(category, "TC72", "Test sorted collections");
        _category = (JDOCategory) category;
    }

    public void runTest() throws Exception {
        testQuerySortedCollection();
    }
   
    /**
     * Test method.
     * @throws Exception For any exception thrown.
     */
    public void testQuerySortedCollection() throws Exception {
        Database db = _category.getDatabase();
        db.begin();
       
        OQLQuery query = db.getOQLQuery("SELECT c FROM "
                + SortedContainer.class.getName() + " c WHERE id = $1");
        query.bind(new Integer(1));
        QueryResults results = query.execute();
       
        SortedContainer entity = null;
       
        entity = (SortedContainer) results.next();
        assertNotNull(entity);
        assertEquals(new Integer(1), entity.getId());
        assertNotNull (entity.getTwos());
        assertEquals(2, entity.getTwos().size());
        SortedSet twos = entity.getTwos();
        Iterator iterator = twos.iterator();
       
        SortedContainerItem two = null;
        int i = 1;
        while (iterator.hasNext()) {
            two = (SortedContainerItem) iterator.next();
            LOG.error(two);
            assertNotNull(two);
            assertEquals(new Integer(i), two.getId());
            i++;
        }

        db.commit();
        db.close();
    }
}
TOP

Related Classes of ctf.jdo.tc7x.TestSortedContainer

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.