diff --git a/tests/AllTests.php b/tests/AllTests.php index 5f0999539..eba623745 100644 --- a/tests/AllTests.php +++ b/tests/AllTests.php @@ -3,10 +3,9 @@ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'AllTests::main'); } -require_once 'PHPUnit/Framework.php'; -require_once 'PHPUnit/TextUI/TestRunner.php'; -require_once 'lib/Doctrine_TestSuite.php'; +require_once 'lib/DoctrineTestInit.php'; +// Suites require_once 'Dbal/AllTests.php'; require_once 'Orm/AllTests.php'; require_once 'Ticket/AllTests.php'; @@ -20,7 +19,7 @@ class AllTests public static function suite() { - $suite = new Doctrine_TestSuite('Doctrine'); + $suite = new Doctrine_TestSuite('Doctrine Tests'); $suite->addTest(Dbal_AllTests::suite()); $suite->addTest(Orm_AllTests::suite()); diff --git a/tests/Dbal/AllTests.php b/tests/Dbal/AllTests.php index 72394ec4e..aa04f07af 100644 --- a/tests/Dbal/AllTests.php +++ b/tests/Dbal/AllTests.php @@ -3,10 +3,9 @@ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Dbal_AllTests::main'); } -require_once 'PHPUnit/Framework.php'; -require_once 'PHPUnit/TextUI/TestRunner.php'; -require_once 'lib/Doctrine_TestSuite.php'; +require_once 'lib/DoctrineTestInit.php'; +// Suites require_once 'Dbal/Component/AllTests.php'; class Dbal_AllTests diff --git a/tests/Dbal/Component/AllTests.php b/tests/Dbal/Component/AllTests.php index d92bd2155..150106412 100644 --- a/tests/Dbal/Component/AllTests.php +++ b/tests/Dbal/Component/AllTests.php @@ -3,10 +3,9 @@ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Dbal_Component_AllTests::main'); } -require_once 'PHPUnit/Framework.php'; -require_once 'PHPUnit/TextUI/TestRunner.php'; -require_once 'lib/Doctrine_TestSuite.php'; +require_once 'lib/DoctrineTestInit.php'; +// Tests require_once 'Dbal/Component/TestTest.php'; class Dbal_Component_AllTests diff --git a/tests/Dbal/Component/TestTest.php b/tests/Dbal/Component/TestTest.php index 9805c75e5..798b1c86d 100644 --- a/tests/Dbal/Component/TestTest.php +++ b/tests/Dbal/Component/TestTest.php @@ -1,5 +1,5 @@ setColumn('id', 'integer', 4, array('primary' => true, 'autoincrement' => true)); + $class->setColumn('username', 'string', 255); + $class->setColumn('username', 'string', 255); + } +} \ No newline at end of file diff --git a/tests/lib/DoctrineTestInit.php b/tests/lib/DoctrineTestInit.php new file mode 100644 index 000000000..f5aef9be7 --- /dev/null +++ b/tests/lib/DoctrineTestInit.php @@ -0,0 +1,8 @@ +sharedFixture = $this->loadConnection($pdo, 'sqlite_memory'); + } + + public function loadConnection($conn, $name) + { + return Doctrine_Manager::connection($conn, $name); + } + + public function loadFixturesPackage($package, $models = array()) + { + $packagePath = 'fixtures' . DIRECTORY_SEPARATOR . $package; + + if ( ! file_exists($packagePath)) { + throw new Exception('Could not find fixtures package: "' . $package . '"'); + } + + $modelsPath = $packagePath . DIRECTORY_SEPARATOR . 'models'; + $dataPath = $packagePath . DIRECTORY_SEPARATOR . 'data'; + + Doctrine::loadModels($modelsPath); + Doctrine::createTablesFromModels($modelsPath); + + $data = new Doctrine_Data(); + $data->importData($dataPath, 'yml', $models); + } + + public function tearDown() + { + Doctrine_Manager::getInstance()->getConnection('sqlite_memory')->close(); + + $this->sharedFixture = NULL; + } } \ No newline at end of file diff --git a/tests/lib/Doctrine_TestSuite.php b/tests/lib/Doctrine_TestSuite.php index 16eae17f9..e866e1b3c 100644 --- a/tests/lib/Doctrine_TestSuite.php +++ b/tests/lib/Doctrine_TestSuite.php @@ -1,6 +1,4 @@