mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/13713] Add test for all mention sources and controller
PHPBB3-13713
This commit is contained in:
parent
224d753414
commit
29a11cf930
3 changed files with 927 additions and 0 deletions
659
tests/mention/controller_test.php
Normal file
659
tests/mention/controller_test.php
Normal file
|
@ -0,0 +1,659 @@
|
|||
<?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.
|
||||
*
|
||||
*/
|
||||
|
||||
use Symfony\Component\Config\FileLocator;
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
|
||||
|
||||
require_once dirname(__FILE__) . '/../../phpBB/includes/functions_posting.php';
|
||||
|
||||
class phpbb_mention_controller_test extends phpbb_database_test_case
|
||||
{
|
||||
protected $db, $container, $user, $config, $auth, $cache;
|
||||
|
||||
/**
|
||||
* @var \phpbb\mention\controller\mention
|
||||
*/
|
||||
protected $controller;
|
||||
|
||||
/**
|
||||
* @var PHPUnit_Framework_MockObject_MockObject
|
||||
*/
|
||||
protected $request;
|
||||
|
||||
public function getDataSet()
|
||||
{
|
||||
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/mention.xml');
|
||||
}
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
global $auth, $cache, $config, $db, $phpbb_container, $phpbb_dispatcher, $lang, $user, $request, $phpEx, $phpbb_root_path, $user_loader;
|
||||
|
||||
// Database
|
||||
$this->db = $this->new_dbal();
|
||||
$db = $this->db;
|
||||
|
||||
// Auth
|
||||
$auth = $this->createMock('\phpbb\auth\auth');
|
||||
$auth->expects($this->any())
|
||||
->method('acl_gets')
|
||||
->with('a_group', 'a_groupadd', 'a_groupdel')
|
||||
->willReturn(false);
|
||||
|
||||
// Config
|
||||
$config = new \phpbb\config\config(array(
|
||||
'allow_mentions' => true,
|
||||
'mention_names_limit' => 3,
|
||||
));
|
||||
|
||||
$cache_driver = new \phpbb\cache\driver\dummy();
|
||||
$cache = new \phpbb\cache\service(
|
||||
$cache_driver,
|
||||
$config,
|
||||
$db,
|
||||
$phpbb_root_path,
|
||||
$phpEx
|
||||
);
|
||||
|
||||
// Event dispatcher
|
||||
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
||||
|
||||
// Language
|
||||
$lang = new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx));
|
||||
|
||||
// User
|
||||
$user = $this->createMock('\phpbb\user', array(), array(
|
||||
$lang,
|
||||
'\phpbb\datetime'
|
||||
));
|
||||
$user->ip = '';
|
||||
$user->data = array(
|
||||
'user_id' => 2,
|
||||
'username' => 'myself',
|
||||
'is_registered' => true,
|
||||
'user_colour' => '',
|
||||
);
|
||||
|
||||
// Request
|
||||
$this->request = $request = $this->createMock('\phpbb\request\request');
|
||||
|
||||
$request->expects($this->any())
|
||||
->method('is_ajax')
|
||||
->willReturn(true);
|
||||
|
||||
$user_loader = new \phpbb\user_loader($db, $phpbb_root_path, $phpEx, USERS_TABLE);
|
||||
|
||||
// Container
|
||||
$phpbb_container = new ContainerBuilder();
|
||||
|
||||
$loader = new YamlFileLoader($phpbb_container, new FileLocator(__DIR__ . '/fixtures'));
|
||||
$loader->load('services_mention.yml');
|
||||
$phpbb_container->set('user_loader', $user_loader);
|
||||
$phpbb_container->set('user', $user);
|
||||
$phpbb_container->set('language', $lang);
|
||||
$phpbb_container->set('config', $config);
|
||||
$phpbb_container->set('dbal.conn', $db);
|
||||
$phpbb_container->set('auth', $auth);
|
||||
$phpbb_container->set('cache.driver', $cache_driver);
|
||||
$phpbb_container->set('cache', $cache);
|
||||
$phpbb_container->set('group_helper', new \phpbb\group\helper($lang));
|
||||
$phpbb_container->set('text_formatter.utils', new \phpbb\textformatter\s9e\utils());
|
||||
$phpbb_container->set(
|
||||
'text_formatter.s9e.mention_helper',
|
||||
new \phpbb\textformatter\s9e\mention_helper(
|
||||
$this->db,
|
||||
$auth,
|
||||
$user,
|
||||
$phpbb_root_path,
|
||||
$phpEx
|
||||
)
|
||||
);
|
||||
$phpbb_container->setParameter('core.root_path', $phpbb_root_path);
|
||||
$phpbb_container->setParameter('core.php_ext', $phpEx);
|
||||
$phpbb_container->compile();
|
||||
|
||||
// Mention Sources
|
||||
$mention_sources = array('friend', 'group', 'team', 'topic', 'user', 'usergroup');
|
||||
$mention_sources_array = array();
|
||||
foreach ($mention_sources as $source)
|
||||
{
|
||||
$class = $phpbb_container->get('mention.source.' . $source);
|
||||
$mention_sources_array['mention.source.' . $source] = $class;
|
||||
}
|
||||
|
||||
$this->controller = new \phpbb\mention\controller\mention($mention_sources_array, $request, $phpbb_root_path, $phpEx);
|
||||
}
|
||||
|
||||
public function handle_data()
|
||||
{
|
||||
/**
|
||||
* NOTE:
|
||||
* 1) in production comparison with 'myself' is being done in JS
|
||||
* 2) mention_names_limit does not limit the number of returned items
|
||||
*/
|
||||
return [
|
||||
['', 0, [
|
||||
[
|
||||
'name' => 'friend',
|
||||
'type' => 'u',
|
||||
'id' => 7,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'Group we are a member of',
|
||||
'type' => 'g',
|
||||
'id' => 3,
|
||||
'avatar' => [
|
||||
'type' => 'group',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'Normal group',
|
||||
'type' => 'g',
|
||||
'id' => 1,
|
||||
'avatar' => [
|
||||
'type' => 'group',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_normal',
|
||||
'type' => 'u',
|
||||
'id' => 5,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'myself',
|
||||
'type' => 'u',
|
||||
'id' => 2,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'poster',
|
||||
'type' => 'u',
|
||||
'id' => 3,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'replier',
|
||||
'type' => 'u',
|
||||
'id' => 4,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_normal',
|
||||
'type' => 'u',
|
||||
'id' => 5,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_hidden',
|
||||
'type' => 'u',
|
||||
'id' => 6,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'friend',
|
||||
'type' => 'u',
|
||||
'id' => 7,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test',
|
||||
'type' => 'u',
|
||||
'id' => 8,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test1',
|
||||
'type' => 'u',
|
||||
'id' => 9,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test2',
|
||||
'type' => 'u',
|
||||
'id' => 10,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test3',
|
||||
'type' => 'u',
|
||||
'id' => 11,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'Group we are a member of',
|
||||
'type' => 'g',
|
||||
'id' => 3,
|
||||
'avatar' => [
|
||||
'type' => 'group',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
]],
|
||||
['', 1, [
|
||||
[
|
||||
'name' => 'friend',
|
||||
'type' => 'u',
|
||||
'id' => 7,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'Group we are a member of',
|
||||
'type' => 'g',
|
||||
'id' => 3,
|
||||
'avatar' => [
|
||||
'type' => 'group',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'Normal group',
|
||||
'type' => 'g',
|
||||
'id' => 1,
|
||||
'avatar' => [
|
||||
'type' => 'group',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_normal',
|
||||
'type' => 'u',
|
||||
'id' => 5,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'replier',
|
||||
'type' => 'u',
|
||||
'id' => 4,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'poster',
|
||||
'type' => 'u',
|
||||
'id' => 3,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 5,
|
||||
],
|
||||
[
|
||||
'name' => 'myself',
|
||||
'type' => 'u',
|
||||
'id' => 2,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'poster',
|
||||
'type' => 'u',
|
||||
'id' => 3,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'replier',
|
||||
'type' => 'u',
|
||||
'id' => 4,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_normal',
|
||||
'type' => 'u',
|
||||
'id' => 5,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_hidden',
|
||||
'type' => 'u',
|
||||
'id' => 6,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'friend',
|
||||
'type' => 'u',
|
||||
'id' => 7,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test',
|
||||
'type' => 'u',
|
||||
'id' => 8,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test1',
|
||||
'type' => 'u',
|
||||
'id' => 9,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test2',
|
||||
'type' => 'u',
|
||||
'id' => 10,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test3',
|
||||
'type' => 'u',
|
||||
'id' => 11,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'Group we are a member of',
|
||||
'type' => 'g',
|
||||
'id' => 3,
|
||||
'avatar' => [
|
||||
'type' => 'group',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
]],
|
||||
['t', 1, [
|
||||
[
|
||||
'name' => 'team_member_normal',
|
||||
'type' => 'u',
|
||||
'id' => 5,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_normal',
|
||||
'type' => 'u',
|
||||
'id' => 5,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'team_member_hidden',
|
||||
'type' => 'u',
|
||||
'id' => 6,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test',
|
||||
'type' => 'u',
|
||||
'id' => 8,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test1',
|
||||
'type' => 'u',
|
||||
'id' => 9,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test2',
|
||||
'type' => 'u',
|
||||
'id' => 10,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test3',
|
||||
'type' => 'u',
|
||||
'id' => 11,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
]],
|
||||
['test', 1, [
|
||||
[
|
||||
'name' => 'test',
|
||||
'type' => 'u',
|
||||
'id' => 8,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test1',
|
||||
'type' => 'u',
|
||||
'id' => 9,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test2',
|
||||
'type' => 'u',
|
||||
'id' => 10,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
[
|
||||
'name' => 'test3',
|
||||
'type' => 'u',
|
||||
'id' => 11,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
],
|
||||
]],
|
||||
['test1', 1, [[
|
||||
'name' => 'test1',
|
||||
'type' => 'u',
|
||||
'id' => 9,
|
||||
'avatar' => [
|
||||
'type' => 'user',
|
||||
'img' => '',
|
||||
],
|
||||
'rank' => '',
|
||||
'priority' => 0,
|
||||
]]],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider handle_data
|
||||
*/
|
||||
public function test_handle($keyword, $topic_id, $expected_result)
|
||||
{
|
||||
$this->request->expects($this->at(1))
|
||||
->method('variable')
|
||||
->with('keyword', '', true)
|
||||
->willReturn($keyword);
|
||||
$this->request->expects($this->at(2))
|
||||
->method('variable')
|
||||
->with('topic_id', 0)
|
||||
->willReturn($topic_id);
|
||||
$data = json_decode($this->controller->handle()->getContent(), true);
|
||||
$this->assertEquals($expected_result, $data);
|
||||
}
|
||||
}
|
198
tests/mention/fixtures/mention.xml
Normal file
198
tests/mention/fixtures/mention.xml
Normal file
|
@ -0,0 +1,198 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<dataset>
|
||||
<table name="phpbb_groups">
|
||||
<column>group_id</column>
|
||||
<column>group_name</column>
|
||||
<column>group_type</column>
|
||||
<column>group_desc</column>
|
||||
<row>
|
||||
<value>1</value>
|
||||
<value>Normal group</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>2</value>
|
||||
<value>Hidden group</value>
|
||||
<value>2</value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>3</value>
|
||||
<value>Group we are a member of</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
</row>
|
||||
</table>
|
||||
<table name="phpbb_posts">
|
||||
<column>post_id</column>
|
||||
<column>topic_id</column>
|
||||
<column>forum_id</column>
|
||||
<column>poster_id</column>
|
||||
<column>post_time</column>
|
||||
<column>post_text</column>
|
||||
<row>
|
||||
<value>1</value>
|
||||
<value>1</value>
|
||||
<value>1</value>
|
||||
<value>3</value>
|
||||
<value>1</value>
|
||||
<value>Topic's initial post.</value>
|
||||
</row>
|
||||
<row>
|
||||
<value>2</value>
|
||||
<value>1</value>
|
||||
<value>1</value>
|
||||
<value>4</value>
|
||||
<value>2</value>
|
||||
<value>A reply.</value>
|
||||
</row>
|
||||
</table>
|
||||
<table name="phpbb_teampage">
|
||||
<column>group_id</column>
|
||||
<row>
|
||||
<value>1</value>
|
||||
</row>
|
||||
</table>
|
||||
<table name="phpbb_topics">
|
||||
<column>topic_id</column>
|
||||
<column>forum_id</column>
|
||||
<column>topic_poster</column>
|
||||
<row>
|
||||
<value>1</value>
|
||||
<value>1</value>
|
||||
<value>3</value>
|
||||
</row>
|
||||
</table>
|
||||
<table name="phpbb_users">
|
||||
<column>user_id</column>
|
||||
<column>username</column>
|
||||
<column>username_clean</column>
|
||||
<column>user_type</column>
|
||||
<column>user_lastvisit</column>
|
||||
<column>user_permissions</column>
|
||||
<column>user_sig</column>
|
||||
<row>
|
||||
<value>2</value>
|
||||
<value>myself</value>
|
||||
<value>myself</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>3</value>
|
||||
<value>poster</value>
|
||||
<value>poster</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>4</value>
|
||||
<value>replier</value>
|
||||
<value>replier</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>5</value>
|
||||
<value>team_member_normal</value>
|
||||
<value>team_member_normal</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>6</value>
|
||||
<value>team_member_hidden</value>
|
||||
<value>team_member_hidden</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>7</value>
|
||||
<value>friend</value>
|
||||
<value>friend</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>8</value>
|
||||
<value>test</value>
|
||||
<value>test</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>9</value>
|
||||
<value>test1</value>
|
||||
<value>test1</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>10</value>
|
||||
<value>test2</value>
|
||||
<value>test2</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
<row>
|
||||
<value>11</value>
|
||||
<value>test3</value>
|
||||
<value>test3</value>
|
||||
<value>0</value>
|
||||
<value>0</value>
|
||||
<value></value>
|
||||
<value></value>
|
||||
</row>
|
||||
</table>
|
||||
<table name="phpbb_user_group">
|
||||
<column>user_id</column>
|
||||
<column>group_id</column>
|
||||
<column>user_pending</column>
|
||||
<row>
|
||||
<value>2</value>
|
||||
<value>3</value>
|
||||
<value>0</value>
|
||||
</row>
|
||||
<row>
|
||||
<value>5</value>
|
||||
<value>1</value>
|
||||
<value>0</value>
|
||||
</row>
|
||||
<row>
|
||||
<value>6</value>
|
||||
<value>2</value>
|
||||
<value>0</value>
|
||||
</row>
|
||||
</table>
|
||||
<table name="phpbb_zebra">
|
||||
<column>user_id</column>
|
||||
<column>zebra_id</column>
|
||||
<column>friend</column>
|
||||
<column>foe</column>
|
||||
<row>
|
||||
<value>2</value>
|
||||
<value>7</value>
|
||||
<value>1</value>
|
||||
<value>0</value>
|
||||
</row>
|
||||
</table>
|
||||
</dataset>
|
70
tests/mention/fixtures/services_mention.yml
Normal file
70
tests/mention/fixtures/services_mention.yml
Normal file
|
@ -0,0 +1,70 @@
|
|||
imports:
|
||||
- { resource: ../../../phpBB/config/default/container/services_mention.yml }
|
||||
|
||||
services:
|
||||
user_loader:
|
||||
synthetic: true
|
||||
|
||||
user:
|
||||
synthetic: true
|
||||
|
||||
config:
|
||||
synthetic: true
|
||||
|
||||
dbal.conn:
|
||||
synthetic: true
|
||||
|
||||
language:
|
||||
synthetic: true
|
||||
|
||||
auth:
|
||||
synthetic: true
|
||||
|
||||
cache.driver:
|
||||
synthetic: true
|
||||
|
||||
group_helper:
|
||||
synthetic: true
|
||||
|
||||
path_helper:
|
||||
synthetic: true
|
||||
|
||||
request:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.s9e.factory:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.s9e.quote_helper:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.s9e.mention_helper:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.parser:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.s9e.parser:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.renderer:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.s9e.renderer:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.utils:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.s9e.utils:
|
||||
synthetic: true
|
||||
|
||||
text_formatter.data_access:
|
||||
synthetic: true
|
||||
#
|
||||
# test:
|
||||
# class: phpbb\notification\type\test
|
||||
# shared: false
|
||||
# parent: notification.type.base
|
||||
# tags:
|
||||
# - { name: notification.type }
|
Loading…
Add table
Reference in a new issue