/* * Copyright 2008, Unitils.org * * Licensed 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.unitils.dbmaintainer.clean.impl; import java.util.List; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.unitils.core.dbsupport.DbSupportFactory.PROPKEY_DATABASE_SCHEMA_NAMES; import static org.unitils.core.dbsupport.DbSupportFactory.getDbSupport; import static org.unitils.database.SQLUnitils.executeUpdate; import static org.unitils.database.SQLUnitils.executeUpdateQuietly; import static org.unitils.dbmaintainer.util.DatabaseModuleConfigUtils.PROPKEY_DATABASE_DIALECT; import java.util.Properties; import javax.sql.DataSource; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.hsqldb.Trigger; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.unitils.UnitilsJUnit4; import org.unitils.core.ConfigurationLoader; import org.unitils.core.dbsupport.DbSupport; import org.unitils.core.dbsupport.DefaultSQLHandler; import org.unitils.core.dbsupport.SQLHandler; import org.unitils.database.annotations.TestDataSource; import org.unitils.dbmaintainer.clean.DBClearer; import org.unitils.util.PropertyUtils; /** * Test class for the {@link DBClearer} using multiple database schemas. <p/> This test is currenlty only implemented * for HsqlDb * * @author Filip Neven * @author Tim Ducheyne */ public class DefaultDBClearerMultiSchemaTest extends UnitilsJUnit4 { /* The logger instance for this class */ private static Log logger = LogFactory.getLog(DefaultDBClearerMultiSchemaTest.class); /* DataSource for the test database, is injected */ @TestDataSource private DataSource dataSource = null; /* Tested object */ private DefaultDBClearer defaultDbClearer; /* The db support for the default PUBLIC schema */ private DbSupport dbSupportPublic; /* The db support for the SCHEMA_A schema */ private DbSupport dbSupportSchemaA; /* The db support for the SCHEMA_B schema */ private DbSupport dbSupportSchemaB; /* True if current test is not for the current dialect */ private boolean disabled; private String dialect; private List<String> schemas; /** * Configures the tested object. Creates a test table, index, view and sequence */ @Before public void setUp() throws Exception { Properties configuration = new ConfigurationLoader().loadConfiguration(); dialect = PropertyUtils.getString(PROPKEY_DATABASE_DIALECT, configuration); this.disabled = !"hsqldb".equals(dialect); if (disabled) { return; } // configure 3 schemas configuration.setProperty(PROPKEY_DATABASE_SCHEMA_NAMES, "PUBLIC, SCHEMA_A, SCHEMA_B"); SQLHandler sqlHandler = new DefaultSQLHandler(dataSource); dbSupportPublic = getDbSupport(configuration, sqlHandler, "PUBLIC", dialect); dbSupportSchemaA = getDbSupport(configuration, sqlHandler, "SCHEMA_A", dialect); dbSupportSchemaB = getDbSupport(configuration, sqlHandler, "SCHEMA_B", dialect); // create clearer instance defaultDbClearer = new DefaultDBClearer(); schemas = PropertyUtils.getStringList("database.schemaNames", configuration); defaultDbClearer.init(configuration, sqlHandler, dialect, schemas); dropTestDatabase(); createTestDatabase(); } /** * Removes all test tables. */ @After public void tearDown() throws Exception { if (disabled) { return; } dropTestDatabase(); } /** * Checks if the tables are correctly dropped. */ @Test public void testClearDatabase_tables() throws Exception { if (disabled) { logger.warn("Test is not for current dialect. Skipping test."); return; } assertEquals(1, dbSupportPublic.getTableNames().size()); assertEquals(1, dbSupportSchemaA.getTableNames().size()); assertEquals(1, dbSupportSchemaB.getTableNames().size()); defaultDbClearer.clearSchemas(); assertTrue(dbSupportPublic.getTableNames().isEmpty()); assertTrue(dbSupportSchemaA.getTableNames().isEmpty()); assertTrue(dbSupportSchemaB.getTableNames().isEmpty()); } /** * Checks if the views are correctly dropped */ @Test public void testClearDatabase_views() throws Exception { if (disabled) { logger.warn("Test is not for current dialect. Skipping test."); return; } assertEquals(1, dbSupportPublic.getViewNames().size()); assertEquals(1, dbSupportSchemaA.getViewNames().size()); assertEquals(1, dbSupportSchemaB.getViewNames().size()); defaultDbClearer.clearSchemas(); assertTrue(dbSupportPublic.getViewNames().isEmpty()); assertTrue(dbSupportSchemaA.getViewNames().isEmpty()); assertTrue(dbSupportSchemaB.getViewNames().isEmpty()); } /** * Tests if the triggers are correctly dropped */ @Test public void testClearDatabase_sequences() throws Exception { if (disabled) { logger.warn("Test is not for current dialect. Skipping test."); return; } assertEquals(1, dbSupportPublic.getSequenceNames().size()); assertEquals(1, dbSupportSchemaA.getSequenceNames().size()); assertEquals(1, dbSupportSchemaB.getSequenceNames().size()); defaultDbClearer.clearSchemas(); assertTrue(dbSupportPublic.getSequenceNames().isEmpty()); assertTrue(dbSupportSchemaA.getSequenceNames().isEmpty()); assertTrue(dbSupportSchemaB.getSequenceNames().isEmpty()); } /** * Creates all test database structures (view, tables...) */ private void createTestDatabase() throws Exception { // create schemas executeUpdate("create schema SCHEMA_A AUTHORIZATION DBA", dataSource); executeUpdate("create schema SCHEMA_B AUTHORIZATION DBA", dataSource); // create tables executeUpdate("create table TEST_TABLE (col1 varchar(100))", dataSource); executeUpdate("create table SCHEMA_A.TEST_TABLE (col1 varchar(100))", dataSource); executeUpdate("create table SCHEMA_B.TEST_TABLE (col1 varchar(100))", dataSource); // create views executeUpdate("create view TEST_VIEW as select col1 from TEST_TABLE", dataSource); executeUpdate("create view SCHEMA_A.TEST_VIEW as select col1 from SCHEMA_A.TEST_TABLE", dataSource); executeUpdate("create view SCHEMA_B.TEST_VIEW as select col1 from SCHEMA_B.TEST_TABLE", dataSource); // create sequences executeUpdate("create sequence TEST_SEQUENCE", dataSource); executeUpdate("create sequence SCHEMA_A.TEST_SEQUENCE", dataSource); executeUpdate("create sequence SCHEMA_B.TEST_SEQUENCE", dataSource); } /** * Drops all created test database structures (views, tables...) */ private void dropTestDatabase() throws Exception { // drop sequences executeUpdateQuietly("drop sequence TEST_SEQUENCE", dataSource); executeUpdateQuietly("drop sequence SCHEMA_A.TEST_SEQUENCE", dataSource); executeUpdateQuietly("drop sequence SCHEMA_B.TEST_SEQUENCE", dataSource); // drop views executeUpdateQuietly("drop view TEST_VIEW", dataSource); executeUpdateQuietly("drop view SCHEMA_A.TEST_VIEW", dataSource); executeUpdateQuietly("drop view SCHEMA_B.TEST_VIEW", dataSource); // drop tables executeUpdateQuietly("drop table TEST_TABLE", dataSource); executeUpdateQuietly("drop table SCHEMA_A.TEST_TABLE", dataSource); executeUpdateQuietly("drop table SCHEMA_B.TEST_TABLE", dataSource); // drop schemas executeUpdateQuietly("drop schema SCHEMA_A", dataSource); executeUpdateQuietly("drop schema SCHEMA_B", dataSource); } /** * Test trigger for hypersonic. * * @author Filip Neven * @author Tim Ducheyne */ public static class TestTrigger implements Trigger { public void fire(int i, String string, String string1, Object[] objects, Object[] objects1) { } } }