mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/13568] Add functional test for imagick path setting
PHPBB3-13568
This commit is contained in:
parent
19421fcdef
commit
99574cf5e5
1 changed files with 44 additions and 0 deletions
44
tests/functional/acp_attachments_test.php
Normal file
44
tests/functional/acp_attachments_test.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?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.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group functional
|
||||
*/
|
||||
class phpbb_functional_acp_attachments_test extends phpbb_functional_test_case
|
||||
{
|
||||
public function data_imagick_path()
|
||||
{
|
||||
return array(
|
||||
array('/usr/bin', 'Configuration updated successfully'),
|
||||
array('/usr/bin/', 'Configuration updated successfully'),
|
||||
array('/usr/nope', 'The entered path “/usr/nope” does not exist.'),
|
||||
array('mkdir /usr/test', 'The entered path “mkdir /usr/test” does not exist.'),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider data_imagick_path
|
||||
*/
|
||||
public function test_imagick_path($imagick_path, $expected)
|
||||
{
|
||||
$this->login();
|
||||
$this->admin_login();
|
||||
|
||||
$crawler = self::request('GET', 'adm/index.php?i=attachments&mode=attach&sid=' . $this->sid);
|
||||
|
||||
$form = $crawler->selectButton('Submit')->form(array('config[img_imagick]' => $imagick_path));
|
||||
|
||||
$crawler = self::submit($form);
|
||||
$this->assertContains($expected, $crawler->text());
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue