2012-03-19 13:24:36 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren
|
2014-02-18 15:18:01 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2014
|
2012-03-19 13:24:36 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-03-19 13:24:36 -04:00
|
|
|
*/
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:38:49 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query builder parent test class
|
|
|
|
*/
|
2014-02-14 22:08:19 -05:00
|
|
|
abstract class QBTest extends Query_TestCase {
|
2012-03-19 13:24:36 -04:00
|
|
|
|
2013-02-28 12:22:55 -05:00
|
|
|
public function __destruct()
|
|
|
|
{
|
2013-12-06 23:00:32 -05:00
|
|
|
if (isset($_GET['show_queries']))
|
|
|
|
{
|
|
|
|
echo '<pre>' . print_r($this->db->queries, TRUE) . '</pre>';
|
|
|
|
}
|
2013-02-28 12:22:55 -05:00
|
|
|
}
|
|
|
|
|
2014-04-08 17:13:41 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// ! Driver-specific results
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
abstract public function testQueryExplain();
|
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-14 22:08:19 -05:00
|
|
|
// ! Get tests
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testInvalidConnectionName()
|
2014-02-11 14:29:41 -05:00
|
|
|
{
|
2014-02-25 13:47:35 -05:00
|
|
|
try
|
2014-02-11 14:29:41 -05:00
|
|
|
{
|
|
|
|
$db = Query('foo');
|
|
|
|
}
|
|
|
|
catch (InvalidArgumentException $e)
|
|
|
|
{
|
2014-02-14 22:08:19 -05:00
|
|
|
$this->assertIsA($e, 'InvalidArgumentException');
|
2014-02-11 14:29:41 -05:00
|
|
|
}
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-11 14:29:41 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2013-02-28 12:22:55 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testQueryFunctionAlias()
|
2012-11-08 20:02:31 -05:00
|
|
|
{
|
|
|
|
$db = Query();
|
2013-02-28 12:22:55 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
$this->assertTrue($this->db === $db);
|
2012-11-08 20:02:31 -05:00
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2013-04-25 08:15:56 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testFunctionGet()
|
2013-04-25 08:15:56 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, COUNT(id) as count')
|
|
|
|
->from('test')
|
|
|
|
->group_by('id')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGet()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->get('test');
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-11-07 08:42:34 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-11-08 14:28:49 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testPrefixGet()
|
2012-11-07 08:42:34 -05:00
|
|
|
{
|
|
|
|
$query = $this->db->from('test')->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
2014-02-25 13:47:35 -05:00
|
|
|
$this->assertTrue($this->db->num_rows() > 0);
|
2012-11-07 08:42:34 -05:00
|
|
|
}
|
2012-11-08 14:28:49 -05:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetWNumRows()
|
2012-09-27 13:41:29 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->get('test');
|
2012-09-27 13:41:29 -04:00
|
|
|
$numrows = count($query->fetchAll(PDO::FETCH_NUM));
|
|
|
|
|
|
|
|
$this->assertEqual($this->db->num_rows(), $numrows);
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetLimit()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->get('test', 2);
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetLimitSkip()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->get('test', 2, 1);
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetWhere()
|
2012-04-17 08:29:28 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->get_where('test', array('id !=' => 1), 2, 1);
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-17 08:29:28 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testHaving()
|
2012-04-17 14:22:51 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2012-04-17 14:22:51 -04:00
|
|
|
->group_by('id')
|
|
|
|
->having(array('id >' => 1))
|
|
|
|
->having('id !=', 3)
|
|
|
|
->get();
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-17 14:22:51 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrHaving()
|
2012-04-17 14:22:51 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2012-04-17 14:22:51 -04:00
|
|
|
->group_by('id')
|
|
|
|
->having(array('id >' => 1))
|
|
|
|
->or_having('id !=', 3)
|
|
|
|
->get();
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-17 14:22:51 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-14 22:08:19 -05:00
|
|
|
// ! Select tests
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-03-19 13:24:36 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectWhereGet()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
|
|
|
->where('id >', 1)
|
|
|
|
->where('id <', 900)
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test', 2, 1);
|
2012-03-19 13:24:36 -04:00
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
|
|
|
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectWhereGet2()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
|
|
|
->where('id !=', 1)
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test', 2, 1);
|
2012-03-19 13:24:36 -04:00
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectMax()
|
2012-04-13 12:49:13 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select_max('id', 'di')
|
2012-11-07 08:42:34 -05:00
|
|
|
->get('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-13 12:49:13 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectMin()
|
2012-04-13 12:49:13 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select_min('id', 'di')
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-13 12:49:13 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testMultiOrderBy()
|
2012-08-22 21:17:27 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2012-08-22 21:17:27 -04:00
|
|
|
->order_by('id, key')
|
|
|
|
->get();
|
2012-08-24 12:17:08 -04:00
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-14 22:08:19 -05:00
|
|
|
// ! Grouping tests
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGroup()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->group_start()
|
|
|
|
->where('id >', 1)
|
|
|
|
->where('id <', 900)
|
|
|
|
->group_end()
|
|
|
|
->limit(2, 1)
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-04-08 17:13:41 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrGroup()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->group_start()
|
|
|
|
->where('id >', 1)
|
|
|
|
->where('id <', 900)
|
|
|
|
->group_end()
|
|
|
|
->or_group_start()
|
|
|
|
->where('id =', 0)
|
|
|
|
->group_end()
|
|
|
|
->limit(2, 1)
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-04-08 17:13:41 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrNotGroup()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->group_start()
|
|
|
|
->where('id >', 1)
|
|
|
|
->where('id <', 900)
|
|
|
|
->group_end()
|
|
|
|
->or_not_group_start()
|
|
|
|
->where('id =', 0)
|
|
|
|
->group_end()
|
|
|
|
->limit(2, 1)
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-24 12:17:08 -04:00
|
|
|
|
2014-04-24 14:50:53 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
public function testGroupCamelCase()
|
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
|
|
|
->from('test')
|
|
|
|
->groupStart()
|
|
|
|
->where('id >', 1)
|
|
|
|
->where('id <', 900)
|
|
|
|
->groupEnd()
|
|
|
|
->orNotGroupStart()
|
|
|
|
->where('id =', 0)
|
|
|
|
->groupEnd()
|
|
|
|
->limit(2, 1)
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-14 22:08:19 -05:00
|
|
|
// ! Where In tests
|
2012-08-24 12:17:08 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testWhereIn()
|
2012-08-24 12:17:08 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2012-08-24 12:17:08 -04:00
|
|
|
->where_in('id', array(0, 6, 56, 563, 341))
|
|
|
|
->get();
|
2012-08-22 21:17:27 -04:00
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrWhereIn()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->where('key', 'false')
|
|
|
|
->or_where_in('id', array(0, 6, 56, 563, 341))
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testWhereNotIn()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->where('key', 'false')
|
|
|
|
->where_not_in('id', array(0, 6, 56, 563, 341))
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrWhereNotIn()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->where('key', 'false')
|
|
|
|
->or_where_not_in('id', array(0, 6, 56, 563, 341))
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectAvg()
|
2012-04-13 12:49:13 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select_avg('id', 'di')
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-13 12:49:13 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectSum()
|
2012-04-13 12:49:13 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select_sum('id', 'di')
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-13 12:49:13 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectDistinct()
|
2012-04-13 16:50:05 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select_sum('id', 'di')
|
|
|
|
->distinct()
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-13 16:50:05 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-03-19 13:24:36 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectGet()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test', 2, 1);
|
2012-03-19 13:24:36 -04:00
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectFromGet()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test ct')
|
2012-03-19 13:24:36 -04:00
|
|
|
->where('id >', 1)
|
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSelectFromLimitGet()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test ct')
|
2012-03-19 13:24:36 -04:00
|
|
|
->where('id >', 1)
|
|
|
|
->limit(3)
|
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-17 08:29:28 -04:00
|
|
|
// ! Query modifier tests
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrderBy()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2012-03-19 13:24:36 -04:00
|
|
|
->where('id >', 0)
|
|
|
|
->where('id <', 9000)
|
|
|
|
->order_by('id', 'DESC')
|
|
|
|
->order_by('k', 'ASC')
|
|
|
|
->limit(5,2)
|
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrderByRandom()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2012-03-19 13:24:36 -04:00
|
|
|
->where('id >', 0)
|
|
|
|
->where('id <', 9000)
|
|
|
|
->order_by('id', 'rand')
|
|
|
|
->limit(5,2)
|
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGroupBy()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2012-03-19 13:24:36 -04:00
|
|
|
->where('id >', 0)
|
|
|
|
->where('id <', 9000)
|
|
|
|
->group_by('k')
|
2013-12-06 23:00:32 -05:00
|
|
|
->group_by(array('id','val'))
|
2012-03-19 13:24:36 -04:00
|
|
|
->order_by('id', 'DESC')
|
|
|
|
->order_by('k', 'ASC')
|
|
|
|
->limit(5,2)
|
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
//public function testOr
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrWhere()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2014-02-18 19:29:58 -05:00
|
|
|
->from('test')
|
2012-03-19 13:24:36 -04:00
|
|
|
->where(' id ', 1)
|
|
|
|
->or_where('key >', 0)
|
|
|
|
->limit(2, 1)
|
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testLike()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2012-03-19 13:24:36 -04:00
|
|
|
->like('key', 'og')
|
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrLike()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->like('key', 'og')
|
|
|
|
->or_like('key', 'val')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testOrNotLike()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->like('key', 'og', 'before')
|
|
|
|
->or_not_like('key', 'val')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testNotLike()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->like('key', 'og', 'before')
|
|
|
|
->not_like('key', 'val')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testLikeBefore()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->like('key', 'og', 'before')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testLikeAfter()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test')
|
2013-12-06 23:00:32 -05:00
|
|
|
->like('key', 'og', 'after')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testJoin()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test ct')
|
2012-11-07 08:42:34 -05:00
|
|
|
->join('join cj', 'cj.id = ct.id')
|
2012-03-19 13:24:36 -04:00
|
|
|
->get();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2013-05-01 15:59:23 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testLeftJoin()
|
2013-05-01 15:59:23 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test ct')
|
2013-05-01 15:59:23 -04:00
|
|
|
->join('join cj', 'cj.id = ct.id', 'left')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testInnerJoin()
|
2013-05-01 15:59:23 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->from('test ct')
|
2013-05-01 15:59:23 -04:00
|
|
|
->join('join cj', 'cj.id = ct.id', 'inner')
|
|
|
|
->get();
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-17 08:29:28 -04:00
|
|
|
// ! DB update tests
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testInsert()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->set('id', 98)
|
|
|
|
->set('key', 84)
|
|
|
|
->set('val', 120)
|
2012-11-07 08:42:34 -05:00
|
|
|
->insert('test');
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testInsertArray()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
|
|
|
$query = $this->db->insert('test', array(
|
|
|
|
'id' => 587,
|
|
|
|
'key' => 1,
|
|
|
|
'val' => 2,
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-05-03 13:07:34 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testInsertBatch()
|
2013-05-03 13:07:34 -04:00
|
|
|
{
|
|
|
|
$data = array(
|
|
|
|
array(
|
|
|
|
'id' => 544,
|
|
|
|
'key' => 3,
|
|
|
|
'val' => 7,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'id' => 89,
|
|
|
|
'key' => 34,
|
2014-04-03 13:28:30 -04:00
|
|
|
'val' => "10 o'clock",
|
2013-05-03 13:07:34 -04:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'id' => 48,
|
|
|
|
'key' => 403,
|
|
|
|
'val' => 97,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$query = $this->db->insert_batch('test', $data);
|
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testUpdate()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-02-18 14:50:20 -05:00
|
|
|
$query = $this->db->where('id', 7)
|
2014-02-18 19:29:58 -05:00
|
|
|
->update('test', array(
|
2014-02-18 14:50:20 -05:00
|
|
|
'id' => 7,
|
2013-12-06 23:00:32 -05:00
|
|
|
'key' => 'gogle',
|
|
|
|
'val' => 'non-word'
|
|
|
|
));
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testSetArrayUpdate()
|
2012-10-24 20:19:39 -04:00
|
|
|
{
|
|
|
|
$array = array(
|
2014-02-18 14:50:20 -05:00
|
|
|
'id' => 22,
|
2012-10-24 20:19:39 -04:00
|
|
|
'key' => 'gogle',
|
|
|
|
'val' => 'non-word'
|
|
|
|
);
|
|
|
|
|
|
|
|
$query = $this->db->set($array)
|
2014-02-18 14:50:20 -05:00
|
|
|
->where('id', 22)
|
2014-02-18 19:29:58 -05:00
|
|
|
->update('test');
|
2012-10-24 20:19:39 -04:00
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testWhereSetUpdate()
|
2012-10-24 20:19:39 -04:00
|
|
|
{
|
2014-02-18 14:50:20 -05:00
|
|
|
$query = $this->db->where('id', 36)
|
|
|
|
->set('id', 36)
|
2012-10-24 20:19:39 -04:00
|
|
|
->set('key', 'gogle')
|
|
|
|
->set('val', 'non-word')
|
2014-02-17 20:10:47 -05:00
|
|
|
->update('test');
|
2012-10-24 20:19:39 -04:00
|
|
|
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testDelete()
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-06-09 17:02:14 -04:00
|
|
|
//$this->markTestSkipped();
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->delete('test', array('id' => 5));
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-17 08:29:28 -04:00
|
|
|
// ! Non-data read queries
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testCountAll()
|
2012-04-10 14:06:34 -04:00
|
|
|
{
|
2012-11-07 08:42:34 -05:00
|
|
|
$query = $this->db->count_all('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-17 08:29:28 -04:00
|
|
|
$this->assertTrue(is_numeric($query));
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testCountAllResults()
|
2012-04-17 11:37:39 -04:00
|
|
|
{
|
2012-11-07 08:42:34 -05:00
|
|
|
$query = $this->db->count_all_results('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-17 11:37:39 -04:00
|
|
|
$this->assertTrue(is_numeric($query));
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testCountAllResults2()
|
2012-04-17 11:37:39 -04:00
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
2012-11-07 08:42:34 -05:00
|
|
|
->from('test')
|
2012-04-17 11:37:39 -04:00
|
|
|
->where(' id ', 1)
|
|
|
|
->or_where('key >', 0)
|
|
|
|
->limit(2, 1)
|
|
|
|
->count_all_results();
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-17 11:37:39 -04:00
|
|
|
$this->assertTrue(is_numeric($query));
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testNumRows()
|
2012-04-20 16:33:40 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$query = $this->db->get('test');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-04-20 16:33:40 -04:00
|
|
|
$this->assertTrue(is_numeric($this->db->num_rows()));
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-14 22:08:19 -05:00
|
|
|
// ! Compiled Query tests
|
2013-12-06 23:00:32 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetCompiledSelect()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$sql = $this->db->get_compiled_select('test');
|
|
|
|
$qb_res = $this->db->get('test');
|
2013-12-06 23:00:32 -05:00
|
|
|
$sql_res = $this->db->query($sql);
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-06-09 17:02:14 -04:00
|
|
|
$this->assertIsA($qb_res,'PDOStatement', "Query Builder Result is a PDO Statement");
|
|
|
|
$this->assertIsA($sql_res, 'PDOStatement', "SQL Result is a PDO Statement");
|
|
|
|
//$this->assertEquals($qb_res, $sql_res);
|
2013-12-06 23:00:32 -05:00
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetCompiledUpdate()
|
2013-12-09 19:46:34 -05:00
|
|
|
{
|
|
|
|
$sql = $this->db->set(array(
|
|
|
|
'id' => 4,
|
|
|
|
'key' => 'foo',
|
|
|
|
'val' => 'baz'
|
2014-02-18 19:29:58 -05:00
|
|
|
))->get_compiled_update('test');
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-09 19:46:34 -05:00
|
|
|
$this->assertTrue(is_string($sql));
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetCompiledInsert()
|
2013-12-09 19:46:34 -05:00
|
|
|
{
|
|
|
|
$sql = $this->db->set(array(
|
|
|
|
'id' => 4,
|
|
|
|
'key' => 'foo',
|
|
|
|
'val' => 'baz'
|
2014-02-18 19:29:58 -05:00
|
|
|
))->get_compiled_insert('test');
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-09 19:46:34 -05:00
|
|
|
$this->assertTrue(is_string($sql));
|
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testGetCompiledDelete()
|
2013-12-09 19:46:34 -05:00
|
|
|
{
|
|
|
|
$sql = $this->db->where('id', 4)
|
2014-02-18 19:29:58 -05:00
|
|
|
->get_compiled_delete('test');
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-09 19:46:34 -05:00
|
|
|
$this->assertTrue(is_string($sql));
|
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-07-26 13:21:24 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-14 22:08:19 -05:00
|
|
|
// ! Error tests
|
2012-07-26 13:21:24 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-07-26 13:21:24 -04:00
|
|
|
/**
|
|
|
|
* Handles invalid drivers
|
|
|
|
*/
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testBadDriver()
|
2012-07-26 13:21:24 -04:00
|
|
|
{
|
|
|
|
$params = array(
|
|
|
|
'host' => '127.0.0.1',
|
|
|
|
'port' => '3306',
|
|
|
|
'database' => 'test',
|
|
|
|
'user' => 'root',
|
|
|
|
'pass' => NULL,
|
|
|
|
'type' => 'QGYFHGEG'
|
|
|
|
);
|
2014-02-25 13:47:35 -05:00
|
|
|
|
|
|
|
try
|
2014-02-14 22:08:19 -05:00
|
|
|
{
|
|
|
|
$this->db = Query($params);
|
|
|
|
}
|
2014-04-02 17:08:50 -04:00
|
|
|
catch(\Query\BadDBDriverException $e)
|
2014-02-14 22:08:19 -05:00
|
|
|
{
|
2014-04-02 17:08:50 -04:00
|
|
|
$this->assertInstanceOf('\\Query\\BadDBDriverException', $e);
|
2014-02-14 22:08:19 -05:00
|
|
|
}
|
2012-07-26 13:21:24 -04:00
|
|
|
}
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2012-07-27 12:05:29 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testBadMethod()
|
2013-12-06 23:00:32 -05:00
|
|
|
{
|
2014-02-14 22:08:19 -05:00
|
|
|
try
|
|
|
|
{
|
2014-04-08 17:13:41 -04:00
|
|
|
$this->db->foo();
|
2014-02-14 22:08:19 -05:00
|
|
|
}
|
|
|
|
catch(BadMethodCallException $e)
|
|
|
|
{
|
|
|
|
$this->assertInstanceOf('BadMethodCallException', $e);
|
|
|
|
}
|
2013-12-06 23:00:32 -05:00
|
|
|
}
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-09 19:46:34 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testBadNumRows()
|
2013-12-09 19:46:34 -05:00
|
|
|
{
|
|
|
|
$this->db->set(array(
|
|
|
|
'id' => 999,
|
|
|
|
'key' => 'ring',
|
|
|
|
'val' => 'sale'
|
2014-02-18 19:29:58 -05:00
|
|
|
))->insert('test');
|
2014-02-25 13:47:35 -05:00
|
|
|
|
2013-12-09 19:46:34 -05:00
|
|
|
$res = $this->db->num_rows();
|
|
|
|
$this->assertEqual(NULL, $res);
|
|
|
|
}
|
2012-03-19 13:24:36 -04:00
|
|
|
}
|
|
|
|
|
2012-04-13 16:50:05 -04:00
|
|
|
// End of db_qb_test.php
|