| <?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 ezcDatabaseSchemaValidatorTest extends ezcTestCase |
| { |
| protected function setUp() |
| { |
| try |
| { |
| $this->db = ezcDbInstance::get(); |
| } |
| catch ( Exception $e ) |
| { |
| $this->markTestSkipped(); |
| } |
| |
| } |
| |
| public function testIndexFields() |
| { |
| $schema = new ezcDbSchema( |
| array( |
| 'bugdb' => new ezcDbSchemaTable( |
| array ( |
| 'field1' => new ezcDbSchemaField( 'integer' ), |
| 'field2' => new ezcDbSchemaField( 'integer' ), |
| ), |
| array ( |
| 'index1' => new ezcDbSchemaIndex( array ( 'field1' => new ezcDbSchemaIndexField() ) ), |
| 'index2' => new ezcDbSchemaIndex( array ( 'field3' => new ezcDbSchemaIndexField() ) ), |
| 'index3' => new ezcDbSchemaIndex( array ( |
| 'field2' => new ezcDbSchemaIndexField(), |
| 'field3' => new ezcDbSchemaIndexField() |
| ) ), |
| ) |
| ), |
| ) |
| ); |
| |
| $expected = array( |
| "Index 'bugdb:index2' references unknown field name 'bugdb:field3'.", |
| "Index 'bugdb:index3' references unknown field name 'bugdb:field3'.", |
| ); |
| self::assertEquals( $expected, ezcDbSchemaValidator::validate( $schema ) ); |
| } |
| |
| public function testTypes() |
| { |
| $schema = new ezcDbSchema( array( |
| 'bugdb' => new ezcDbSchemaTable( |
| array ( |
| 'integerfield1' => new ezcDbSchemaField( 'integer' ), |
| 'integerfield2' => new ezcDbSchemaField( 'int' ), |
| 'booleanfield1' => new ezcDbSchemaField( 'boolean' ), |
| 'booleanfield2' => new ezcDbSchemaField( 'bool' ), |
| 'floatfield1' => new ezcDbSchemaField( 'float' ), |
| 'floatfield2' => new ezcDbSchemaField( 'double' ), |
| 'decimalfield1' => new ezcDbSchemaField( 'decimal' ), |
| 'decimalfield2' => new ezcDbSchemaField( 'numeric' ), |
| 'timestampfield1' => new ezcDbSchemaField( 'timestamp' ), |
| 'timefield1' => new ezcDbSchemaField( 'time' ), |
| 'datefield1' => new ezcDbSchemaField( 'date' ), |
| 'textfield1' => new ezcDbSchemaField( 'text' ), |
| 'textfield2' => new ezcDbSchemaField( 'char' ), |
| 'textfield3' => new ezcDbSchemaField( 'varchar' ), |
| 'blobfield1' => new ezcDbSchemaField( 'blob' ), |
| 'clobfield1' => new ezcDbSchemaField( 'clob' ) |
| ) |
| ), |
| ) ); |
| |
| $expected = array( |
| "Field 'bugdb:integerfield2' uses the unsupported type 'int'.", |
| "Field 'bugdb:booleanfield2' uses the unsupported type 'bool'.", |
| "Field 'bugdb:floatfield2' uses the unsupported type 'double'.", |
| "Field 'bugdb:decimalfield2' uses the unsupported type 'numeric'.", |
| "Field 'bugdb:textfield2' uses the unsupported type 'char'.", |
| "Field 'bugdb:textfield3' uses the unsupported type 'varchar'." |
| ); |
| self::assertEquals( $expected, ezcDbSchemaValidator::validate( $schema ) ); |
| } |
| |
| public function testMissingIndexForAutoincrementField() |
| { |
| $schema = new ezcDbSchema( |
| array( |
| 'bugdb' => new ezcDbSchemaTable( |
| array ( |
| 'id' => new ezcDbSchemaField( 'integer', false, true, null, true ), |
| ) |
| ), |
| 'bugdb2' => new ezcDbSchemaTable( |
| array ( |
| 'id' => new ezcDbSchemaField( 'integer', false, true, null, true ), |
| ), |
| array ( |
| 'primary' => new ezcDbSchemaIndex( array ( 'id' => new ezcDbSchemaIndexField() ), true ), |
| ) |
| ), |
| ) |
| ); |
| $expected = array( |
| "Field 'bugdb:id' is auto increment but there is no primary index defined.", |
| ); |
| self::assertEquals( $expected, ezcDbSchemaValidator::validate( $schema ) ); |
| } |
| |
| public function testForDuplicateIndexName1() |
| { |
| $schema = new ezcDbSchema( |
| array( |
| 'table1' => new ezcDbSchemaTable( |
| array ( |
| 'field1' => new ezcDbSchemaField( 'integer' ), |
| ), |
| array ( |
| 'index1' => new ezcDbSchemaIndex( array ( 'field1' => new ezcDbSchemaIndexField() ) ), |
| ) |
| ), |
| 'table2' => new ezcDbSchemaTable( |
| array ( |
| 'field1' => new ezcDbSchemaField( 'integer' ), |
| ), |
| array ( |
| 'index1' => new ezcDbSchemaIndex( array ( 'field1' => new ezcDbSchemaIndexField() ) ), |
| ) |
| ), |
| ) |
| ); |
| |
| $expected = array( |
| "The index name 'index1' is not unique. It exists for the tables: 'table1', 'table2'.", |
| ); |
| self::assertEquals( $expected, ezcDbSchemaValidator::validate( $schema ) ); |
| } |
| |
| public function testForDuplicateIndexName2() |
| { |
| $schema = new ezcDbSchema( |
| array( |
| 'table1' => new ezcDbSchemaTable( |
| array ( |
| 'field1' => new ezcDbSchemaField( 'integer' ), |
| ), |
| array ( |
| 'index1' => new ezcDbSchemaIndex( array ( 'field1' => new ezcDbSchemaIndexField() ) ), |
| ) |
| ), |
| 'table2' => new ezcDbSchemaTable( |
| array ( |
| 'field1' => new ezcDbSchemaField( 'integer' ), |
| ), |
| array ( |
| 'index2' => new ezcDbSchemaIndex( array ( 'field1' => new ezcDbSchemaIndexField() ) ), |
| ) |
| ), |
| 'table3' => new ezcDbSchemaTable( |
| array ( |
| 'field1' => new ezcDbSchemaField( 'integer' ), |
| ), |
| array ( |
| 'index1' => new ezcDbSchemaIndex( array ( 'field1' => new ezcDbSchemaIndexField() ) ), |
| ) |
| ), |
| 'table4' => new ezcDbSchemaTable( |
| array ( |
| 'field1' => new ezcDbSchemaField( 'integer' ), |
| ), |
| array ( |
| 'index1' => new ezcDbSchemaIndex( array ( 'field1' => new ezcDbSchemaIndexField() ) ), |
| ) |
| ), |
| ) |
| ); |
| |
| $expected = array( |
| "The index name 'index1' is not unique. It exists for the tables: 'table1', 'table3', 'table4'.", |
| ); |
| self::assertEquals( $expected, ezcDbSchemaValidator::validate( $schema ) ); |
| } |
| |
| public static function suite() |
| { |
| return new PHPUnit_Framework_TestSuite( 'ezcDatabaseSchemaValidatorTest' ); |
| } |
| } |
| ?> |