blob: 93e5057722ac16fdbe430f8ee6ce8b629de0ef1e [file] [log] [blame]
<?php
/**
*
* 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 WorkflowDatabaseTiein
* @subpackage Tests
* @version //autogentag//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
require_once 'Workflow/tests/case.php';
/**
* @package WorkflowDatabaseTiein
* @subpackage Tests
*/
abstract class ezcWorkflowDatabaseTieinTestCase extends ezcWorkflowTestCase
{
protected $db;
protected $dbStorage;
protected function setUp()
{
parent::setUp();
try
{
$this->db = ezcDbInstance::get();
$this->cleanupTables( $this->db );
$schema = ezcDbSchema::createFromFile(
'array',
dirname( __FILE__ ) . DIRECTORY_SEPARATOR . 'workflow.dba'
);
$schema->writeToDb( $this->db );
$this->dbStorage = new ezcWorkflowDatabaseDefinitionStorage( $this->db );
}
catch ( Exception $e )
{
$this->markTestSkipped( 'No test database has been configured: ' . $e->getMessage() );
}
}
protected function tearDown()
{
if ( $this->db !== null )
{
$this->cleanupTables();
}
$this->db = null;
$this->dbStorage = null;
}
protected function cleanupTables()
{
switch ( $this->db->getName() )
{
case 'pgsql':
{
$tables = $this->db->query( "SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'" )->fetchAll();
array_walk( $tables, create_function( '&$item,$key', '$item = $item[0];' ) );
foreach ( $tables as $tableName )
{
$this->db->query( "DROP TABLE \"$tableName\"" );
}
}
break;
case 'oracle':
{
$tables = $this->db->query( "SELECT table_name FROM user_tables" )->fetchAll();
array_walk( $tables, create_function( '&$item,$key', '$item = $item[0];' ) );
foreach ( $tables as $tableName )
{
$this->db->query( "DROP TABLE \"$tableName\"" );
}
$sequences = $this->db->query( "SELECT sequence_name FROM user_sequences" )->fetchAll();
array_walk( $sequences, create_function( '&$item,$key', '$item = $item[0];' ) );
foreach ( $sequences as $sequenceName )
{
$this->db->query( "DROP SEQUENCE \"{$sequenceName}\"" );
}
}
break;
default:
{
$this->db->exec( 'DROP TABLE IF EXISTS workflow;' );
$this->db->exec( 'DROP TABLE IF EXISTS node;' );
$this->db->exec( 'DROP TABLE IF EXISTS node_connection;' );
$this->db->exec( 'DROP TABLE IF EXISTS variable_handler;' );
$this->db->exec( 'DROP TABLE IF EXISTS execution;' );
$this->db->exec( 'DROP TABLE IF EXISTS execution_state;' );
}
}
}
}
?>