blob: e13777d65732783c0780167f257f63264d151da8 [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.
*
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @version //autogentag//
* @filesource
* @package DatabaseSchema
* @subpackage Tests
*/
/**
* @package DatabaseSchema
* @subpackage Tests
*/
class ezcDatabaseSchemaXmlDiffTest extends ezcTestCase
{
protected function setUp()
{
$this->testFilesDir = dirname( __FILE__ ) . '/testfiles/';
$this->tempDir = $this->createTempDir( 'ezcDatabaseXmlTest' );
}
protected function tearDown()
{
$this->removeTempDir();
}
private static function getSchemaDiff()
{
$schema1 = new ezcDbSchema( array(
'bugdb' => new ezcDbSchemaTable(
array (
'integerfield1' => new ezcDbSchemaField( 'integer' ),
)
),
'bugdb_deleted' => new ezcDbSchemaTable(
array (
'integerfield1' => new ezcDbSchemaField( 'integer' ),
)
),
'bugdb_change' => new ezcDbSchemaTable(
array (
'integerfield1' => new ezcDbSchemaField( 'integer' ),
'integerfield3' => new ezcDbSchemaField( 'integer' ),
),
array (
'primary' => new ezcDbSchemaIndex(
array(
'integerfield1' => new ezcDbSchemaIndexField()
),
true
),
'tertiary' => new ezcDbSchemaIndex(
array(
'integerfield3' => new ezcDbSchemaIndexField()
),
true
)
)
),
) );
$schema2 = new ezcDbSchema( array(
'bugdb' => new ezcDbSchemaTable(
array (
'integerfield1' => new ezcDbSchemaField( 'integer' ),
)
),
'bugdb_added' => new ezcDbSchemaTable(
array (
'integerfield1' => new ezcDbSchemaField( 'integer' ),
)
),
'bugdb_change' => new ezcDbSchemaTable(
array (
'integerfield2' => new ezcDbSchemaField( 'integer' ),
'integerfield3' => new ezcDbSchemaField( 'char', 64 ),
),
array (
'secondary' => new ezcDbSchemaIndex(
array(
'integerfield1' => new ezcDbSchemaIndexField(),
'integerfield3' => new ezcDbSchemaIndexField()
),
true
),
'tertiary' => new ezcDbSchemaIndex(
array(
'integerfield2' => new ezcDbSchemaIndexField()
),
true
)
)
),
) );
return ezcDbSchemaComparator::compareSchemas( $schema1, $schema2 );
}
public function testBrokenSchema()
{
$fileName = realpath( $this->testFilesDir . 'broken_schema.php' );
try
{
ezcDbSchema::createFromFile( 'xml', $fileName );
self::fail( "Expected exception not thrown." );
}
catch ( ezcDbSchemaInvalidSchemaException $e )
{
self::assertEquals( "The schema is invalid. (The schema file '{$fileName}' is not valid XML.)", $e->getMessage() );
}
}
public function testCreateFromFileNonExisting()
{
try
{
ezcDbSchema::createFromFile( 'xml', 'testfiles/isnt-here.php' );
self::fail( "Expected exception not thrown" );
}
catch ( Exception $e )
{
self::assertEquals( "The schema file 'testfiles/isnt-here.php' could not be found.", $e->getMessage() );
}
}
public function testWrite1()
{
$fileName = $this->tempDir . '/xml_write_result.xml';
$schema = self::getSchemaDiff();
$schema->writeToFile( 'xml', $fileName );
$newSchema = ezcDbSchemaDiff::createFromFile( 'xml', $fileName );
self::assertEquals( $schema, $newSchema );
}
public function testWriteUnwriteableDir()
{
$fileName = $this->tempDir . '/bogus/xml_write_result.xml';
$schema = self::getSchemaDiff();
try
{
$schema->writeToFile( 'xml', $fileName );
$this->fail( 'Expected exception not thrown' );
}
catch ( ezcBaseFilePermissionException $e )
{
$this->assertEquals( "The file '{$fileName}' can not be opened for writing.", $e->getMessage() );
}
}
public static function suite()
{
return new PHPUnit_Framework_TestSuite( 'ezcDatabaseSchemaXmlDiffTest' );
}
}
?>