mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 00:07:44 +02:00
Merge pull request #5274 from rubencm/ticket/14285
[ticket/14285] Move downloads to controller
This commit is contained in:
@@ -56,6 +56,8 @@ class phpbb_avatar_manager_test extends \phpbb_database_test_case
|
||||
|
||||
$dispatcher = new phpbb_mock_event_dispatcher();
|
||||
|
||||
$controller_helper = $this->createMock('\phpbb\controller\helper');
|
||||
|
||||
// $this->avatar_foobar will be needed later on
|
||||
$this->avatar_foobar = $this->getMockBuilder('\phpbb\avatar\driver\foobar')
|
||||
->setMethods(array('get_name'))
|
||||
@@ -93,7 +95,7 @@ class phpbb_avatar_manager_test extends \phpbb_database_test_case
|
||||
{
|
||||
$cur_avatar = $this->getMockBuilder('\phpbb\avatar\driver\\' . $driver)
|
||||
->setMethods(array('get_name'))
|
||||
->setConstructorArgs(array($this->config, $phpbb_root_path, $phpEx, $storage, $path_helper, $dispatcher, $files_factory, $php_ini))
|
||||
->setConstructorArgs(array($this->config, $controller_helper, $phpbb_root_path, $phpEx, $storage, $path_helper, $dispatcher, $files_factory, $php_ini))
|
||||
->getMock();
|
||||
}
|
||||
$cur_avatar->expects($this->any())
|
||||
|
@@ -1,116 +0,0 @@
|
||||
<?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 __DIR__ . '/../../phpBB/includes/functions_download.php';
|
||||
|
||||
class phpbb_download_http_byte_range_test extends phpbb_test_case
|
||||
{
|
||||
public function test_find_range_request()
|
||||
{
|
||||
// Missing 'bytes=' prefix
|
||||
$GLOBALS['request'] = new phpbb_mock_request();
|
||||
$GLOBALS['request']->set_header('Range', 'bztes=');
|
||||
$this->assertEquals(false, phpbb_find_range_request());
|
||||
unset($GLOBALS['request']);
|
||||
|
||||
$GLOBALS['request'] = new phpbb_mock_request();
|
||||
$_ENV['HTTP_RANGE'] = 'bztes=';
|
||||
$this->assertEquals(false, phpbb_find_range_request());
|
||||
unset($_ENV['HTTP_RANGE']);
|
||||
|
||||
$GLOBALS['request'] = new phpbb_mock_request();
|
||||
$GLOBALS['request']->set_header('Range', 'bytes=0-0,123-125');
|
||||
$this->assertEquals(array('0-0', '123-125'), phpbb_find_range_request());
|
||||
unset($GLOBALS['request']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider parse_range_request_data()
|
||||
*/
|
||||
public function test_parse_range_request($request_array, $filesize, $expected)
|
||||
{
|
||||
$this->assertEquals($expected, phpbb_parse_range_request($request_array, $filesize));
|
||||
}
|
||||
|
||||
public function parse_range_request_data()
|
||||
{
|
||||
return array(
|
||||
// Valid request
|
||||
array(
|
||||
array('3-4'),
|
||||
10,
|
||||
array(
|
||||
'byte_pos_start' => 3,
|
||||
'byte_pos_end' => 4,
|
||||
'bytes_requested' => 2,
|
||||
'bytes_total' => 10,
|
||||
),
|
||||
),
|
||||
|
||||
// Get the beginning
|
||||
array(
|
||||
array('-5'),
|
||||
10,
|
||||
array(
|
||||
'byte_pos_start' => 0,
|
||||
'byte_pos_end' => 5,
|
||||
'bytes_requested' => 6,
|
||||
'bytes_total' => 10,
|
||||
),
|
||||
),
|
||||
|
||||
// Get the end
|
||||
array(
|
||||
array('5-'),
|
||||
10,
|
||||
array(
|
||||
'byte_pos_start' => 5,
|
||||
'byte_pos_end' => 9,
|
||||
'bytes_requested' => 5,
|
||||
'bytes_total' => 10,
|
||||
),
|
||||
),
|
||||
|
||||
// Overlong request
|
||||
array(
|
||||
array('3-20'),
|
||||
10,
|
||||
array(
|
||||
'byte_pos_start' => 3,
|
||||
'byte_pos_end' => 9,
|
||||
'bytes_requested' => 7,
|
||||
'bytes_total' => 10,
|
||||
),
|
||||
),
|
||||
|
||||
// Multiple, contiguous range
|
||||
array(
|
||||
array('10-20', '21-30'),
|
||||
125,
|
||||
array(
|
||||
'byte_pos_start' => 10,
|
||||
'byte_pos_end' => 30,
|
||||
'bytes_requested' => 21,
|
||||
'bytes_total' => 125,
|
||||
)
|
||||
),
|
||||
|
||||
// We don't do multiple, non-contiguous range
|
||||
array(
|
||||
array('0-0', '120-125'),
|
||||
125,
|
||||
false,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
@@ -1,134 +0,0 @@
|
||||
<?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 __DIR__ . '/../../phpBB/includes/functions_download.php';
|
||||
|
||||
class phpbb_download_http_user_agent_test extends phpbb_test_case
|
||||
{
|
||||
public function user_agents_check_greater_ie_version()
|
||||
{
|
||||
return array(
|
||||
// user agent
|
||||
// IE version
|
||||
// expected
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',
|
||||
7,
|
||||
true,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)',
|
||||
7,
|
||||
true,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.4; InfoPath.2; SV1; .NET CLR 3.3.69573; WOW64; en-US)',
|
||||
7,
|
||||
true,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/4.0 (compatible; MSIE 6.1; Windows XP; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/4.0 (compatible; MSIE 6.01; Windows NT 6.0)',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (Windows; U; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (Windows NT 6.2; Win64; x64;) Gecko/20100101 Firefox/20.0',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1464.0 Safari/537.36',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Googlebot-Image/1.0',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Googlebot/2.1 ( http://www.google.com/bot.html)',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Lynx/2.8.3dev.9 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.6',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Links (0.9x; Linux 2.4.7-10 i686)',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Opera/9.60 (Windows NT 5.1; U; de) Presto/2.1.1',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/4.0 (compatible; MSIE 5.0; Windows NT;)',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/4.0 (compatible; MSIE 5.0; Windows NT 4.0) Opera 6.01 [en]',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 9.24',
|
||||
7,
|
||||
false,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',
|
||||
8,
|
||||
true,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)',
|
||||
9,
|
||||
true,
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.4; InfoPath.2; SV1; .NET CLR 3.3.69573; WOW64; en-US)',
|
||||
10,
|
||||
false,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider user_agents_check_greater_ie_version
|
||||
*/
|
||||
public function test_is_greater_ie_version($user_agent, $version, $expected)
|
||||
{
|
||||
$this->assertEquals($expected, phpbb_is_greater_ie_version($user_agent, $version));
|
||||
}
|
||||
}
|
@@ -83,7 +83,7 @@ class phpbb_functional_download_test extends phpbb_functional_test_case
|
||||
));
|
||||
|
||||
// Download attachment as guest
|
||||
$crawler = self::request('GET', "download/file.php?id={$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
$crawler = self::request('GET', "download/attachment/{$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
self::assert_response_status_code(200);
|
||||
$content = self::$client->getResponse()->getContent();
|
||||
$finfo = new finfo(FILEINFO_MIME_TYPE);
|
||||
@@ -141,7 +141,7 @@ class phpbb_functional_download_test extends phpbb_functional_test_case
|
||||
$this->add_lang('viewtopic');
|
||||
|
||||
// No download attachment as guest
|
||||
$crawler = self::request('GET', "download/file.php?id={$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
$crawler = self::request('GET', "download/attachment/{$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
self::assert_response_html(404);
|
||||
$this->assertContainsLang('ERROR_NO_ATTACHMENT', $crawler->filter('#message')->text());
|
||||
|
||||
@@ -149,7 +149,7 @@ class phpbb_functional_download_test extends phpbb_functional_test_case
|
||||
$this->login();
|
||||
|
||||
// Download attachment as admin
|
||||
$crawler = self::request('GET', "download/file.php?id={$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
$crawler = self::request('GET', "download/attachment/{$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
self::assert_response_status_code(200);
|
||||
$content = self::$client->getResponse()->getContent();
|
||||
$finfo = new finfo(FILEINFO_MIME_TYPE);
|
||||
@@ -208,7 +208,7 @@ class phpbb_functional_download_test extends phpbb_functional_test_case
|
||||
$this->add_lang('viewtopic');
|
||||
|
||||
// No download attachment as guest
|
||||
$crawler = self::request('GET', "download/file.php?id={$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
$crawler = self::request('GET', "download/attachment/{$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
self::assert_response_html(404);
|
||||
$this->assertContainsLang('ERROR_NO_ATTACHMENT', $crawler->filter('#message')->text());
|
||||
|
||||
@@ -216,7 +216,7 @@ class phpbb_functional_download_test extends phpbb_functional_test_case
|
||||
$this->login();
|
||||
|
||||
// Download attachment as admin
|
||||
$crawler = self::request('GET', "download/file.php?id={$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
$crawler = self::request('GET', "download/attachment/{$this->data['attachments'][$this->data['posts']['Re: Download Topic #1-#2']]}", array(), false);
|
||||
self::assert_response_status_code(200);
|
||||
$content = self::$client->getResponse()->getContent();
|
||||
$finfo = new finfo(FILEINFO_MIME_TYPE);
|
||||
|
@@ -1417,7 +1417,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
|
||||
$content = $crawler->filterXPath("//entry[{$entry_id}]/content")->text();
|
||||
foreach ($attachments as $i => $attachment)
|
||||
{
|
||||
$url = self::$root_url . "download/file.php?id={$attachment['id']}";
|
||||
$url = self::$root_url . "app.php/download/attachment/{$attachment['id']}";
|
||||
$string = "Attachment #{$i}";
|
||||
|
||||
if ($attachment['displayed'])
|
||||
|
@@ -11,6 +11,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
use phpbb\controller\helper;
|
||||
|
||||
require_once __DIR__ . '/template_test_case.php';
|
||||
|
||||
class phpbb_template_extension_test extends phpbb_template_template_test_case
|
||||
@@ -66,10 +68,17 @@ class phpbb_template_extension_test extends phpbb_template_template_test_case
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$controller_helper = $this->createMock(helper::class);
|
||||
$controller_helper
|
||||
->method('route')
|
||||
->willReturnCallback(function($route, $params) {
|
||||
return 'download/avatar/' . $params['file'];
|
||||
});
|
||||
|
||||
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
||||
$phpbb_container = new phpbb_mock_container_builder();
|
||||
$files = new phpbb\files\factory($phpbb_container);
|
||||
$upload_avatar_driver = new phpbb\avatar\driver\upload($config, $phpbb_root_path, $phpEx, $storage, $phpbb_path_helper, $phpbb_dispatcher, $files, new \bantu\IniGetWrapper\IniGetWrapper());
|
||||
$upload_avatar_driver = new phpbb\avatar\driver\upload($config, $controller_helper, $phpbb_root_path, $phpEx, $storage, $phpbb_path_helper, $phpbb_dispatcher, $files, new \bantu\IniGetWrapper\IniGetWrapper());
|
||||
$upload_avatar_driver->set_name('avatar.driver.upload');
|
||||
$phpbb_container->set('avatar.manager', new \phpbb\avatar\manager($config, $phpbb_dispatcher, [
|
||||
$upload_avatar_driver,
|
||||
@@ -141,7 +150,7 @@ class phpbb_template_extension_test extends phpbb_template_template_test_case
|
||||
],
|
||||
[],
|
||||
[],
|
||||
'<img class="avatar" src="phpBB/download/file.php?avatar=great_avatar.png" width="90" height="90" alt="foo" />',
|
||||
'<img class="avatar" src="download/avatar/great_avatar.png" width="90" height="90" alt="foo" />',
|
||||
[]
|
||||
],
|
||||
[
|
||||
@@ -159,7 +168,7 @@ class phpbb_template_extension_test extends phpbb_template_template_test_case
|
||||
],
|
||||
[],
|
||||
[],
|
||||
'<img class="avatar" src="phpBB/styles//theme/images/no_avatar.gif" data-src="phpBB/download/file.php?avatar=great_avatar.png" width="90" height="90" alt="foo" />',
|
||||
'<img class="avatar" src="phpBB/styles//theme/images/no_avatar.gif" data-src="download/avatar/great_avatar.png" width="90" height="90" alt="foo" />',
|
||||
[]
|
||||
],
|
||||
[
|
||||
|
@@ -47,7 +47,6 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||
parent::setUpBeforeClass();
|
||||
|
||||
self::$config = phpbb_test_case_helpers::get_test_config();
|
||||
self::$root_url = self::$config['phpbb_functional_url'];
|
||||
|
||||
// Important: this is used both for installation and by
|
||||
// test cases for querying the tables.
|
||||
@@ -60,6 +59,8 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||
self::markTestSkipped('phpbb_functional_url was not set in test_config and wasn\'t set as PHPBB_FUNCTIONAL_URL environment variable either.');
|
||||
}
|
||||
|
||||
self::$root_url = self::$config['phpbb_functional_url'];
|
||||
|
||||
if (!self::$already_installed)
|
||||
{
|
||||
self::install_board();
|
||||
|
Reference in New Issue
Block a user