aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-02-02 16:11:00 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-02-02 16:11:00 +0100
commit99574cf5e536a4ed81d7c7f291f3fc9e9f2466a2 (patch)
treecde81b02e3a596414207818206ede56898546071 /tests/functional
parent19421fcdef62e50ea335967cc7e4487e7548db87 (diff)
downloadforums-99574cf5e536a4ed81d7c7f291f3fc9e9f2466a2.tar
forums-99574cf5e536a4ed81d7c7f291f3fc9e9f2466a2.tar.gz
forums-99574cf5e536a4ed81d7c7f291f3fc9e9f2466a2.tar.bz2
forums-99574cf5e536a4ed81d7c7f291f3fc9e9f2466a2.tar.xz
forums-99574cf5e536a4ed81d7c7f291f3fc9e9f2466a2.zip
[ticket/13568] Add functional test for imagick path setting
PHPBB3-13568
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/acp_attachments_test.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/functional/acp_attachments_test.php b/tests/functional/acp_attachments_test.php
new file mode 100644
index 0000000000..6b1d1dc8df
--- /dev/null
+++ b/tests/functional/acp_attachments_test.php
@@ -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());
+ }
+}