aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tree/nestedset_forum_regenerate_test.php
blob: 914cc5f7496f573ac1daa301a8a62488c6a3ee71 (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
<?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__) . '/nestedset_forum_base.php';

class phpbb_tests_tree_nestedset_forum_regenerate_test extends phpbb_tests_tree_nestedset_forum_base
{
	protected $fixed_set = array(
		array('forum_id' => 1, 'parent_id' => 0, 'left_id' => 1, 'right_id' => 6, 'forum_parents' => ''),
		array('forum_id' => 2, 'parent_id' => 1, 'left_id' => 2, 'right_id' => 3, 'forum_parents' => ''),
		array('forum_id' => 3, 'parent_id' => 1, 'left_id' => 4, 'right_id' => 5, 'forum_parents' => ''),

		array('forum_id' => 4, 'parent_id' => 0, 'left_id' => 7, 'right_id' => 12, 'forum_parents' => ''),
		array('forum_id' => 5, 'parent_id' => 4, 'left_id' => 8, 'right_id' => 11, 'forum_parents' => ''),
		array('forum_id' => 6, 'parent_id' => 5, 'left_id' => 9, 'right_id' => 10, 'forum_parents' => ''),

		array('forum_id' => 7, 'parent_id' => 0, 'left_id' => 13, 'right_id' => 22, 'forum_parents' => ''),
		array('forum_id' => 8, 'parent_id' => 7, 'left_id' => 14, 'right_id' => 15, 'forum_parents' => ''),
		array('forum_id' => 9, 'parent_id' => 7, 'left_id' => 16, 'right_id' => 19, 'forum_parents' => ''),
		array('forum_id' => 10, 'parent_id' => 9, 'left_id' => 17, 'right_id' => 18, 'forum_parents' => ''),
		array('forum_id' => 11, 'parent_id' => 7, 'left_id' => 20, 'right_id' => 21, 'forum_parents' => ''),
	);

	public function regenerate_left_right_ids_data()
	{
		return array(
			array('UPDATE phpbb_forums
				SET left_id = 0,
					right_id = 0', false),
			array('UPDATE phpbb_forums
				SET left_id = 28,
					right_id = 28
				WHERE left_id > 12', false),
			array('UPDATE phpbb_forums
				SET left_id = left_id * 2,
					right_id = right_id * 2', false),
			array('UPDATE phpbb_forums
				SET left_id = left_id * 2,
					right_id = right_id * 2
				WHERE left_id > 12', false),
			array('UPDATE phpbb_forums
				SET left_id = left_id - 4,
					right_id = right_id * 4
				WHERE left_id > 4', false),
			array('UPDATE phpbb_forums
				SET left_id = 0,
					right_id = 0
				WHERE left_id > 12', true),
		);
	}

	/**
	* @dataProvider regenerate_left_right_ids_data
	*/
	public function test_regenerate_left_right_ids($breaking_query, $reset_ids)
	{
		$result = $this->db->sql_query($breaking_query);

		$this->assertEquals(23, $this->set->regenerate_left_right_ids(1, 0, $reset_ids));

		$result = $this->db->sql_query('SELECT forum_id, parent_id, left_id, right_id, forum_parents
			FROM phpbb_forums
			ORDER BY left_id, forum_id ASC');
		$this->assertEquals($this->fixed_set, $this->db->sql_fetchrowset($result));
	}
}