mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/12639] Update tests to use a dataProvider
PHPBB3-12639
This commit is contained in:
parent
9c497a7b46
commit
fd9c17ca04
1 changed files with 128 additions and 31 deletions
|
@ -1,9 +1,13 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @package testing
|
* This file is part of the phpBB Forum Software package.
|
||||||
* @copyright (c) 2012 phpBB Group
|
*
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
* @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.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -13,53 +17,146 @@ require_once dirname(__FILE__) . '/../../phpBB/includes/utf/utf_tools.php';
|
||||||
|
|
||||||
class phpbb_log_delete_test extends phpbb_database_test_case
|
class phpbb_log_delete_test extends phpbb_database_test_case
|
||||||
{
|
{
|
||||||
|
protected $log;
|
||||||
|
|
||||||
public function getDataSet()
|
public function getDataSet()
|
||||||
{
|
{
|
||||||
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/delete_log.xml');
|
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/delete_log.xml');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_log_delete()
|
protected function setUp()
|
||||||
{
|
{
|
||||||
global $phpbb_root_path, $phpEx, $db, $phpbb_dispatcher, $auth;
|
global $phpbb_root_path, $phpEx, $db, $phpbb_dispatcher, $auth;
|
||||||
|
|
||||||
$db = $this->new_dbal();
|
$db = $this->new_dbal();
|
||||||
$cache = new phpbb_mock_cache;
|
|
||||||
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
||||||
$user = $this->getMock('\phpbb\user');
|
$user = $this->getMock('\phpbb\user');
|
||||||
$user->data['user_id'] = 1;
|
$user->data['user_id'] = 1;
|
||||||
$auth = $this->getMock('\phpbb\auth\auth');
|
$auth = $this->getMock('\phpbb\auth\auth');
|
||||||
|
|
||||||
$log = new \phpbb\log\log($db, $user, $auth, $phpbb_dispatcher, $phpbb_root_path, 'adm/', $phpEx, LOG_TABLE);
|
$this->log = new \phpbb\log\log($db, $user, $auth, $phpbb_dispatcher, $phpbb_root_path, 'adm/', $phpEx, LOG_TABLE);
|
||||||
|
|
||||||
// Delete all admin logs
|
parent::setUp();
|
||||||
$this->assertCount(2, $log->get_logs('admin'));
|
}
|
||||||
$log->delete('admin');
|
|
||||||
// One entry is added to the admin log when the logs are purged
|
|
||||||
$this->assertCount(1, $log->get_logs('admin'));
|
|
||||||
|
|
||||||
// Delete with keyword
|
public function log_delete_data()
|
||||||
$this->assertCount(1, $log->get_logs('mod', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC', 'guest'));
|
{
|
||||||
$log->delete('mod', array('keywords' => 'guest'));
|
return array(
|
||||||
$this->assertEmpty($log->get_logs('mod', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC', 'guest'));
|
array(
|
||||||
|
array(1, 2),
|
||||||
// Delete with simples conditions
|
array(16),
|
||||||
$this->assertCount(3, $log->get_logs('mod', false, 0, 0, 12, 0, 1, 0, 'l.log_time DESC'));
|
array(),
|
||||||
$log->delete('mod', array('forum_id' => 12, 'user_id' => 1));
|
'admin',
|
||||||
$this->assertEmpty($log->get_logs('mod', false, 0, 0, 12, 0, 1, 0, 'l.log_time DESC'));
|
false,
|
||||||
|
0,
|
||||||
// Delete with IN condition
|
0,
|
||||||
$this->assertCount(2, $log->get_logs('mod', false, 0, 0, array(13, 14), 0, 0, 0, 'l.log_time DESC'));
|
0,
|
||||||
$log->delete('mod', array('forum_id' => array('IN' => array(14, 13))));
|
0,
|
||||||
$this->assertEmpty($log->get_logs('mod', false, 0, 0, array(13, 14), 0, 0, 0, 'l.log_time DESC'));
|
0,
|
||||||
|
0,
|
||||||
// Delete with a custom condition (ie: WHERE x >= 10)
|
'l.log_time DESC',
|
||||||
$this->assertCount(3, $log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));
|
'',
|
||||||
$log->delete('critical', array('user_id' => array('>', 1)));
|
),
|
||||||
$this->assertCount(1, $log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));
|
array(
|
||||||
|
array(11),
|
||||||
|
array(),
|
||||||
|
array('keywords' => 'guest'),
|
||||||
|
'mod',
|
||||||
|
false,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
'l.log_time DESC',
|
||||||
|
'guest',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
array(4, 5, 7),
|
||||||
|
array(),
|
||||||
|
array('forum_id' => 12, 'user_id' => 1),
|
||||||
|
'mod',
|
||||||
|
false,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
12,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
0,
|
||||||
|
'l.log_time DESC',
|
||||||
|
'',
|
||||||
|
),
|
||||||
|
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_time DESC',
|
||||||
|
'',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
array(3, 14, 15),
|
||||||
|
array(3),
|
||||||
|
array('user_id' => array('>', 1)),
|
||||||
|
'critical',
|
||||||
|
false,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
'l.log_time DESC',
|
||||||
|
'',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
array(3, 14, 15),
|
||||||
|
array(),
|
||||||
|
array('keywords' => ''),
|
||||||
|
'critical',
|
||||||
|
false,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
'l.log_time DESC',
|
||||||
|
'',
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @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->assertEquals($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->assertEquals($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');
|
||||||
|
/*
|
||||||
// Delete with an empty keyword list
|
// Delete with an empty keyword list
|
||||||
$this->assertCount(1, $log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));
|
$this->assertCount(1, $log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));
|
||||||
$log->delete('critical', array('keywords' => ''));
|
$log->delete('critical', array('keywords' => ''));
|
||||||
$this->assertEmpty($log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));
|
$this->assertEmpty($log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));*/
|
||||||
|
}
|
||||||
|
|
||||||
|
public function get_ids($logs)
|
||||||
|
{
|
||||||
|
$ids = array();
|
||||||
|
foreach ($logs as $log_entry)
|
||||||
|
{
|
||||||
|
$ids[] = $log_entry['id'];
|
||||||
|
}
|
||||||
|
return $ids;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue