Package org.apache.cayenne.dba

Source Code of org.apache.cayenne.dba.AutoAdapterTest

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

package org.apache.cayenne.dba;

import java.sql.DatabaseMetaData;
import java.sql.SQLException;

import org.apache.cayenne.access.jdbc.SQLTemplateAction;
import org.apache.cayenne.query.SQLTemplate;
import org.apache.cayenne.testdo.testmap.Artist;
import org.apache.cayenne.unit.CayenneCase;

import com.mockrunner.mock.jdbc.MockConnection;
import com.mockrunner.mock.jdbc.MockDataSource;

public class AutoAdapterTest extends CayenneCase {

    public void testAddFactory() {

        DbAdapterFactory mockFactory = new DbAdapterFactory() {

            public DbAdapter createAdapter(DatabaseMetaData md) throws SQLException {
                return null;
            }
        };
        AutoAdapter.addFactory(mockFactory);
        assertTrue(AutoAdapter.defaultFactories.contains(mockFactory));
        AutoAdapter.defaultFactories.remove(mockFactory);
    }

    public void testGetAdapter() {
        MockDbAdapter realAdapter = new MockDbAdapter();
        MockDbAdapterFactory factory = new MockDbAdapterFactory(realAdapter);

        MockDataSource dataSource = new MockDataSource();
        dataSource.setupConnection(new MockConnection());
        AutoAdapter adapter = new AutoAdapter(factory, dataSource);

        assertSame(realAdapter, adapter.getAdapter());
    }

    public void testGetDefaultAdapter() throws Exception {

        AutoAdapter adapter = new AutoAdapter(getNode().getDataSource());
        DbAdapter detected = adapter.getAdapter();

        assertNotNull(detected);
        assertEquals(getNode().getAdapter().getClass(), detected.getClass());
    }

    public void testCreateSQLTemplateAction() {

        AutoAdapter adapter = new AutoAdapter(getNode().getDataSource());
        SQLTemplateAction action = (SQLTemplateAction) adapter.getAction(new SQLTemplate(
                Artist.class,
                "select * from artist"), getNode());

        // it is important for SQLTemplateAction to be used with unwrapped adapter, as the
        // adapter class name is used as a key to the correct SQL template.
        assertNotNull(action);
        assertNotNull(action.getAdapter());
        assertFalse(action.getAdapter() instanceof AutoAdapter);
        assertSame(adapter.getAdapter(), action.getAdapter());
    }
}
TOP

Related Classes of org.apache.cayenne.dba.AutoAdapterTest

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.