From 8e127bfc3378520baaee84779441ab1f04a1d034 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 13 Nov 2007 22:33:38 +0000 Subject: [PATCH] added Doctrine_Plugin_TestCase --- tests/PluginTestCase.php | 72 ++++++++++++++++++++++++++++++++++++++++ tests/run.php | 3 +- 2 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 tests/PluginTestCase.php diff --git a/tests/PluginTestCase.php b/tests/PluginTestCase.php new file mode 100644 index 000000000..9b80e8198 --- /dev/null +++ b/tests/PluginTestCase.php @@ -0,0 +1,72 @@ +. + */ + +/** + * Doctrine_Plugin_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Plugin_TestCase extends Doctrine_UnitTestCase +{ + + public function prepareData() + { } + + public function prepareTables() + { } + + public function testNestedPluginsGetExportedRecursively() + { + $sql = $this->conn->export->exportClassesSql(array('Wiki')); + + $this->assertEqual($sql[0], 'CREATE TABLE wiki_translation_version (title VARCHAR(255), content VARCHAR(2147483647), lang VARCHAR(2), id INTEGER, version INTEGER, PRIMARY KEY(lang, id, version))'); + $this->assertEqual($sql[1], 'CREATE TABLE wiki_translation_index (keyword VARCHAR(200), field VARCHAR(50), position INTEGER, lang VARCHAR(2), id INTEGER, PRIMARY KEY(keyword, field, position, lang, id))'); + $this->assertEqual($sql[2], 'CREATE TABLE wiki_translation (title VARCHAR(255), content VARCHAR(2147483647), lang VARCHAR(2), id INTEGER, PRIMARY KEY(lang, id))'); + $this->assertEqual($sql[3], 'CREATE TABLE wiki (id INTEGER PRIMARY KEY AUTOINCREMENT)'); + } +} +class Wiki extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->hasColumn('title', 'string', 255); + $this->hasColumn('content', 'string'); + } + + public function setUp() + { + $options = array('fields' => array('title', 'content')); + $auditLog = new Doctrine_Template_Versionable($options); + $search = new Doctrine_Template_Searchable($options); + $i18n = new Doctrine_Template_I18n($options); + + $i18n->addChild($auditLog) + ->addChild($search); + + $this->actAs($i18n); + } +} diff --git a/tests/run.php b/tests/run.php index fd2faff15..e6391c226 100644 --- a/tests/run.php +++ b/tests/run.php @@ -144,6 +144,7 @@ $test->addTestCase($data_types); // Utility components $plugins = new GroupTest('Plugin tests: View, Validator, Hook','plugins'); //$utility->addTestCase(new Doctrine_PessimisticLocking_TestCase()); +$plugins->addTestCase(new Doctrine_Plugin_TestCase()); $plugins->addTestCase(new Doctrine_View_TestCase()); $plugins->addTestCase(new Doctrine_AuditLog_TestCase()); $plugins->addTestCase(new Doctrine_Validator_TestCase()); @@ -218,7 +219,7 @@ $test->addTestCase(new Doctrine_CustomResultSetOrder_TestCase()); $test->addTestCase(new Doctrine_ColumnAggregationInheritance_TestCase()); - +$test->addTestCase(new Doctrine_ClassTableInheritance_TestCase()); $test->addTestCase(new Doctrine_ColumnAlias_TestCase());