aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functions_database_helper/update_rows_avoiding_duplicates_notify_status_test.php
blob: 150b091ceba5d3e08015dbcc62c16abec83a5be0 (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
<?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_database_helper.php';

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

	public static function fixture_data()
	{
		return array(
			// description
			// from array
			// to value
			// expected count with to value post update
			// expected notify_status values
			array(
				'trivial',
				array(1),
				1000,
				1,
				1,
			),
			array(
				'no conflict',
				array(2),
				3,
				2,
				1,
			),
			array(
				'conflict, same notify status',
				array(4),
				5,
				1,
				1,
			),
			array(
				'conflict, notify status 0 into 1',
				array(6),
				7,
				1,
				0,
			),
			array(
				'conflict, notify status 1 into 0',
				array(8),
				9,
				1,
				0,
			),
			array(
				'conflict and no conflict',
				array(10),
				11,
				2,
				0,
			),
		);
	}

	/**
	* @dataProvider fixture_data
	*/
	public function test_update($description, $from, $to, $expected_result_count, $expected_notify_status)
	{
		$db = $this->new_dbal();

		phpbb_update_rows_avoiding_duplicates_notify_status($db, TOPICS_WATCH_TABLE, 'topic_id', $from, $to);

		$sql = 'SELECT COUNT(*) AS remaining_rows
			FROM ' . TOPICS_WATCH_TABLE . '
			WHERE topic_id = ' . (int) $to;
		$result = $db->sql_query($sql);
		$result_count = $db->sql_fetchfield('remaining_rows');
		$db->sql_freeresult($result);

		$this->assertEquals($expected_result_count, $result_count);

		// user id of 1 is the user being updated
		$sql = 'SELECT notify_status
			FROM ' . TOPICS_WATCH_TABLE . '
			WHERE topic_id = ' . (int) $to . '
			AND user_id = 1';
		$result = $db->sql_query($sql);
		$notify_status = $db->sql_fetchfield('notify_status');
		$db->sql_freeresult($result);

		$this->assertEquals($expected_notify_status, $notify_status);
	}
}