aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/boolean_processor_test.php
blob: 081a5ac64da8fa612565690a9cfab7ff78461613 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
require_once dirname(__FILE__) . '/../../phpBB/includes/utf/utf_tools.php';

class phpbb_boolean_processor_test extends phpbb_database_test_case
{
	public function getDataSet()
	{
		return $this->createXMLDataSet(dirname(__FILE__).'/fixtures/boolean_processor.xml');
	}

	public function test_triple_and_with_in()
	{
		$db = $this->new_dbal();

		$db->sql_return_on_error(true);

		$sql_ary = array(
			'SELECT'	=> 'u.user_id',
			'FROM'		=> array(
				'phpbb_users'		=> 'u',
				'phpbb_user_group'	=> 'ug',
			),
			'WHERE'		=> array('AND',
				array('ug.user_id', 'IN', array(1, 2, 3, 4)),
				array('ug.group_id', '=', 1),
				array('u.user_id', '=', 'ug.user_id'),
			),
			'ORDER_BY'	=> 'u.user_id',
		);
		$sql = $db->sql_build_query('SELECT', $sql_ary);
		$result = $db->sql_query($sql);

		$db->sql_return_on_error(false);

		$this->assertEquals(array(
			array('user_id' => '1'),
			array('user_id' => '2'),
			array('user_id' => '3'),
			), $db->sql_fetchrowset($result),
	}

	public function test_double_and_with_not_of_or()
	{
		$db = $this->new_dbal();

		$db->sql_return_on_error(true);

		$sql_ary = array(
			'SELECT'	=> 'u.user_id',
			'FROM'		=> array(
				'phpbb_users'		=> 'u',
				'phpbb_user_group'	=> 'ug',
			),
			'WHERE'		=> array('AND',
				array('NOT',
					array('OR',
						array('ug.group_id', '=', 1),
						array('ug.group_id', '=', 2),
					),
				),
				array('u.user_id', '=', 'ug.user_id'),
			),
			'ORDER_BY'	=> 'u.user_id',
		);
		$sql = $db->sql_build_query('SELECT', $sql_ary);
		$result = $db->sql_query($sql);

		$db->sql_return_on_error(false);

		$this->assertEquals(array(), $db->sql_fetchrowset($result));
	}

	public function test_triple_and_with_is_null()
	{
		$db = $this->new_dbal();

		$db->sql_return_on_error(true);

		$sql_ary = array(
			'SELECT'	=> 'u.username',
			'FROM'		=> array(
				'phpbb_users'		=> 'u',
				'phpbb_user_group'	=> 'ug',
			),
			'LEFT_JOIN'	=> array(
				array(
					'FROM'	=> array(
						'phpbb_banlist'	=> 'b',
					),
					'ON'	=> 'u.user_id = b.ban_userid',
				),
			),
			'WHERE'		=> array('AND',
				array('ug.group_id', '=', 1),
				array('u.user_id', '=', 'ug.user_id'),
				array('b.ban_id', 'IS', NULL),
			),
			'ORDER_BY'	=> 'u.username',
		);
		$sql = $db->sql_build_query('SELECT', $sql_ary);
		$result = $db->sql_query($sql);

		$db->sql_return_on_error(false);

		$this->assertEquals(array(
			array('username' => 'helper'),
			array('username' => 'mass email'),
			), $db->sql_fetchrowset($result));
	}
}