summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/database/query_builder/join_test.php
blob: 54b2a4e1863d32b9eb72b600567172d729bb8208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php

class Join_test extends CI_TestCase {

	/**
	 * @var object Database/Query Builder holder
	 */
	protected $db;

	public function set_up()
	{
		$this->db = Mock_Database_Schema_Skeleton::init(DB_DRIVER);

		Mock_Database_Schema_Skeleton::create_tables();
		Mock_Database_Schema_Skeleton::create_data();
	}

	// ------------------------------------------------------------------------

	/**
	 * @see ./mocks/schema/skeleton.php
	 */
	public function test_join_simple()
	{
		$job_user = $this->db->select('job.id as job_id, job.name as job_name, user.id as user_id, user.name as user_name')
							->from('job')
							->join('user', 'user.id = job.id')
							->get()
							->result_array();

		// Check the result
		$this->assertEquals('1', $job_user[0]['job_id']);
		$this->assertEquals('1', $job_user[0]['user_id']);
		$this->assertEquals('Derek Jones', $job_user[0]['user_name']);
		$this->assertEquals('Developer', $job_user[0]['job_name']);
	}

	// ------------------------------------------------------------------------

	public function test_join_escape_is_null()
	{
		$expected = 'SELECT '.$this->db->escape_identifiers('field')
				."\nFROM ".$this->db->escape_identifiers('table1')
				."\nJOIN ".$this->db->escape_identifiers('table2').' ON '.$this->db->escape_identifiers('field').' IS NULL';

		$this->assertEquals(
			$expected,
			$this->db->select('field')->from('table1')->join('table2', 'field IS NULL')->get_compiled_select()
		);

		$expected = 'SELECT '.$this->db->escape_identifiers('field')
				."\nFROM ".$this->db->escape_identifiers('table1')
				."\nJOIN ".$this->db->escape_identifiers('table2').' ON '.$this->db->escape_identifiers('field').' IS NOT NULL';

		$this->assertEquals(
			$expected,
			$this->db->select('field')->from('table1')->join('table2', 'field IS NOT NULL')->get_compiled_select()
		);
	}

	// ------------------------------------------------------------------------

	public function test_join_escape_multiple_conditions()
	{
		// We just need a valid query produced, not one that makes sense
		$fields = array($this->db->protect_identifiers('table1.field1'), $this->db->protect_identifiers('table2.field2'));

		$expected = 'SELECT '.implode(', ', $fields)
				."\nFROM ".$this->db->escape_identifiers('table1')
				."\nLEFT JOIN ".$this->db->escape_identifiers('table2').' ON '.implode(' = ', $fields)
				.' AND '.$fields[0]." = 'foo' AND ".$fields[1].' = 0';

		$result = $this->db->select('table1.field1, table2.field2')
				->from('table1')
				->join('table2', "table1.field1 = table2.field2 AND table1.field1 = 'foo' AND table2.field2 = 0", 'LEFT')
				->get_compiled_select();

		$this->assertEquals($expected, $result);
	}

	// ------------------------------------------------------------------------

	public function test_join_escape_multiple_conditions_with_parentheses()
	{
		// We just need a valid query produced, not one that makes sense
		$fields = array($this->db->protect_identifiers('table1.field1'), $this->db->protect_identifiers('table2.field2'));

		$expected = 'SELECT '.implode(', ', $fields)
				."\nFROM ".$this->db->escape_identifiers('table1')
				."\nRIGHT JOIN ".$this->db->escape_identifiers('table2').' ON '.implode(' = ', $fields)
				.' AND ('.$fields[0]." = 'foo' OR ".$fields[1].' IS NULL)';

		$result = $this->db->select('table1.field1, table2.field2')
				->from('table1')
				->join('table2', "table1.field1 = table2.field2 AND (table1.field1 = 'foo' OR table2.field2 IS NULL)", 'RIGHT')
				->get_compiled_select();

		$this->assertEquals($expected, $result);
	}

}