2012-07-08 01:22:26 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2014-05-27 20:18:06 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
2012-07-08 01:22:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group functional
|
|
|
|
*/
|
2012-07-09 01:18:04 +01:00
|
|
|
class phpbb_functional_fileupload_form_test extends phpbb_functional_test_case
|
2012-07-08 01:22:26 +01:00
|
|
|
{
|
|
|
|
private $path;
|
|
|
|
|
2012-07-09 01:18:04 +01:00
|
|
|
public function setUp()
|
2012-07-08 01:22:26 +01:00
|
|
|
{
|
2012-07-09 01:18:04 +01:00
|
|
|
parent::setUp();
|
2012-07-08 01:22:26 +01:00
|
|
|
$this->path = __DIR__ . '/fixtures/files/';
|
|
|
|
$this->add_lang('posting');
|
|
|
|
}
|
|
|
|
|
2013-10-11 17:40:16 +02:00
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
$iterator = new DirectoryIterator(__DIR__ . '/../../phpBB/files/');
|
|
|
|
foreach ($iterator as $fileinfo)
|
|
|
|
{
|
|
|
|
if (
|
|
|
|
$fileinfo->isDot()
|
|
|
|
|| $fileinfo->isDir()
|
|
|
|
|| $fileinfo->getFilename() === 'index.htm'
|
|
|
|
|| $fileinfo->getFilename() === '.htaccess'
|
|
|
|
)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink($fileinfo->getPathname());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-12 18:38:20 +01:00
|
|
|
private function upload_file($filename, $mimetype)
|
|
|
|
{
|
|
|
|
$file = array(
|
|
|
|
'tmp_name' => $this->path . $filename,
|
|
|
|
'name' => $filename,
|
|
|
|
'type' => $mimetype,
|
|
|
|
'size' => filesize($this->path . $filename),
|
|
|
|
'error' => UPLOAD_ERR_OK,
|
|
|
|
);
|
|
|
|
|
2013-05-30 13:26:16 +02:00
|
|
|
$crawler = self::$client->request(
|
2012-07-12 18:38:20 +01:00
|
|
|
'POST',
|
|
|
|
'posting.php?mode=reply&f=2&t=1&sid=' . $this->sid,
|
|
|
|
array('add_file' => $this->lang('ADD_FILE')),
|
|
|
|
array('fileupload' => $file)
|
|
|
|
);
|
|
|
|
|
|
|
|
return $crawler;
|
|
|
|
}
|
|
|
|
|
2012-07-08 01:22:26 +01:00
|
|
|
public function test_empty_file()
|
|
|
|
{
|
2014-02-09 23:48:34 +01:00
|
|
|
$this->login();
|
|
|
|
|
2012-07-13 20:43:11 +01:00
|
|
|
$crawler = $this->upload_file('empty.png', 'image/png');
|
2014-02-09 23:45:41 +01:00
|
|
|
$this->assertEquals($this->lang('EMPTY_FILEUPLOAD'), $crawler->filter('p.error')->text());
|
2012-07-08 01:22:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_invalid_extension()
|
|
|
|
{
|
2014-02-09 23:48:34 +01:00
|
|
|
$this->login();
|
|
|
|
|
2012-07-13 20:09:11 +01:00
|
|
|
$crawler = $this->upload_file('illegal-extension.bif', 'application/octet-stream');
|
2012-07-09 01:24:29 +01:00
|
|
|
$this->assertEquals($this->lang('DISALLOWED_EXTENSION', 'bif'), $crawler->filter('p.error')->text());
|
2012-07-08 01:22:26 +01:00
|
|
|
}
|
|
|
|
|
2014-04-03 18:26:39 +02:00
|
|
|
public function test_disallowed_content()
|
|
|
|
{
|
|
|
|
$this->login();
|
|
|
|
|
|
|
|
$crawler = $this->upload_file('disallowed.jpg', 'image/jpeg');
|
|
|
|
$this->assertEquals($this->lang('DISALLOWED_CONTENT'), $crawler->filter('p.error')->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_disallowed_content_no_check()
|
|
|
|
{
|
|
|
|
$this->login();
|
|
|
|
$this->admin_login();
|
|
|
|
$this->add_lang('ucp');
|
|
|
|
$crawler = self::request('GET', 'adm/index.php?sid=' . $this->sid . '&i=acp_attachments&mode=attach');
|
|
|
|
|
|
|
|
$form = $crawler->selectButton('Submit')->form();
|
|
|
|
$values = $form->getValues();
|
|
|
|
|
|
|
|
$values["config[check_attachment_content]"] = 0;
|
|
|
|
$form->setValues($values);
|
|
|
|
$crawler = self::submit($form);
|
|
|
|
|
2014-04-04 20:55:29 +02:00
|
|
|
// Request index for correct URL
|
|
|
|
$crawler = self::request('GET', 'index.php?sid=' . $this->sid);
|
2014-04-03 18:26:39 +02:00
|
|
|
|
|
|
|
$crawler = $this->upload_file('disallowed.jpg', 'image/jpeg');
|
|
|
|
|
|
|
|
// Hitting the UNABLE_GET_IMAGE_SIZE error means we passed the
|
|
|
|
// DISALLOWED_CONTENT check
|
|
|
|
$this->assertEquals($this->lang('UNABLE_GET_IMAGE_SIZE'), $crawler->filter('p.error')->text());
|
|
|
|
}
|
|
|
|
|
2012-07-08 01:22:26 +01:00
|
|
|
public function test_too_large()
|
|
|
|
{
|
2014-02-09 23:48:34 +01:00
|
|
|
$this->create_user('fileupload');
|
|
|
|
$this->login('fileupload');
|
|
|
|
|
2012-07-12 18:38:20 +01:00
|
|
|
$crawler = $this->upload_file('too-large.png', 'image/png');
|
2012-07-09 01:29:56 +01:00
|
|
|
$this->assertEquals($this->lang('WRONG_FILESIZE', '256', 'KiB'), $crawler->filter('p.error')->text());
|
2012-07-08 01:22:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_valid_file()
|
|
|
|
{
|
2014-02-09 23:48:34 +01:00
|
|
|
$this->login();
|
|
|
|
|
2012-07-12 18:38:20 +01:00
|
|
|
$crawler = $this->upload_file('valid.jpg', 'image/jpeg');
|
2014-02-09 23:47:20 +01:00
|
|
|
|
|
|
|
// Ensure there was no error message rendered
|
2013-05-28 14:55:04 +02:00
|
|
|
$this->assertNotContains('<h2>' . $this->lang('INFORMATION') . '</h2>', $this->get_content());
|
2014-02-09 23:47:20 +01:00
|
|
|
|
|
|
|
// Also the file name should be in the first row of the files table
|
|
|
|
$this->assertEquals('valid.jpg', $crawler->filter('span.file-name')->eq(1)->text());
|
2012-07-08 01:22:26 +01:00
|
|
|
}
|
|
|
|
}
|