git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@3821 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
833 lines
24 KiB
PHP
833 lines
24 KiB
PHP
<?php
|
|
/** DomFramework - Tests
|
|
@package domframework
|
|
@author Dominique Fournier <dominique@fournier38.fr> */
|
|
|
|
class test_dblayeroo_{ENGINE} extends PHPUnit_Framework_TestCase
|
|
{
|
|
// Test with column name 'group', 'object', 'where', 'with space'
|
|
// Test with table name 'group', 'object', 'where', 'with space'
|
|
// For the 3 DB engines
|
|
|
|
public $engine="{ENGINE}";
|
|
public $confs = array (
|
|
"sqlite" => array (
|
|
"dsn" => "sqlite:/tmp/databaseDBLayeroo.db",
|
|
"username" => null,
|
|
"password" => null,
|
|
"driver_options" => null,
|
|
"tableprefix" => "",
|
|
),
|
|
"mysql" => array (
|
|
"dsn" => "mysql:host=127.0.0.1;port=3306;dbname=test",
|
|
"username" => "root",
|
|
"password" => "lqsym",
|
|
"driver_options" => null,
|
|
"tableprefix" => "",
|
|
),
|
|
"pgsql" => array (
|
|
"dsn" => "pgsql:host=127.0.0.1;port=5432;dbname=dbname",
|
|
"username" => "root",
|
|
"password" => "root",
|
|
"driver_options" => null,
|
|
"tableprefix" => "",
|
|
),
|
|
);
|
|
|
|
private function db1 ()
|
|
{
|
|
$dbconfig = $this->confs["{ENGINE}"];
|
|
$db1 = new dblayeroo ($dbconfig["dsn"], $dbconfig["username"],
|
|
$dbconfig["password"], $dbconfig["driver_options"]);
|
|
$db1->table ("groupedoo");
|
|
$db1->fields (array ("group"=>array ("varchar(255)", "not null"),
|
|
"object"=>array ("varchar(255)", "not null"),
|
|
"where"=>array ("varchar(255)", "not null"),
|
|
"with space"=>array ("varchar(255)")));
|
|
$db1->unique (array ());
|
|
$db1->primary ("group");
|
|
return $db1;
|
|
}
|
|
|
|
private function db2 ()
|
|
{
|
|
$dbconfig = $this->confs["{ENGINE}"];
|
|
$db2 = new dblayeroo ($dbconfig["dsn"], $dbconfig["username"],
|
|
$dbconfig["password"], $dbconfig["driver_options"]);
|
|
$db2->table ("usersoo");
|
|
$db2->fields (array ("uid"=>array ("integer", "not null", "autoincrement"),
|
|
"gecos"=>array ("varchar(255)", "not null"),
|
|
"password"=>array ("varchar(255)", "not null"),
|
|
"group" => array ("varchar(255)", "not null"),
|
|
));
|
|
$db2->unique (array ("gecos","password"));
|
|
$db2->primary ("uid");
|
|
$db2->foreign (array ("group" => array ("groupedoo", "group",
|
|
"ON DELETE CASCADE")));
|
|
return $db2;
|
|
}
|
|
|
|
private function db3 ()
|
|
{
|
|
$dbconfig = $this->confs["{ENGINE}"];
|
|
$db3 = new dblayeroo ($dbconfig["dsn"], $dbconfig["username"],
|
|
$dbconfig["password"], $dbconfig["driver_options"]);
|
|
return $db3;
|
|
}
|
|
|
|
private function db4 ()
|
|
{
|
|
$dbconfig = $this->confs["{ENGINE}"];
|
|
$db4 = new dblayeroo ($dbconfig["dsn"], $dbconfig["username"],
|
|
$dbconfig["password"], $dbconfig["driver_options"]);
|
|
$db4->table ("rightsoo");
|
|
$db4->fields (array ("id"=>array ("integer", "not null", "autoincrement"),
|
|
"name"=>array ("varchar(255)", "not null"),
|
|
"group" => array ("varchar(255)", "not null"),
|
|
));
|
|
$db4->unique (array ("name"));
|
|
$db4->primary ("id");
|
|
$db4->foreign (array ("group" => array ("groupedoo", "group",
|
|
"ON DELETE CASCADE")));
|
|
return $db4;
|
|
}
|
|
|
|
public function test_dropTable ()
|
|
{
|
|
$dbconfig = $this->confs["{ENGINE}"];
|
|
$db = new dblayeroo ($dbconfig["dsn"], $dbconfig["username"],
|
|
$dbconfig["password"], $dbconfig["driver_options"]);
|
|
foreach (array ("rightsoo", "usersoo", "groupedoo",
|
|
"multipleoo", "multiple2oo", "users3oo",
|
|
"readORoo") as
|
|
$table)
|
|
{
|
|
$db->table ($table);
|
|
try
|
|
{
|
|
$res = $db->dropTable();
|
|
}
|
|
catch (Exception $e)
|
|
{
|
|
}
|
|
}
|
|
$db->disconnect ();
|
|
// Never generate an error, just drop the table if it exists, and do noting
|
|
// if it doesn't exists
|
|
}
|
|
|
|
public function test_createTable1 ()
|
|
{
|
|
// Create a table named groupedoo
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->createTable ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (0, $res);
|
|
}
|
|
|
|
public function test_createTable2 ()
|
|
{
|
|
// Create a table named usersoo
|
|
$db2 = $this->db2 ();
|
|
$res = $db2->createTable ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (0, $res);
|
|
}
|
|
|
|
public function test_createTable4 ()
|
|
{
|
|
// Create a table named rightsoo
|
|
$db4 = $this->db4 ();
|
|
$res = $db4->createTable ();
|
|
$db4->disconnect ();
|
|
$this->assertSame (0, $res);
|
|
}
|
|
|
|
public function test_select1 ()
|
|
{
|
|
// Select all on the table : nothing
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->select()->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (), $res);
|
|
}
|
|
|
|
public function test_insert1 ()
|
|
{
|
|
// Insert without value : raise an exception
|
|
$this->setExpectedException ("Exception");
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->insert()->execute ();
|
|
$db1->disconnect ();
|
|
}
|
|
|
|
public function test_insert2 ()
|
|
{
|
|
// Insert : missing not null field : exception
|
|
$this->setExpectedException ("Exception");
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->insert()
|
|
->setValues(array ("group"=>"group1", "where"=>"where"))
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
}
|
|
|
|
public function test_insert3 ()
|
|
{
|
|
// Insert : first row inserted
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->insert()->setValues(array ("group"=>"group1", "where"=>"where",
|
|
"object"=>"object"))->execute ();
|
|
$db1->disconnect ();
|
|
// As the key is not an autoincrement, the lastInsertID can be 0 or 1
|
|
$this->assertGreaterThanOrEqual ($res, "0");
|
|
}
|
|
|
|
public function test_select2 ()
|
|
{
|
|
// Select all on the table : nothing
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->select()->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (array ("group"=>"group1", "object"=>"object",
|
|
"where"=>"where", "with space"=>null)),
|
|
$res);
|
|
}
|
|
|
|
public function test_update1 ()
|
|
{
|
|
// update the all the rows of the table (without WHERE)
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->update()->setValues(array ("group"=>"group2", "where"=>"where",
|
|
"object"=>"object"))->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (1, $res);
|
|
}
|
|
|
|
public function test_select3 ()
|
|
{
|
|
// Select all on the table after update
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->select()->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (array ("group"=>"group2", "object"=>"object",
|
|
"where"=>"where", "with space"=>null)),
|
|
$res);
|
|
}
|
|
|
|
public function test_update2 ()
|
|
{
|
|
// update the all the rows of the table (with inexisting WHERE)
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->update()
|
|
->setValues(array ("group"=>"group2", "where"=>"where",
|
|
"object"=>"object"))
|
|
->whereAdd ("group", "=", "group1")
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (0, $res);
|
|
}
|
|
|
|
public function test_update3 ()
|
|
{
|
|
// update the all the rows of the table (with existing WHERE)
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->update()
|
|
->setValues(array ("group"=>"group1", "where"=>"where",
|
|
"object"=>"object"))
|
|
->whereAdd ("group", "=", "group2")
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (1, $res);
|
|
}
|
|
|
|
public function test_update4 ()
|
|
{
|
|
// update the all the rows of the table : NOT NULL value not provided
|
|
// (already existing in the table)
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->update()
|
|
->setValues(array ("group"=>"group1"))
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (1, $res);
|
|
}
|
|
|
|
public function test_delete1 ()
|
|
{
|
|
// Delete : WHERE return nothing
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->delete ()
|
|
->whereAdd ("group", "=", "group2")
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (0, $res);
|
|
}
|
|
|
|
public function test_delete2 ()
|
|
{
|
|
// Delete all
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->delete ()
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (1, $res);
|
|
}
|
|
|
|
public function test_select4 ()
|
|
{
|
|
// Select all on the table : nothing
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->select()->execute ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (), $res);
|
|
}
|
|
|
|
public function test_insert5 ()
|
|
{
|
|
// Insert : first row inserted for TABLE 2 tests
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->insert()->setValues(array ("group"=>"group1", "where"=>"where",
|
|
"object"=>"object"))->execute ();
|
|
$db1->disconnect ();
|
|
// As the key is not an autoincrement, the lastInsertID can be 0 or 1
|
|
$this->assertGreaterThanOrEqual ($res, "0");
|
|
}
|
|
|
|
///////////////////
|
|
/// TABLE 2 ///
|
|
///////////////////
|
|
public function test_insertAutoincrement1 ()
|
|
{
|
|
// Test autoincrement
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->setForeignObj ($db1);
|
|
$res = $db2->insert()->setValues(array ("gecos"=>"name",
|
|
"password"=>"toto",
|
|
"group"=>"group1"))->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame ("1", $res);
|
|
}
|
|
|
|
public function test_insertAutoincrement2 ()
|
|
{
|
|
// Test autoincrement
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->setForeignObj ($db1);
|
|
$res = $db2->insert()->setValues(array ("gecos"=>"firstname2",
|
|
"password"=>"toto2",
|
|
"group"=>"group1"))->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame ("2", $res);
|
|
}
|
|
|
|
public function test_insertAutoincrement3 ()
|
|
{
|
|
// Test autoincrement
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->setForeignObj ($db1);
|
|
$res = $db2->insert()->setValues(array ("gecos"=>"firstname3",
|
|
"password"=>"toto3",
|
|
"group"=>"group1"))->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame ("3", $res);
|
|
}
|
|
|
|
public function test_delete3 ()
|
|
{
|
|
// Delete with WHERE clause
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->setForeignObj ($db1);
|
|
$res = $db2->delete ()
|
|
->whereAdd ("gecos", "LIKE", "firstname%")
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (2, $res);
|
|
}
|
|
|
|
public function test_select5 ()
|
|
{
|
|
// Select all on the table : one entry "gecos"=>"name"
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->setForeignObj ($db1);
|
|
$res = $db2->select()->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (array (array ("uid"=>1,
|
|
"gecos"=>"name",
|
|
"password"=>"toto",
|
|
"group"=>"group1")), $res);
|
|
}
|
|
|
|
/// SCHEMA MANAGEMENT ///
|
|
public function test_getTableSchema1 ()
|
|
{
|
|
$db3 = $this->db3 ();
|
|
$res = $db3->getTableSchema ("usersoo");
|
|
$db3->disconnect ();
|
|
$this->assertSame (
|
|
array ("fields"=>array (
|
|
"uid"=>array ("integer", "not null", "autoincrement"),
|
|
"gecos"=>array ("varchar(255)", "not null"),
|
|
"password"=>array ("varchar(255)", "not null"),
|
|
"group" => array ("varchar(255)", "not null"),
|
|
),
|
|
"primary"=>"uid",
|
|
"unique"=>array ("gecos","password"),
|
|
"foreign" => array (
|
|
"group" => array ('groupedoo', 'group', 'ON DELETE CASCADE'),
|
|
),
|
|
), $res);
|
|
}
|
|
|
|
// JOINS
|
|
public function test_insertJoin1 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->insert()
|
|
->setValues(array ("group"=>"group2",
|
|
"object"=>"object",
|
|
"where"=>"where"))
|
|
->execute ();
|
|
$db2 = $this->db2 ();
|
|
$db2->setForeignObj ($db1);
|
|
$res = $db2->insert()
|
|
->setValues(array ("gecos"=>"name2",
|
|
"password"=>"pwd2",
|
|
"group"=>"group1"))
|
|
->execute ();
|
|
$res = $db2->insert()
|
|
->setValues(array ("gecos"=>"name3",
|
|
"password"=>"pwd3",
|
|
"group"=>"group1"))
|
|
->execute ();
|
|
$res = $db2->insert()
|
|
->setValues(array ("gecos"=>"name4",
|
|
"password"=>"pwd4",
|
|
"group"=>"group1"))
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
}
|
|
|
|
public function test_innerJoin1 ()
|
|
{
|
|
// No filter
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$res = $db2->select ()
|
|
->joinInner ($db1, array ("group"=>"group"))
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (array (
|
|
array (
|
|
'usersoo.uid' => 1,
|
|
'usersoo.gecos' => 'name',
|
|
'usersoo.password' => 'toto',
|
|
'usersoo.group' => 'group1',
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
),
|
|
array (
|
|
'usersoo.uid' => 4,
|
|
'usersoo.gecos' => 'name2',
|
|
'usersoo.password' => 'pwd2',
|
|
'usersoo.group' => 'group1',
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
),
|
|
array (
|
|
'usersoo.uid' => 5,
|
|
'usersoo.gecos' => 'name3',
|
|
'usersoo.password' => 'pwd3',
|
|
'usersoo.group' => 'group1',
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
),
|
|
array (
|
|
'usersoo.uid' => 6,
|
|
'usersoo.gecos' => 'name4',
|
|
'usersoo.password' => 'pwd4',
|
|
'usersoo.group' => 'group1',
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
),
|
|
), $res);
|
|
}
|
|
|
|
public function test_leftJoin2 ()
|
|
{
|
|
// No filter
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$res = $db1->select ()
|
|
->joinLeft ($db2, array ("group"=>"group"))
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (array (
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
'usersoo.uid' => 1,
|
|
'usersoo.gecos' => 'name',
|
|
'usersoo.password' => 'toto',
|
|
'usersoo.group' => 'group1',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
'usersoo.uid' => 4,
|
|
'usersoo.gecos' => 'name2',
|
|
'usersoo.password' => 'pwd2',
|
|
'usersoo.group' => 'group1',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
'usersoo.uid' => 5,
|
|
'usersoo.gecos' => 'name3',
|
|
'usersoo.password' => 'pwd3',
|
|
'usersoo.group' => 'group1',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
'usersoo.uid' => 6,
|
|
'usersoo.gecos' => 'name4',
|
|
'usersoo.password' => 'pwd4',
|
|
'usersoo.group' => 'group1',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group2',
|
|
'groupedoo.object' => 'object',
|
|
'groupedoo.where' => 'where',
|
|
'groupedoo.with space' => NULL,
|
|
'usersoo.uid' => 0,
|
|
'usersoo.gecos' => NULL,
|
|
'usersoo.password' => NULL,
|
|
'usersoo.group' => NULL,
|
|
),
|
|
), $res);
|
|
}
|
|
|
|
public function test_leftJoin3 ()
|
|
{
|
|
// Filter on the db1, do not display db2
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->displayAdd ();
|
|
$res = $db1->select ()
|
|
->displayAdd ("group")
|
|
->joinLeft ($db2, array ("group"=>"group"))
|
|
->orderAdd ("group", "ASC")
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (array (
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group2',
|
|
),
|
|
), $res);
|
|
}
|
|
|
|
public function test_leftJoin4 ()
|
|
{
|
|
// Filter on the db1, display one column in db2
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->displayAdd ("group");
|
|
$res = $db1->select ()
|
|
->displayAdd ("group")
|
|
->joinLeft ($db2, array ("group"=>"group"))
|
|
->orderAdd ("group", "DESC")
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (array (
|
|
array (
|
|
'usersoo.group' => NULL,
|
|
'groupedoo.group' => 'group2',
|
|
),
|
|
array (
|
|
'usersoo.group' => 'group1',
|
|
'groupedoo.group' => 'group1',
|
|
),
|
|
), $res);
|
|
}
|
|
|
|
public function test_leftJoin5 ()
|
|
{
|
|
// Filter on the db1 and add order in full mode
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db2->displayAdd ("group");
|
|
$res = $db1->select ()
|
|
->displayAdd ("group")
|
|
->joinLeft ($db2, array ("group"=>"group"))
|
|
->orderAdd ("group", "DESC")
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame (array (
|
|
array (
|
|
'usersoo.group' => NULL,
|
|
'groupedoo.group' => 'group2',
|
|
),
|
|
array (
|
|
'usersoo.group' => 'group1',
|
|
'groupedoo.group' => 'group1',
|
|
),
|
|
), $res);
|
|
}
|
|
|
|
/// THREE TABLES ///
|
|
public function test_insert6 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db4 = $this->db4 ();
|
|
$db4->setForeignObj ($db1);
|
|
$res = $db4->insert ()
|
|
->setValues(array ("name"=>"RO",
|
|
"group"=>"group1"))
|
|
->execute ();
|
|
$db4->disconnect ();
|
|
// As the key is not an autoincrement, the lastInsertID can be 0 or 1
|
|
$this->assertGreaterThanOrEqual ($res, "0");
|
|
}
|
|
|
|
public function test_leftJoin6 ()
|
|
{
|
|
// Two joins tables in left join
|
|
$db1 = $this->db1 (); // Do not display anything from groupedoo
|
|
$db1->displayAdd ("group")
|
|
->orderAdd ("group", "DESC");
|
|
|
|
$db2 = $this->db2 (); // Display the gecos and group from usersoo
|
|
$db2->displayAdd ("gecos")
|
|
->orderAdd ("gecos", "ASC");
|
|
|
|
$db4 = $this->db4 (); // Display the name in rightsoo
|
|
$db4->displayAdd ("name");
|
|
$db1->joinLeft ($db4, array ("group"=>"group"));
|
|
$res = $db1->select ()
|
|
->joinLeft ($db2, array ("group"=>"group"))
|
|
->execute ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$db4->disconnect ();
|
|
$this->assertSame (array (
|
|
array (
|
|
'groupedoo.group' => 'group2',
|
|
'usersoo.gecos' => NULL,
|
|
'rightsoo.name' => NULL,
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'usersoo.gecos' => 'name',
|
|
'rightsoo.name' => 'RO',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'usersoo.gecos' => 'name2',
|
|
'rightsoo.name' => 'RO',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'usersoo.gecos' => 'name3',
|
|
'rightsoo.name' => 'RO',
|
|
),
|
|
array (
|
|
'groupedoo.group' => 'group1',
|
|
'usersoo.gecos' => 'name4',
|
|
'rightsoo.name' => 'RO',
|
|
),
|
|
), $res);
|
|
}
|
|
|
|
public function test_sortOrder1 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$res = $db1->getSortOrder ();
|
|
$db1->disconnect ();
|
|
$this->assertSame ("order1", $res);
|
|
}
|
|
|
|
public function test_sortOrder2 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->getSortOrder ();
|
|
$res = $db1->getSortOrder ();
|
|
$db1->disconnect ();
|
|
$this->assertSame ("order2", $res);
|
|
}
|
|
|
|
public function test_sortOrder3 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db2 = $this->db2 ();
|
|
$db1->getSortOrder ();
|
|
$db1->getSortOrder ();
|
|
$res = $db2->getSortOrder ();
|
|
$db1->disconnect ();
|
|
$db2->disconnect ();
|
|
$this->assertSame ("order3", $res);
|
|
}
|
|
|
|
public function test_displayAdd_NotFull1 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group");
|
|
$res = $db1->displayGet ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array ("order1" => $db1->sep()."group".$db1->sep()),
|
|
$res);
|
|
}
|
|
|
|
public function test_displayAdd_NotFull2 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("distinct group");
|
|
$res = $db1->displayGet ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "DISTINCT ".$db1->sep()."group".$db1->sep()), $res);
|
|
}
|
|
|
|
public function test_displayAdd_NotFull3 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group_concat ( group ) ");
|
|
$res = $db1->displayGet ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "GROUP_CONCAT(".$db1->sep()."group".$db1->sep().")"), $res);
|
|
}
|
|
|
|
public function test_displayAdd_NotFull4 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group_concat (distinct group ) ");
|
|
$res = $db1->displayGet ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "GROUP_CONCAT(DISTINCT ".
|
|
$db1->sep()."group".$db1->sep().")"), $res);
|
|
}
|
|
|
|
public function test_displayAdd_NotFull5 ()
|
|
{
|
|
// With alias
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group_concat (distinct group ) ", "Group Alias");
|
|
$res = $db1->displayGet ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "GROUP_CONCAT(DISTINCT ".
|
|
$db1->sep()."group".$db1->sep().") AS ".
|
|
$db1->sep()."Group Alias".$db1->sep()), $res);
|
|
}
|
|
|
|
public function test_displayAdd_Full1 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group");
|
|
$res = $db1->displayGet (true);
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => $db1->sep()."groupedoo".$db1->sep().".".
|
|
$db1->sep()."group".$db1->sep()),
|
|
$res);
|
|
}
|
|
|
|
public function test_displayAdd_Full2 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("distinct group");
|
|
$res = $db1->displayGet (true);
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "DISTINCT ".$db1->sep()."groupedoo".$db1->sep().".".
|
|
$db1->sep()."group".$db1->sep()), $res);
|
|
}
|
|
|
|
public function test_displayAdd_Full3 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group_concat ( group ) ");
|
|
$res = $db1->displayGet (true);
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "GROUP_CONCAT(".$db1->sep()."groupedoo".$db1->sep().".".
|
|
$db1->sep()."group".$db1->sep().")"), $res);
|
|
}
|
|
|
|
public function test_displayAdd_Full4 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group_concat (distinct group ) ");
|
|
$res = $db1->displayGet (true);
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "GROUP_CONCAT(DISTINCT ".
|
|
$db1->sep()."groupedoo".$db1->sep().".".
|
|
$db1->sep()."group".$db1->sep().")"), $res);
|
|
}
|
|
|
|
public function test_displayAdd_Full5 ()
|
|
{
|
|
// With alias
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group_concat (distinct group ) ", "Group Alias");
|
|
$res = $db1->displayGet (true);
|
|
$db1->disconnect ();
|
|
$this->assertSame (array (
|
|
"order1" => "GROUP_CONCAT(DISTINCT ".
|
|
$db1->sep()."groupedoo".$db1->sep().".".
|
|
$db1->sep()."group".$db1->sep().") AS ".
|
|
$db1->sep()."Group Alias".$db1->sep()), $res);
|
|
}
|
|
|
|
public function test_displayAdd_Multiple1 ()
|
|
{
|
|
$db1 = $this->db1 ();
|
|
$db1->displayAdd ("group");
|
|
$db1->displayAdd ("where");
|
|
$res = $db1->displayGet ();
|
|
$db1->disconnect ();
|
|
$this->assertSame (array ("order1" => $db1->sep()."group".$db1->sep(),
|
|
"order2" => $db1->sep()."where".$db1->sep(),),
|
|
$res);
|
|
}
|
|
|
|
}
|