aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-01-23 13:46:18 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-01-23 13:46:18 +0100
commit10bf5c1533501ed324627cb2a7f25de887322744 (patch)
tree8a6ad5fd262afeba5017e6ae186c1fd03a1ccdf2
parente28a5da4575ef8830a430ad004f884c1eac83c61 (diff)
downloadforums-10bf5c1533501ed324627cb2a7f25de887322744.tar
forums-10bf5c1533501ed324627cb2a7f25de887322744.tar.gz
forums-10bf5c1533501ed324627cb2a7f25de887322744.tar.bz2
forums-10bf5c1533501ed324627cb2a7f25de887322744.tar.xz
forums-10bf5c1533501ed324627cb2a7f25de887322744.zip
[ticket/14428] Fix files types remote tests
PHPBB3-14428
-rw-r--r--tests/files/types_remote_test.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/files/types_remote_test.php b/tests/files/types_remote_test.php
index a85844ee78..caed5c9e05 100644
--- a/tests/files/types_remote_test.php
+++ b/tests/files/types_remote_test.php
@@ -85,8 +85,8 @@ class phpbb_files_types_remote_test extends phpbb_test_case
array('500k', 'http://example.com/foo/bar.png'),
array('500M', 'http://example.com/foo/bar.png'),
array('500m', 'http://example.com/foo/bar.png'),
- array('500k', 'http://google.com/.png', 'DISALLOWED_CONTENT'),
- array('1', 'http://google.com/.png', 'WRONG_FILESIZE'),
+ array('500k', 'http://google.com/?.png', array('DISALLOWED_EXTENSION', 'DISALLOWED_CONTENT')),
+ array('1', 'http://google.com/?.png', array('WRONG_FILESIZE')),
array('500g', 'http://example.com/foo/bar.png'),
array('foobar', 'http://example.com/foo/bar.png'),
array('-5k', 'http://example.com/foo/bar.png'),
@@ -96,7 +96,7 @@ class phpbb_files_types_remote_test extends phpbb_test_case
/**
* @dataProvider data_get_max_file_size
*/
- public function test_get_max_file_size($max_file_size, $link, $expected = 'URL_NOT_FOUND')
+ public function test_get_max_file_size($max_file_size, $link, $expected = array('URL_NOT_FOUND'))
{
$php_ini = $this->getMock('\bantu\IniGetWrapper\IniGetWrapper', array('getString'));
$php_ini->expects($this->any())
@@ -109,7 +109,7 @@ class phpbb_files_types_remote_test extends phpbb_test_case
$file = $type_remote->upload($link);
- $this->assertSame(array($expected), $file->error);
+ $this->assertSame($expected, $file->error);
}
public function test_upload_timeout()
@@ -120,7 +120,7 @@ class phpbb_files_types_remote_test extends phpbb_test_case
$type_remote->set_upload($upload);
$upload->upload_timeout = -5;
- $file = $type_remote->upload('http://google.com/.png');
+ $file = $type_remote->upload('http://google.com/?.png');
$this->assertSame(array('REMOTE_UPLOAD_TIMEOUT'), $file->error);
}
@@ -133,7 +133,7 @@ class phpbb_files_types_remote_test extends phpbb_test_case
$type_remote->set_upload($upload);
$type_remote::$tempnam_path = $this->phpbb_root_path . 'cache/wrong/path';
- $file = $type_remote->upload('http://google.com/.png');
+ $file = $type_remote->upload('http://google.com/?.png');
$this->assertSame(array('NOT_UPLOADED'), $file->error);
$type_remote::$tempnam_path = '';