1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-05 15:16:16 +02:00
php-phpbb/tests/profilefields/manager_test.php
Tristan Darricau b266ebbcef [ticket/16741] Test fixes
PHPBB3-16741
2021-11-09 02:49:56 +01:00

187 lines
5.3 KiB
PHP

<?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 manager_test extends phpbb_database_test_case
{
/** @var \phpbb\config\db_text */
protected $config_text;
/** @var \phpbb\db\driver\driver_interface */
protected $db;
/** @var \Doctrine\DBAL\Connection */
protected $db_doctrine;
/** @var \phpbb\db\tools\doctrine */
protected $db_tools;
/** @var \phpbb\log\log_interface */
protected $log;
/** @var \phpbb\profilefields\manager */
protected $manager;
/** @var string Table prefix */
protected $table_prefix;
/**
* {@inheritdoc}
*/
public function getDataSet()
{
return $this->createXMLDataSet(__DIR__ . '/fixtures/manager.xml');
}
protected function setUp(): void
{
parent::setUp();
global $phpbb_root_path, $phpEx, $table_prefix;
$this->db = $this->new_dbal();
$this->db_doctrine = $this->new_doctrine_dbal();
$this->db_tools = $this->getMockBuilder('\phpbb\db\tools\doctrine')
->setConstructorArgs([$this->db_doctrine])
->getMock();
$this->config_text = new \phpbb\config\db_text($this->db, $table_prefix . 'config_text');
$this->table_prefix = $table_prefix;
$container = new phpbb_mock_container_builder();
$dispatcher = new phpbb_mock_event_dispatcher();
$template = $this->getMockBuilder('\phpbb\template\template')
->disableOriginalConstructor()
->getMock();
$auth = new \phpbb\auth\auth();
$language = new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx));
$collection = new \phpbb\di\service_collection($container);
$user = new \phpbb\user($language, '\phpbb\datetime');
$user->data['user_id'] = 2;
$user->ip = '';
$this->log = new \phpbb\log\log($this->db, $user, $auth, $dispatcher, $phpbb_root_path, 'adm/', $phpEx, $table_prefix . 'log');
$this->manager = new \phpbb\profilefields\manager(
$auth,
$this->config_text,
$this->db,
$this->db_tools,
$dispatcher,
$language,
$this->log,
$template,
$collection,
$user,
$table_prefix . 'profile_fields',
$table_prefix . 'profile_fields_data',
$table_prefix . 'profile_fields_lang',
$table_prefix . 'profile_lang'
);
}
public function test_disable_profilefields()
{
// Disable the profile field type
$this->manager->disable_profilefields('foo_bar_type');
$sql = 'SELECT field_id, field_ident
FROM ' . $this->table_prefix . "profile_fields
WHERE field_active = 1
AND field_type = 'foo_bar_type'";
$this->assertSqlResultEquals([], $sql, 'All profile fields should be disabled');
// Test that the config entry exists
$saved = $this->config_text->get('foo_bar_type.saved');
$saved = (array) json_decode($saved, true);
$this->assertEquals([
1 => 'pf_1',
2 => 'pf_2',
], $saved, 'All disable profile fields should be saved');
}
public function test_enable_profilefields()
{
// Enable the profile field type
$this->manager->enable_profilefields('foo_bar_type');
$sql = 'SELECT field_id
FROM ' . $this->table_prefix . "profile_fields
WHERE field_active = 1
AND field_type = 'foo_bar_type'
ORDER BY field_id ASC";
$this->assertSqlResultEquals([
['field_id' => '1'],
['field_id' => '2'],
], $sql, 'All profile fields should be enabled');
// Test that the config entry was removed
$saved = $this->config_text->get('foo_bar_type.saved');
$this->assertEquals($saved, null, 'All disable profile fields should be removed');
}
public function test_purge_profilefields()
{
$this->db_tools
->expects($this->exactly(2))
->method('sql_column_remove')
->with(
$this->table_prefix . 'profile_fields_data',
$this->stringStartsWith('pf_')
);
// Get the field identifiers
$sql = 'SELECT field_id
FROM ' . $this->table_prefix . "profile_fields
WHERE field_type = 'foo_bar_type'";
$result = $this->db->sql_query($sql);
$rowset = $this->db->sql_fetchrowset($result);
$this->db->sql_freeresult($result);
$field_ids = array_map('intval', array_column($rowset, 'field_id'));
// Purge the profile field type
$this->manager->purge_profilefields('foo_bar_type');
// Test all the profile field tables
$sql = 'SELECT field_id
FROM ' . $this->table_prefix . "profile_fields
WHERE field_type = 'foo_bar_type'";
$this->assertSqlResultEquals([], $sql, 'All profile fields should be removed');
$sql = 'SELECT field_id
FROM ' . $this->table_prefix . "profile_fields_lang
WHERE field_type = 'foo_bar_type'";
$this->assertSqlResultEquals([], $sql, 'All profile fields lang should be removed');
$sql = 'SELECT lang_name
FROM ' . $this->table_prefix . 'profile_lang
WHERE ' . $this->db->sql_in_set('field_id', $field_ids);
$this->assertSqlResultEquals([], $sql, 'All profile fields lang should be removed');
$sql = 'SELECT field_id, field_order
FROM ' . $this->table_prefix . 'profile_fields
ORDER BY field_id ASC';
$this->assertSqlResultEquals([
[
'field_id' => '3',
'field_order' => '1'
]
], $sql, 'Profile fields order should be recalculated, starting by 1');
// Test that the config entry was removed
$saved = $this->config_text->get('foo_bar_type.saved');
$this->assertEquals($saved, null, 'All disable profile fields should be removed');
}
}