aboutsummaryrefslogtreecommitdiffstats
path: root/tests/log/delete_test.php
blob: e8b75d01d9648370f85e88a3baa4d6ed45f7cb8a (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?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.
*
*/

class phpbb_log_delete_test extends phpbb_database_test_case
{
	protected $log;

	public function getDataSet()
	{
		return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/delete_log.xml');
	}

	protected function setUp()
	{
		global $phpbb_root_path, $phpEx, $db, $phpbb_dispatcher, $auth;

		$db = $this->new_dbal();
		$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
		$lang_loader = new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx);
		$lang = new \phpbb\language\language($lang_loader);
		$user = new \phpbb\user($lang, '\phpbb\datetime');
		$user->data['user_id'] = 1;
		$auth = $this->getMock('\phpbb\auth\auth');

		$this->log = new \phpbb\log\log($db, $user, $auth, $phpbb_dispatcher, $phpbb_root_path, 'adm/', $phpEx, LOG_TABLE);

		parent::setUp();
	}

	public function log_delete_data()
	{
		return array(
			array(
				array(1, 2),
				array(16),
				array(),
				'admin',
				false,
				0,
				0,
				0,
				0,
				0,
				0,
				'l.log_id ASC',
				'',
			),
			array(
				array(11),
				array(),
				array('keywords' => 'guest'),
				'mod',
				false,
				0,
				0,
				0,
				0,
				0,
				0,
				'l.log_id ASC',
				'guest',
			),
			array(
				array(4, 5, 7),
				array(),
				array('forum_id' => 12, 'user_id' => 1),
				'mod',
				false,
				0,
				0,
				12,
				0,
				1,
				0,
				'l.log_id ASC',
				'',
			),
			array(
				array(12, 13),
				array(),
				array('forum_id' => array('IN' => array(14, 13))),
				'mod',
				false,
				0,
				0,
				array(13, 14),
				0,
				0,
				0,
				'l.log_id ASC',
				'',
			),
			array(
				array(3, 14, 15),
				array(3),
				array('user_id' => array('>', 1)),
				'critical',
				false,
				0,
				0,
				0,
				0,
				0,
				0,
				'l.log_id ASC',
				'',
			),
			array(
				array(3, 14, 15),
				array(),
				array('keywords' => ''),
				'critical',
				false,
				0,
				0,
				0,
				0,
				0,
				0,
				'l.log_id ASC',
				'',
			),
		);
	}

	/**
	* @dataProvider log_delete_data
	*/
	public function test_log_delete($expected_before, $expected_after, $delete_conditions, $mode, $count_logs, $limit, $offset, $forum_id, $topic_id, $user_id, $log_time, $sort_by, $keywords)
	{
		$this->assertSame($expected_before, $this->get_ids($this->log->get_logs($mode, $count_logs, $limit, $offset, $forum_id, $topic_id, $user_id, $log_time, $sort_by, $keywords)), 'before');
		$this->log->delete($mode, $delete_conditions);
		$this->assertSame($expected_after, $this->get_ids($this->log->get_logs($mode, $count_logs, $limit, $offset, $forum_id, $topic_id, $user_id, $log_time, $sort_by, $keywords)), 'after');
	}

	public function get_ids($logs)
	{
		$ids = array();
		foreach ($logs as $log_entry)
		{
			$ids[] = (int) $log_entry['id'];
		}
		return $ids;
	}
}