forked from doctrine/doctrine1
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding columns defined in actAs-templates to the docblock of the gene…
…rated model class.
- Loading branch information
Showing
2 changed files
with
145 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
class Doctrine_Ticket_gh110_TestCase extends Doctrine_UnitTestCase | ||
{ | ||
public function testAddActAsColumnsToDocBlock() | ||
{ | ||
$builder = new Doctrine_Import_Builder(); | ||
$class = $builder->buildDefinition( | ||
array( | ||
'className' => 'Ticket_gh110_TestRecord', | ||
'topLevelClassName' => 'Ticket_gh110_TestRecord', | ||
'is_base_class' => true, | ||
'columns' => array( | ||
'id' => array( | ||
'type' => 'integer', | ||
'length' => 4, | ||
), | ||
'my_custom_created_at' => array( | ||
'name' => 'created_at', | ||
'type' => 'my_custom_type', | ||
'length' => '', | ||
) | ||
), | ||
'actAs' => array( | ||
'SoftDelete' => array(), | ||
'Timestampable' => array( | ||
'updated' => array( | ||
'disabled' => true, | ||
), | ||
'unknown_column' => array() | ||
), | ||
'UnknownActAs' => array() | ||
) | ||
) | ||
); | ||
|
||
$this->assertTrue(preg_match('/@property int\s*\$id/', $class)); | ||
$this->assertTrue(preg_match('/@property string\s*\$deleted_at/', $class)); | ||
$this->assertTrue(preg_match('/@property my_custom_type\s*\$created_at/', $class)); | ||
$this->assertFalse(preg_match('/@property string\s*\$created_at/', $class)); | ||
$this->assertFalse(preg_match('/@property string\s*\$updated_at/', $class)); | ||
} | ||
} |