Package org.apache.torque

Source Code of org.apache.torque.ManagerTestConditional

package org.apache.torque;

/*
* 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 org.apache.torque.test.dbobject.Author;
import org.apache.torque.test.dbobject.Book;
import org.apache.torque.test.dbobject.IfcTable;
import org.apache.torque.test.manager.AuthorManager;
import org.apache.torque.test.manager.BookManager;
import org.apache.torque.test.manager.TestInterfaceManager;

/**
* Runtime tests for managers and caching.
*
* @author <a href="mailto:tv@apache.org">Thomas Vandahl</a>
* @version $Id: ManagerTestConditional.java 1395238 2012-10-07 07:30:25Z tfischer $
*/
public class ManagerTestConditional extends BaseDatabaseTestCase
{
    /**
     * Tests whether managers and caching work
     * @throws Exception if the test fails
     */
    public void testManagers() throws Exception
    {
        cleanBookstore();
        AuthorManager.getManager().setRegion("om_Author");
        BookManager.getManager().setRegion("om_Book");

        Author author1 = new Author();
        author1.setName("author1");
        author1.save();
        Author author2 = new Author();
        author2.setName("author2");
        author2.save();

        Author myauthor = AuthorManager.getCachedInstance(author1.getPrimaryKey());
        assertNotNull("Primary key of Author1 should not be null", author1.getPrimaryKey());
        assertNotNull("MyAuthor should not be null", myauthor);
        assertTrue("Author1 and MyAuthor should point to the same cache instance", author1 == myauthor);

        Book book = new Book();
        book.setAuthor(author1);
        book.setTitle("Book 1");
        book.setIsbn("unknown");
        book.save();

        Book mybook = BookManager.getInstance(book.getPrimaryKey());
        assertTrue("Author1 and the author of MyBook should point to the same cache instance", author1 == mybook.getAuthor());
    }

    /**
     * Tests whether managers return the right interface
     * @throws Exception if the test fails
     */
    public void testInterfaces() throws Exception
    {
        TestInterface ifc = TestInterfaceManager.getInstance();

        assertTrue("TestInterfaceManager should create instances of TestInterface", ifc instanceof TestInterface);
        assertTrue("TestInterfaceManager should also create instances of IfcTable", ifc instanceof IfcTable);
    }
}
TOP

Related Classes of org.apache.torque.ManagerTestConditional

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.