mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/14168] Add basic test file for attachments upload
PHPBB3-14168
This commit is contained in:
parent
b7238bca0e
commit
8a6224bf8a
1 changed files with 183 additions and 0 deletions
183
tests/attachment/upload_test.php
Normal file
183
tests/attachment/upload_test.php
Normal file
|
@ -0,0 +1,183 @@
|
|||
<?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__) . '/../../phpBB/includes/functions.php');
|
||||
|
||||
class phpbb_attachment_upload_test extends \phpbb_database_test_case
|
||||
{
|
||||
/** @var \phpbb\auth\auth */
|
||||
protected $auth;
|
||||
|
||||
/** @var \phpbb\cache\service */
|
||||
protected $cache;
|
||||
|
||||
/** @var \phpbb\config\config */
|
||||
protected $config;
|
||||
|
||||
/** @var \phpbb\files\upload */
|
||||
protected $files_upload;
|
||||
|
||||
/** @var \phpbb\language\language */
|
||||
protected $language;
|
||||
|
||||
/** @var \phpbb\mimetype\guesser */
|
||||
protected $mimetype_guesser;
|
||||
|
||||
/** @var \phpbb\event\dispatcher */
|
||||
protected $phpbb_dispatcher;
|
||||
|
||||
/** @var \phpbb\plupload\plupload */
|
||||
protected $plupload;
|
||||
|
||||
/** @var \phpbb\user */
|
||||
protected $user;
|
||||
|
||||
/** @var string phpBB root path */
|
||||
protected $phpbb_root_path;
|
||||
|
||||
/** @var \phpbb\db\driver\driver_interface */
|
||||
protected $db;
|
||||
|
||||
/** @var \phpbb\attachment\upload */
|
||||
protected $upload;
|
||||
|
||||
private $filesystem;
|
||||
|
||||
/** @var \Symfony\Component\DependencyInjection\ContainerInterface */
|
||||
protected $container;
|
||||
|
||||
/** @var \phpbb\files\factory */
|
||||
protected $factory;
|
||||
|
||||
/** @var \bantu\IniGetWrapper\IniGetWrapper */
|
||||
protected $php_ini;
|
||||
|
||||
public function getDataSet()
|
||||
{
|
||||
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/resync.xml');
|
||||
}
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
global $config, $phpbb_root_path, $phpEx;
|
||||
|
||||
parent::setUp();
|
||||
|
||||
$this->auth = new \phpbb\auth\auth();
|
||||
$this->config = new \phpbb\config\config(array());
|
||||
$config = $this->config;
|
||||
$this->db = $this->new_dbal();
|
||||
$this->cache = new \phpbb\cache\service(new \phpbb\cache\driver\dummy(), $this->config, $this->db, $phpbb_root_path, $phpEx);
|
||||
$this->request = $this->getMock('\phpbb\request\request');
|
||||
|
||||
$this->filesystem = new \phpbb\filesystem\filesystem();
|
||||
$this->language = new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx));
|
||||
$this->php_ini = new \bantu\IniGetWrapper\IniGetWrapper;
|
||||
$guessers = array(
|
||||
new \Symfony\Component\HttpFoundation\File\MimeType\FileinfoMimeTypeGuesser(),
|
||||
new \Symfony\Component\HttpFoundation\File\MimeType\FileBinaryMimeTypeGuesser(),
|
||||
new \phpbb\mimetype\content_guesser(),
|
||||
new \phpbb\mimetype\extension_guesser(),
|
||||
);
|
||||
$guessers[2]->set_priority(-2);
|
||||
$guessers[3]->set_priority(-2);
|
||||
$this->mimetype_guesser = new \phpbb\mimetype\guesser($guessers);
|
||||
$this->plupload = new \phpbb\plupload\plupload($phpbb_root_path, $this->config, $this->request, new \phpbb\user($this->language, '\phpbb\datetime'), $this->php_ini, $this->mimetype_guesser);
|
||||
$factory_mock = $this->getMockBuilder('\phpbb\files\factory')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
$factory_mock->expects($this->any())
|
||||
->method('get')
|
||||
->willReturn(new \phpbb\files\filespec(
|
||||
$this->filesystem,
|
||||
$this->language,
|
||||
$this->php_ini,
|
||||
new \FastImageSize\FastImageSize(),
|
||||
$this->phpbb_root_path,
|
||||
$this->mimetype_guesser
|
||||
));
|
||||
|
||||
$this->container = new phpbb_mock_container_builder($phpbb_root_path, $phpEx);
|
||||
$this->container->set('files.filespec', new \phpbb\files\filespec(
|
||||
$this->filesystem,
|
||||
$this->language,
|
||||
$this->php_ini,
|
||||
new \FastImageSize\FastImageSize(),
|
||||
$phpbb_root_path,
|
||||
new \phpbb\mimetype\guesser(array(
|
||||
'mimetype.extension_guesser' => new \phpbb\mimetype\extension_guesser(),
|
||||
))));
|
||||
$this->container->set('files.types.form', new \phpbb\files\types\form(
|
||||
$factory_mock,
|
||||
$this->language,
|
||||
$this->php_ini,
|
||||
$this->plupload,
|
||||
$this->request
|
||||
));
|
||||
$this->container->set('files.types.local', new \phpbb\files\types\local(
|
||||
$factory_mock,
|
||||
$this->language,
|
||||
$this->php_ini,
|
||||
$this->request
|
||||
));
|
||||
$this->factory = new \phpbb\files\factory($this->container);
|
||||
$this->files_upload = new \phpbb\files\upload($this->filesystem, $this->factory, $this->language, $this->php_ini, $this->request, $this->phpbb_root_path);
|
||||
$this->phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
||||
$this->user = new \phpbb\user($this->language, '\phpbb\datetime');
|
||||
|
||||
|
||||
$this->upload = new \phpbb\attachment\upload(
|
||||
$this->auth,
|
||||
$this->cache,
|
||||
$this->config,
|
||||
$this->files_upload,
|
||||
$this->language,
|
||||
$this->mimetype_guesser,
|
||||
$this->phpbb_dispatcher,
|
||||
$this->plupload,
|
||||
$this->user,
|
||||
$this->phpbb_root_path
|
||||
);
|
||||
}
|
||||
|
||||
public function data_upload()
|
||||
{
|
||||
return array(
|
||||
array('foobar', 1, false, array(
|
||||
'error' => array(
|
||||
'Upload initiated but no valid file upload form found.',
|
||||
),
|
||||
'post_attach' => false,
|
||||
)
|
||||
),
|
||||
array('foobar', 1, true, array(
|
||||
'error' => array(
|
||||
'NOT_UPLOADED',
|
||||
),
|
||||
'post_attach' => false,
|
||||
'thumbnail' => 0,
|
||||
)
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider data_upload
|
||||
*/
|
||||
public function test_upload($form_name, $forum_id, $local, $expected)
|
||||
{
|
||||
$filedata = $this->upload->upload($form_name, $forum_id, $local);
|
||||
|
||||
$this->assertSame($expected, $filedata);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue