diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-01-22 10:30:24 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-01-22 10:30:24 +0100 |
commit | 47f04d7620be293ca4f6701503ce50153d348f8a (patch) | |
tree | 8c3ce0fda114929731d4259bbc02bc69163dae39 /tests | |
parent | 816465bfe90c955a9fc7b748b0ff22b5e775c7a9 (diff) | |
download | forums-47f04d7620be293ca4f6701503ce50153d348f8a.tar forums-47f04d7620be293ca4f6701503ce50153d348f8a.tar.gz forums-47f04d7620be293ca4f6701503ce50153d348f8a.tar.bz2 forums-47f04d7620be293ca4f6701503ce50153d348f8a.tar.xz forums-47f04d7620be293ca4f6701503ce50153d348f8a.zip |
[ticket/13282] Add functional tests for adding profilefields
PHPBB3-13282
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functional/acp_profile_field_test.php | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/tests/functional/acp_profile_field_test.php b/tests/functional/acp_profile_field_test.php new file mode 100644 index 0000000000..88df782faa --- /dev/null +++ b/tests/functional/acp_profile_field_test.php @@ -0,0 +1,71 @@ +<?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_profile_field_test extends phpbb_functional_test_case +{ + public function setUp() + { + parent::setUp(); + + $this->login(); + $this->admin_login(); + $this->add_lang('acp/profile'); + } + + public function data_add_profile_field() + { + return array( + array('bool', 'profilefields.type.bool', + array( + 'lang_options[0]' => 'foo', + 'lang_options[1]' => 'bar', + ), + array(), + ), + array('dropdown', 'profilefields.type.dropdown', + array( + 'lang_options' => "foo\nbar\nbar\nfoo", + ), + array(), + ), + ); + } + + /** + * @dataProvider data_add_profile_field + */ + public function test_add_profile_field($name, $type, $page1_settings, $page2_settings) + { + // Custom profile fields page + $crawler = self::request('GET', 'adm/index.php?i=acp_profile&mode=profile&sid=' . $this->sid); + // these language strings are html + $form = $crawler->selectButton('Create new field')->form(array( + 'field_ident' => $name, + 'field_type' => $type, + )); + $crawler = self::submit($form); + + // Fill form for profile field options + $form = $crawler->selectButton('Profile type specific options')->form($page1_settings); + $crawler = self::submit($form); + + // Fill form for profile field specific options + $form = $crawler->selectButton('Save')->form($page2_settings); + $crawler= self::submit($form); + + $this->assertContainsLang('ADDED_PROFILE_FIELD', $crawler->text()); + } +} |