aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/ucp_groups_test.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/13338] Do not use the _test.php suffix for abstract test case classes.Andreas Fischer2014-11-171-2/+2
| | | | PHPBB3-13338
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* Merge branch 'develop-olympus' into developAndreas Fischer2013-07-121-49/+0
|\ | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11548] Fix incorrect usage of array_map on acp groups page Conflicts: tests/functional/common_groups_test.php tests/functional/ucp_groups_test.php
| * [ticket/11548] Fix incorrect usage of array_map on acp groups pageMarc Alexander2013-07-121-49/+0
| | | | | | | | | | | | | | | | The array_map was only ran on small parts of the actual error array instead of the whole one. This resulted in the output of the language variables' names rather than their actual value. PHPBB3-11548
* | Merge branch 'develop-olympus' into developAndreas Fischer2013-07-121-0/+49
|\ \ | |/ | | | | | | | | | | | | | | * develop-olympus: [ticket/11548] Use new static methods for request and submit [ticket/11548] Run array_map on complete error array and not just colour_error Conflicts: tests/functional/ucp_groups_test.php
| * [ticket/11548] Use new static methods for request and submitMarc Alexander2013-07-111-5/+4
| | | | | | | | PHPBB3-11548
| * [ticket/11548] Run array_map on complete error array and not just colour_errorMarc Alexander2013-07-111-0/+50
| | | | | | | | | | | | | | | | Up to now the array_map() that turns error messages into the localized output was only ran if the group's color was set. With this patch it'll run the array_map() on the complete error array if it's not empty. PHPBB3-11548
* | Merge branch 'develop' of https://github.com/phpbb/phpbb3 into ↵Joas Schilling2013-06-071-0/+32
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ticket/11568-develop * 'develop' of https://github.com/phpbb/phpbb3: (29 commits) [ticket/11588] Also use version.phpbb.com in install_update.php. [ticket/11587] Add functional tests for group teampage settings [ticket/11538] Add admin as admins leader and moderator in memberlist_test [ticket/11587] Pass legend and teampage settings to group_create() [ticket/11586] Move $filedata['thumbnail'] to where it might be returned. [ticket/11586] Combine $filedata['post_attach'] assign into a single statement. [ticket/11586] Use a variable for $cat_id == ATTACHMENT_CATEGORY_IMAGE. [ticket/11586] Combine administrator/moderator checks together. [ticket/11583] Use a new lang key instead of giving the old one a new meaning. [ticket/11122] Add dhruv to active authors [ticket/11122] Remove Oleg and igorw from active authors [ticket/10840] Add check_form_key to acp_groups.php [ticket/11583] Allow FULLTEXT indexes on InnoDB when on MySQL 5.6.4 or higher. [ticket/11409] Add success message after updating group position settings [ticket/11549] Add functional test for ACP Extension Module with Template [ticket/11570] Fix link and make the notice more conspiciuous [ticket/11549] Do not set extension dir path for style in adm/index.php [ticket/11570] Add link back to update process [ticket/11569] Add type parameter and fix language variable [ticket/11569] Add parameter to URL and remove comment ... Conflicts: tests/functional/common_groups_test.php
| * [ticket/11587] Add functional tests for group teampage settingsMarc Alexander2013-06-041-0/+32
|/ | | | | | | | The group_legend and group_teampage settings, which are needed for the teampage, are tested with these newly added functional tests. Duplicate code has been reduced as much as possible. PHPBB3-11587
* [ticket/11538] Move group ID into abstract test class and add more test casesMarc Alexander2013-05-191-1/+1
| | | | | | | The group ID is defined in the abstract class now and additional test cases for hex colour values have been added. PHPBB3-11538
* [ticket/11538] Use abstract class for functional test cases for group colourMarc Alexander2013-05-171-31/+5
| | | | PHPBB3-11538
* [ticket/11538] Make sure regex doesn't allow multiple color valuesMarc Alexander2013-05-151-0/+3
| | | | | | | This will now make sure that 'AAFF00' will be matched but strings like 'AAFF00 AABB00' will not. PHPBB3-11538
* [ticket/11538] Simplify colour value check and remove support for '#'Marc Alexander2013-05-141-8/+7
| | | | | | | | | | | | The input length for the hex color is now limited to 6 characters and the support for colors starting with a '#' has been dropped. The allowed input length of 7 in prosilver seems to have been a relict from old ages of phpBB3. In order to have proper support for correct checking of the colour value, the new code was also ported to the ACP groups manage page. The tests have been modified to reflect the changes to the behavior of the color check. Tests for the ACP will follow. PHPBB3-11538
* [ticket/11538] Fix incorrect regex and test for duplicate # in color stringMarc Alexander2013-05-141-0/+1
| | | | PHPBB3-11538
* [ticket/11538] Use regex for testing color value and improve testsMarc Alexander2013-05-141-37/+20
| | | | | | | | | We are now using a regex with preg_match() in order to properly check if the entered color value is in hex color format or not. A proper error message is triggered if an incorrect color value is entered and the prepended '#' is removed if necessary. PHPBB3-11538
* [ticket/11538] Make sure group color can't exceed maximum of 6 charactersMarc Alexander2013-05-141-0/+61
In order to prevent future issues with this, a basic set of functional tests for the UCP groups manage page have been added. PHPBB3-11538