aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | [ticket/11849] Remove old pagination testJoas Schilling2013-12-181-111/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11849
| * | | | | | | | [ticket/11849] Replace pagination in viewforum.php with classJoas Schilling2013-12-181-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11849
| * | | | | | | | [ticket/11849] Test validate_start and on_pageJoas Schilling2013-12-182-11/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11849
| * | | | | | | | [ticket/11849] Move pagination code to classJoas Schilling2013-12-181-0/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11849
* | | | | | | | | Merge remote-tracking branch 'prototech/ticket/12009' into developJoas Schilling2013-12-1630-114/+196
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prototech/ticket/12009: [ticket/12009] Prevent user from enabling invalid extension through direct URL [ticket/12009] Update functional test to check for invalid extensions. [ticket/12009] Fix functional tests. [ticket/12009] Move valid extensions in tests to correct dir structure. [ticket/12009] Do not allow incorrectly structured extensions to be installed.
| * | | | | | | | | [ticket/12009] Prevent user from enabling invalid extension through direct URLCesar G2013-12-123-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12009
| * | | | | | | | | [ticket/12009] Update functional test to check for invalid extensions.Cesar G2013-12-121-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12009
| * | | | | | | | | [ticket/12009] Fix functional tests.Cesar G2013-12-121-16/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12009
| * | | | | | | | | [ticket/12009] Move valid extensions in tests to correct dir structure.Cesar G2013-12-1227-97/+145
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12009
* | | | | | | | | Merge remote-tracking branch 'Marc/ticket/11859' into developJoas Schilling2013-12-122-0/+10
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Marc/ticket/11859: [ticket/11859] Add missing get_template_name method to test drivers [ticket/11859] Make avatar drivers return template filename
| * | | | | | | | [ticket/11859] Add missing get_template_name method to test driversMarc Alexander2013-11-272-0/+10
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11859
* | | | | | | | Merge pull request #1813 from marc1706/ticket/11912Nathan Guse2013-12-044-0/+214
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [ticket/11912] Add mimetype guesser for proper mimetype guessing
| * | | | | | | | [ticket/11912] Expect logic exceptions in test if no guesser availableMarc Alexander2013-11-231-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11912
| * | | | | | | | Merge branch 'develop' of https://github.com/phpbb/phpbb3 into ticket/11912Marc Alexander2013-11-2319-196/+305
| |\ \ \ \ \ \ \ \ | | |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: phpBB/config/services.yml
| * | | | | | | | [ticket/11912] Use inverted $overload for setting function_exists in testsMarc Alexander2013-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11912
| * | | | | | | | [ticket/11912] Introduce guesser priority to mimetype guessersMarc Alexander2013-11-111-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The mimetype guesser priority can now be set through the service definition. Mimetypes will be guessed from the guesser with the highest priority to the one with the lowest priority. Standard priority types have been added to the service definition file. Any integer value can be used though. Standard mimetype guessers that do not have the methods get_priority and set_priority implemented, like the standard MimeTypeGuessers of symfony, will have the default priority with the value of 0. Lower priority guessers have values lower than 0 while high priority ones can be added with values higher than 0. PHPBB3-11912
| * | | | | | | | [ticket/11912] Add extension_guesser for guessing mimetype by extensionMarc Alexander2013-11-111-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The content_guesser now only guesses the mimetype with the function mime_content_type() while the guessing by extension is done using the extension_guesser. PHPBB3-11912
| * | | | | | | | [ticket/11912] Supply filename to content_guesser for guessing on windowsMarc Alexander2013-10-241-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The filename of the files sent to the guesser by plupload do not contain the file extension. Therefore, it's impossible to guess the mimetype if only the content_guesser is available and the function mime_content_type() doesn't exist. By supplying the filename we can circumvent this issue. PHPBB3-11912
| * | | | | | | | [ticket/11912] Add tests for content_guesserMarc Alexander2013-10-231-3/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11912
| * | | | | | | | [ticket/11912] Add tests for phpbb mimetype guesserMarc Alexander2013-10-234-0/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11912
* | | | | | | | | Merge pull request #1879 from Pico88/ticket/12026Nathan Guse2013-12-044-5/+91
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | [ticket/12026] Correct path for template files
| * | | | | | | | | [ticket/12026] Add functional test for ucp extension moduleJoas Schilling2013-12-034-5/+91
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12026
* | | | | | | | | Merge pull request #1887 from nickvergessen/ticket/skouat/10910Nathan Guse2013-12-041-0/+50
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | [ticket/10910] Function build_cfg_template() allow $size for $tpl_type = select
| * | | | | | | | | [ticket/10910] Fix unit testsJoas Schilling2013-11-221-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10910
| * | | | | | | | | [ticket/10910] Add unit tests for selectMario Skouat2013-11-221-0/+35
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10910
* | | | | | | | | Merge remote-tracking branch 'Marc/ticket/11842' into developJoas Schilling2013-12-043-6/+46
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Marc/ticket/11842: [ticket/11842] Add functional test for creating group [ticket/11842] Use avatar_data for obtaining driver that should be deleted [ticket/11842] Use type map for updating avatar types in database [ticket/11842] Add missing prefix for group id in avatar data [ticket/11842] Use only new avatar type in user_delete function [ticket/11842] Add migration file for updating avatar type in database [ticket/11842] Replace outdated occurences of user and group avatar_type [ticket/11842] Use group_id 0 and correct avatar name after creating group
| * | | | | | | | | [ticket/11842] Add functional test for creating groupMarc Alexander2013-12-041-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11842
| * | | | | | | | | [ticket/11842] Use avatar_data for obtaining driver that should be deletedMarc Alexander2013-12-041-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11842
| * | | | | | | | | Merge branch 'develop' of https://github.com/phpbb/phpbb3 into ticket/11842Marc Alexander2013-11-2719-196/+305
| |\ \ \ \ \ \ \ \ \ | | |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: phpBB/includes/acp/acp_groups.php
| * | | | | | | | | [ticket/11842] Replace outdated occurences of user and group avatar_typeMarc Alexander2013-10-241-6/+6
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | user_avatar_type und group_avatar_type are now a string and should therefore be treated accordingly. PHPBB3-11842
* | | | | | | | | Merge remote-tracking branch 'bantu/ticket/12056-develop' into developJoas Schilling2013-12-0411-35/+53
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/12056-develop: [ticket/12056] group_user_attributes: Fix "Creating ... from empty value". [ticket/12056] Fix "Call to undefined function ...\utf8_normalize_nfc()" [ticket/12056] Fix "Call to undefined function ...\utf8_clean_string()" [ticket/12056] Fix "Call to a member function trigger_event() on a non-object". [ticket/12056] Fix "Call to undefined function phpbb\phpbb_get_plural_form()". [ticket/12056] Fix "undefined function phpbb_pcre_utf8_support()". [ticket/12056] validate_config_vars: Fix ".. undefined function utf8_strlen()" [ticket/12056] validate_config_vars: Fix "Creating ... from empty value". [ticket/12056] validate_range: Fix "Creating default object from empty value" [ticket/12056] build_select: Fix "Creating default object from empty value" [ticket/12056] h_radio test: Fix "Creating default object from empty value"
| * | | | | | | | | [ticket/12056] group_user_attributes: Fix "Creating ... from empty value".Andreas Fischer2013-12-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] Fix "Call to undefined function ...\utf8_normalize_nfc()"Andreas Fischer2013-12-041-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] Fix "Call to undefined function ...\utf8_clean_string()"Andreas Fischer2013-12-041-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] Fix "Call to a member function trigger_event() on a non-object".Andreas Fischer2013-12-041-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] Fix "Call to undefined function phpbb\phpbb_get_plural_form()".Andreas Fischer2013-12-041-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] Fix "undefined function phpbb_pcre_utf8_support()".Andreas Fischer2013-12-042-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] validate_config_vars: Fix ".. undefined function utf8_strlen()"Andreas Fischer2013-12-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] validate_config_vars: Fix "Creating ... from empty value".Andreas Fischer2013-12-041-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] validate_range: Fix "Creating default object from empty value"Andreas Fischer2013-12-041-16/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] build_select: Fix "Creating default object from empty value"Andreas Fischer2013-12-041-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
| * | | | | | | | | [ticket/12056] h_radio test: Fix "Creating default object from empty value"Andreas Fischer2013-12-041-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
* | | | | | | | | | Merge branch 'develop-olympus' into developJoas Schilling2013-12-041-1/+2
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | / / / / / | | |_|_|/ / / / / | |/| | | | | | | * develop-olympus: [ticket/12056] Fix failure due to "Creating default object from empty value".
| * | | | | | | | [ticket/12056] Fix failure due to "Creating default object from empty value".Andreas Fischer2013-12-041-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12056
* | | | | | | | | Merge branch 'develop-olympus' into developJoas Schilling2013-12-021-1/+5
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11699] Also exclude the phpBB/cache directory. [ticket/11699] Properly exclude the .git directory. Namely missing dot prefix. [ticket/11699] Exclude build/new_version and build/old_versions from lint.
| * | | | | | | | [ticket/11699] Also exclude the phpBB/cache directory.Andreas Fischer2013-11-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11699
| * | | | | | | | [ticket/11699] Properly exclude the .git directory. Namely missing dot prefix.Andreas Fischer2013-11-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11699
| * | | | | | | | [ticket/11699] Exclude build/new_version and build/old_versions from lint.Andreas Fischer2013-11-291-0/+2
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | PHPBB3-11699
* | | | | | | | [ticket/12050] Make phpbb_notification_submit_post_base abstract.Andreas Fischer2013-12-011-1/+1
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | PHPBB3-12050
* | | | | | | Merge remote-tracking branch 'Marc/ticket/11896' into developJoas Schilling2013-11-192-9/+50
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Marc/ticket/11896: [ticket/11896] Use $form_time and fix out of bounds $form_time [ticket/11896] Correctly document return of null in docblocks [ticket/11896] Minor code improvements in phpbb_functional_test_case [ticket/11896] Add functional tests for marking all notifications read [ticket/11896] Add ability to define expected message after posting [ŧicket/11896] Set form_time with time() when marking all notifications read