Query/tests/core/db_qb_test.php

543 lines
12 KiB
PHP
Raw Normal View History

<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
2012-04-20 13:17:39 -04:00
* @package Query
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/Query
2012-04-20 13:17:39 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
2012-04-10 14:06:34 -04:00
2012-03-19 13:38:49 -04:00
// --------------------------------------------------------------------------
/**
* Query builder parent test class
*/
abstract class QBTest extends UnitTestCase {
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
// ! Get Tests
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestGet()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->get('create_test');
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-09-27 13:41:29 -04:00
public function TestGetWNumRows()
{
if (empty($this->db)) return;
$query = $this->db->get('create_test');
$numrows = count($query->fetchAll(PDO::FETCH_NUM));
$this->assertEqual($this->db->num_rows(), $numrows);
}
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestGetLimit()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->get('create_test', 2);
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestGetLimitSkip()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->get('create_test', 2, 1);
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestGetWhere()
{
if (empty($this->db)) return;
$query = $this->db->get_where('create_test', array('id !=' => 1), 2, 1);
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestHaving()
{
if (empty($this->db)) return;
$query = $this->db->select('id')
->from('create_test')
->group_by('id')
->having(array('id >' => 1))
->having('id !=', 3)
->get();
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestOrHaving()
{
if (empty($this->db)) return;
$query = $this->db->select('id')
->from('create_test')
->group_by('id')
->having(array('id >' => 1))
->or_having('id !=', 3)
->get();
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestGetViews()
{
if (empty($this->db)) return;
$this->assertTrue(is_array($this->db->get_views()));
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
// ! Select Tests
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestSelectWhereGet()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->where('id >', 1)
->where('id <', 900)
->get('create_test', 2, 1);
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestSelectWhereGet2()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->where('id !=', 1)
->get('create_test', 2, 1);
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestSelectMax()
{
if (empty($this->db)) return;
$query = $this->db->select_max('id', 'di')
->get('create_test');
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestSelectMin()
{
if (empty($this->db)) return;
$query = $this->db->select_min('id', 'di')
->get('create_test');
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
public function TestMultiOrderBy()
{
if (empty($this->db)) return;
$query = $this->db->from('create_test')
->order_by('id, key')
->get();
$this->assertIsA($query, 'PDOStatement');
}
// --------------------------------------------------------------------------
public function TestWhereIn()
{
if (empty($this->db)) return;
$query = $this->db->from('create_test')
->where_in('id', array(0, 6, 56, 563, 341))
->get();
$this->assertIsA($query, 'PDOStatement');
}
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestSelectAvg()
{
if (empty($this->db)) return;
$query = $this->db->select_avg('id', 'di')
->get('create_test');
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestSelectSum()
{
if (empty($this->db)) return;
$query = $this->db->select_sum('id', 'di')
->get('create_test');
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestSelectDistinct()
{
if (empty($this->db)) return;
$query = $this->db->select_sum('id', 'di')
->distinct()
->get('create_test');
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestSelectGet()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->get('create_test', 2, 1);
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestSelectFromGet()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->from('create_test ct')
->where('id >', 1)
->get();
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestSelectFromLimitGet()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->from('create_test ct')
->where('id >', 1)
->limit(3)
->get();
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
// ! Query modifier tests
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestOrderBy()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->from('create_test')
->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
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestOrderByRandom()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->from('create_test')
->where('id >', 0)
->where('id <', 9000)
->order_by('id', 'rand')
->limit(5,2)
->get();
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestGroupBy()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->from('create_test')
->where('id >', 0)
->where('id <', 9000)
->group_by('k')
2012-04-10 14:06:34 -04:00
->group_by('id')
->group_by('val')
->order_by('id', 'DESC')
->order_by('k', 'ASC')
->limit(5,2)
->get();
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestOrWhere()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->select('id, key as k, val')
->from('create_test')
->where(' id ', 1)
->or_where('key >', 0)
->limit(2, 1)
->get();
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestLike()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->from('create_test')
->like('key', 'og')
->get();
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestJoin()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->from('create_test')
->join('create_join cj', 'cj.id = create_test.id')
->get();
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
// ! DB update tests
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestInsert()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->set('id', 4)
->set('key', 4)
->set('val', 5)
->insert('create_test');
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestUpdate()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->set('id', 4)
->set('key', 'gogle')
->set('val', 'non-word')
->where('id', 4)
->update('create_test');
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-10-24 20:19:39 -04:00
public function TestSetArrayUpdate()
{
if (empty($this->db)) return;
$array = array(
'id' => 4,
'key' => 'gogle',
'val' => 'non-word'
);
$query = $this->db->set($array)
->where('id', 4)
->update('create_test');
$this->assertIsA($query, 'PDOStatement');
}
// --------------------------------------------------------------------------
public function TestWhereSetUpdate()
{
if (empty($this->db)) return;
$query = $this->db->where('id', 4)
->set('id', 4)
->set('key', 'gogle')
->set('val', 'non-word')
->update('create_test');
$this->assertIsA($query, 'PDOStatement');
}
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestDelete()
{
if (empty($this->db)) return;
2012-04-10 14:06:34 -04:00
$query = $this->db->where('id', 4)->delete('create_test');
2012-04-10 14:06:34 -04:00
$this->assertIsA($query, 'PDOStatement');
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
// ! Non-data read queries
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestCountAll()
2012-04-10 14:06:34 -04:00
{
if (empty($this->db)) return;
$query = $this->db->count_all('create_test');
$this->assertTrue(is_numeric($query));
2012-04-10 14:06:34 -04:00
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestCountAllResults()
{
if (empty($this->db)) return;
$query = $this->db->count_all_results('create_test');
$this->assertTrue(is_numeric($query));
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestCountAllResults2()
{
if (empty($this->db)) return;
$query = $this->db->select('id, key as k, val')
->from('create_test')
->where(' id ', 1)
->or_where('key >', 0)
->limit(2, 1)
->count_all_results();
$this->assertTrue(is_numeric($query));
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestNumRows()
{
$query = $this->db->get('create_test');
$this->assertTrue(is_numeric($this->db->num_rows()));
}
2012-07-26 13:21:24 -04:00
// --------------------------------------------------------------------------
2012-07-27 12:05:29 -04:00
// ! Error Tests
2012-07-26 13:21:24 -04:00
// --------------------------------------------------------------------------
2012-07-26 13:21:24 -04:00
/**
* Handles invalid drivers
*/
public function TestBadDriver()
{
$params = array(
'host' => '127.0.0.1',
'port' => '3306',
'database' => 'test',
'user' => 'root',
'pass' => NULL,
'type' => 'QGYFHGEG'
);
2012-07-26 13:21:24 -04:00
$this->expectException('BadDBDriverException');
2012-07-26 13:21:24 -04:00
$this->db = new Query_Builder($params);
}
2012-07-27 12:05:29 -04:00
// --------------------------------------------------------------------------
2012-07-27 12:05:29 -04:00
public function TestBadConnection()
{
$params = array(
'host' => '127.0.0.1',
'port' => '3306',
'database' => 'test',
'user' => NULL,
'pass' => NULL,
2012-07-27 12:08:55 -04:00
'type' => 'pgsql'
2012-07-27 12:05:29 -04:00
);
2012-07-27 12:05:29 -04:00
$this->expectException('BadConnectionException');
2012-07-27 12:05:29 -04:00
$this->db = new Query_Builder($params);
2012-07-27 12:05:29 -04:00
}
}
// End of db_qb_test.php