testFilesDir = dirname( __FILE__ ) . '/testfiles/'; $this->tempDir = $this->createTempDir( 'ezcDatabasePhpArrayTest' ); } public function tearDown() { $this->removeTempDir(); } private static function getSchema() { $tables = array( 'bugdb' => new ezcDbSchemaTable( array ( 'id' => new ezcDbSchemaField( 'integer', false, true, null, true ), 'bug_type' => new ezcDbSchemaField( 'text', 32, true ), 'severity' => new ezcDbSchemaField( 'integer', false, true ), 'sdesc' => new ezcDbSchemaField( 'text', 80, true ), 'ldesc' => new ezcDbSchemaField( 'clob', false, true ), 'php_version' => new ezcDbSchemaField( 'text', 100, true ), ), array ( 'bug_type' => new ezcDbSchemaIndex( array ( 'bug_type' => new ezcDbSchemaIndexField() ), false, false ), 'php_version' => new ezcDbSchemaIndex( array ( 'php_version' => new ezcDbSchemaIndexField() ) ), 'primary' => new ezcDbSchemaIndex( array ( 'id' => new ezcDbSchemaIndexField() ), true ), ) ), 'bugdb_comments' => new ezcDbSchemaTable( array ( 'bug_id' => new ezcDbSchemaField( 'integer', false, true ), 'comment' => new ezcDbSchemaField( 'clob', false, true ), 'email' => new ezcDbSchemaField( 'text', 32 ), ), array ( 'comment' => new ezcDbSchemaIndex( array ( 'comment' => new ezcDbSchemaIndexField() ) ), ) ), ); return $tables; } public function testBrokenSchema() { $fileName = $this->testFilesDir . 'broken_schema.php'; try { ezcDbSchema::createFromFile( 'array', $fileName ); self::fail( "Expected exception not thrown." ); } catch ( ezcDbSchemaInvalidSchemaException $e ) { self::assertEquals( "The schema is invalid. (File does not have the correct structure)", $e->getMessage() ); } } public function testCreateFromFileNonExisting() { try { ezcDbSchema::createFromFile( 'array', 'testfiles/isnt-here.php' ); self::fail( "Expected exception not thrown" ); } catch ( Exception $e ) { self::assertEquals( "The schema file could not be found.", $e->getMessage() ); } } public function testPhpArray() { $fileName = $this->tempDir . '/php_array_write_result.php'; $schema = new ezcDbSchema( self::getSchema() ); $schema->writeToFile( 'array', $fileName ); $newSchema = ezcDbSchema::createFromFile( 'array', $fileName ); self::assertEquals( $schema, $newSchema ); } public static function suite() { return new ezcTestSuite( 'ezcDatabaseSchemaPhpArrayTest' ); } } ?>