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
|
<?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__) . '/attachments_mock_feed.php');
class phpbb_feed_attachments_base_test extends phpbb_database_test_case
{
protected $filesystem;
/** @var \phpbb_feed_attachments_mock_feed */
protected $attachments_mocks_feed;
public function getDataSet()
{
return $this->createXMLDataSet(dirname(__FILE__) . '/../extension/fixtures/extensions.xml');
}
public function setUp()
{
global $phpbb_root_path, $phpEx;
$this->filesystem = new \phpbb\filesystem();
$config = new \phpbb\config\config(array());
$path_helper = new \phpbb\path_helper(
new \phpbb\symfony_request(
new phpbb_mock_request()
),
$this->filesystem,
$this->getMock('\phpbb\request\request'),
$phpbb_root_path,
'php'
);
$user = new \phpbb\user(
new \phpbb\language\language(
new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx)
),
'\phpbb\datetime'
);
$feed_helper = new \phpbb\feed\helper($config, $path_helper, $user);
$db = $this->new_dbal();
$cache = new \phpbb_mock_cache();
$auth = new \phpbb\auth\auth();
$content_visibility = new \phpbb\content_visibility(
$auth,
$config,
new \phpbb_mock_event_dispatcher(),
$db,
$user,
$phpbb_root_path,
$phpEx,
FORUMS_TABLE,
POSTS_TABLE,
TOPICS_TABLE,
USERS_TABLE
);
$this->attachments_mocks_feed = new \phpbb_feed_attachments_mock_feed(
$feed_helper,
$config,
$db,
$cache,
$user,
$auth,
$content_visibility,
new \phpbb_mock_event_dispatcher(),
$phpEx
);
}
public function data_fetch_attachments()
{
return array(
array(array(0), array(0)),
array(array(), array(1)),
array(array(), array(), 'RuntimeException')
);
}
/**
* @dataProvider data_fetch_attachments
*/
public function test_fetch_attachments($post_ids, $topic_ids, $expected_exception = false)
{
$this->attachments_mocks_feed->post_ids = $post_ids;
$this->attachments_mocks_feed->topic_ids = $topic_ids;
if ($expected_exception !== false)
{
$this->setExpectedException($expected_exception);
$this->attachments_mocks_feed->get_sql();
}
else
{
$this->assertTrue($this->attachments_mocks_feed->get_sql());
}
}
}
|