2006-04-14 00:37:28 +04:00
|
|
|
<?php
|
2006-12-28 00:20:26 +03:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Doctrine_Manager_TestCase
|
|
|
|
*
|
|
|
|
* @package Doctrine
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
* @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_Manager_TestCase extends Doctrine_UnitTestCase {
|
2006-04-14 00:37:28 +04:00
|
|
|
public function testGetInstance() {
|
|
|
|
$this->assertTrue(Doctrine_Manager::getInstance() instanceOf Doctrine_Manager);
|
|
|
|
}
|
2006-08-22 03:20:33 +04:00
|
|
|
public function testOpenConnection() {
|
|
|
|
$this->assertTrue($this->connection instanceOf Doctrine_Connection);
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
|
|
|
public function testGetIterator() {
|
|
|
|
$this->assertTrue($this->manager->getIterator() instanceof ArrayIterator);
|
|
|
|
}
|
|
|
|
public function testCount() {
|
2006-09-13 01:36:36 +04:00
|
|
|
$this->assertTrue(is_integer(count($this->manager)));
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
2006-08-22 03:20:33 +04:00
|
|
|
public function testGetCurrentConnection() {
|
2007-02-16 01:20:44 +03:00
|
|
|
$this->assertTrue($this->manager->getCurrentConnection() === $this->connection);
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
2006-08-22 03:20:33 +04:00
|
|
|
public function testGetConnections() {
|
2006-09-13 01:36:36 +04:00
|
|
|
$this->assertTrue(is_integer(count($this->manager->getConnections())));
|
2006-08-22 23:34:40 +04:00
|
|
|
}
|
|
|
|
public function testClassifyTableize() {
|
|
|
|
$name = "Forum_Category";
|
|
|
|
$this->assertEqual(Doctrine::tableize($name), "forum__category");
|
|
|
|
$this->assertEqual(Doctrine::classify(Doctrine::tableize($name)), $name);
|
|
|
|
|
|
|
|
|
2007-10-16 00:39:44 +04:00
|
|
|
}
|
|
|
|
public function testDsnParser()
|
|
|
|
{
|
|
|
|
$mysql = 'mysql://user:pass@localhost/dbname';
|
|
|
|
|
|
|
|
// This is what is specified in the manul
|
|
|
|
// I think it should be this for parse_url() to work
|
|
|
|
// sqlite://full/unix/path/to/file.db
|
|
|
|
// It expects only // since it thinks it is parsing a url
|
|
|
|
// The problem after that is that the dns is not valid when being passed to PDO
|
2007-11-03 23:34:19 +03:00
|
|
|
$sqlite = 'sqlite:///full/unix/path/to/file.db';
|
|
|
|
$sqlitewin = 'sqlite://c:/full/windows/path/to/file.db';
|
2007-10-16 00:39:44 +04:00
|
|
|
|
|
|
|
$manager = Doctrine_Manager::getInstance();
|
|
|
|
|
|
|
|
try {
|
2007-11-03 17:28:35 +03:00
|
|
|
$res = $manager->parseDsn($mysql);
|
|
|
|
$expectedMysqlDsn = array(
|
|
|
|
"scheme" => "mysql",
|
|
|
|
"host" => "localhost",
|
|
|
|
"user" => "user",
|
|
|
|
"pass" => "pass",
|
|
|
|
"path" => "/dbname",
|
|
|
|
"dsn" => "mysql:host=localhost;dbname=dbname",
|
|
|
|
"port" => NULL,
|
|
|
|
"query" => NULL,
|
|
|
|
"fragment" => NULL,
|
|
|
|
"database" => "dbname");
|
|
|
|
$this->assertEqual($expectedMysqlDsn, $res);
|
2007-10-16 00:39:44 +04:00
|
|
|
} catch (Exception $e) {
|
2007-11-03 17:28:35 +03:00
|
|
|
$this->fail($e->getMessage());
|
2007-10-16 00:39:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2007-11-03 17:28:35 +03:00
|
|
|
$expectedDsn = array(
|
|
|
|
"scheme" => "sqlite",
|
|
|
|
"host" => null,
|
|
|
|
"user" => null,
|
|
|
|
"pass" => null,
|
|
|
|
"path" => "/full/unix/path/to/file.db",
|
|
|
|
"dsn" => "sqlite:/full/unix/path/to/file.db",
|
|
|
|
"port" => NULL,
|
|
|
|
"query" => NULL,
|
|
|
|
"fragment" => NULL,
|
|
|
|
"database" => "/full/unix/path/to/file.db");
|
|
|
|
|
|
|
|
$res = $manager->parseDsn($sqlite);
|
|
|
|
$this->assertEqual($expectedDsn, $res);
|
2007-10-16 00:39:44 +04:00
|
|
|
} catch (Exception $e) {
|
2007-11-03 17:28:35 +03:00
|
|
|
$this->fail($e->getMessage());
|
2007-10-16 00:39:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2007-11-03 17:28:35 +03:00
|
|
|
$expectedDsn = array(
|
|
|
|
"scheme" => "sqlite",
|
2007-11-03 23:34:19 +03:00
|
|
|
"host" => null,
|
2007-11-03 17:28:35 +03:00
|
|
|
"path" => "c:/full/windows/path/to/file.db",
|
|
|
|
"dsn" => "sqlite:c:/full/windows/path/to/file.db",
|
|
|
|
"port" => NULL,
|
|
|
|
"user" => null,
|
|
|
|
"pass" => null,
|
|
|
|
"query" => NULL,
|
|
|
|
"fragment" => NULL,
|
|
|
|
"database" => "c:/full/windows/path/to/file.db");
|
|
|
|
$res = $manager->parseDsn($sqlitewin);
|
|
|
|
$this->assertEqual($expectedDsn, $res);
|
2007-10-16 00:39:44 +04:00
|
|
|
} catch (Exception $e) {
|
2007-11-03 17:28:35 +03:00
|
|
|
$this->fail($e->getMessage());
|
2007-10-16 00:39:44 +04:00
|
|
|
}
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|
2006-05-15 16:15:20 +04:00
|
|
|
public function prepareData() { }
|
|
|
|
public function prepareTables() { }
|
2006-04-14 00:37:28 +04:00
|
|
|
}
|