aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* [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 #1801 from nickvergessen/ticket/11948Nils Adermann2013-10-223-2/+16
|\ | | | | Ticket/11948 Extensions should be allowed to have more then 1 routing file
| * [ticket/11948] Check actual result of routesJoas Schilling2013-10-211-1/+8
| | | | | | | | PHPBB3-11948
| * [ticket/11948] Allow resource importing for routingJoas Schilling2013-10-212-1/+5
| | | | | | | | PHPBB3-11948
| * [ticket/11948] Add second routing file to testsJoas Schilling2013-10-192-1/+4
| | | | | | | | PHPBB3-11948
* | [ticket/11930] Move path_helper in front of optional cache argumentMarc Alexander2013-10-211-2/+2
| | | | | | | | | | | | Optional method arguments should be after any mandatory ones. PHPBB3-11930
* | [ticket/11930] Fix tests after adding phpbb\path_helper to avatar driversMarc Alexander2013-10-171-2/+10
|/ | | | PHPBB3-11930
* [feature/plupload/integration] Integration of PluploadAndreas Fischer2013-10-112-0/+168
| | | | | | | | This commit is a highly-refactored and up-to-date version of Fyorl's work which was part of his Google Summer of Code 2012 project "Attachment Improvements". PHPBB3-10929
* Merge pull request #1764 from EXreaction/ticket/11874Nils Adermann2013-10-103-16/+21
|\ | | | | [ticket/11874] Do not always prepend the web path; only replace phpbb_root_path
| * [ticket/11874] Fix testsNathan Guse2013-10-103-16/+21
| | | | | | | | PHPBB3-11874
* | [ticket/11903] Speed up paging testNathan Guse2013-10-101-4/+4
|/ | | | PHPBB3-11903
* Merge pull request #1481 from dhruvgoel92/ticket/11608Nathan Guse2013-10-076-0/+192
|\ | | | | [ticket/11608] add functional tests for search
| * [ticket/11608] Mark failed test as incomplete for mysql search backendDhruv2013-10-051-0/+5
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Update search backend class names to namespacesDhruv2013-10-054-4/+4
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Move markIncomplete to search backends testDhruv2013-10-054-9/+15
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Rename base search test class fileDhruv2013-10-055-4/+4
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Remove suffix test from base classDhruv2013-10-055-37/+37
| | | | | | | | | | | | | | Rename base class to phpbb_functional_search_base and fix Docblocks as per phpbb guidelines. PHPBB3-11608
| * [ticket/11608] Mark postgres search not found test as incompleteDhruv2013-10-051-2/+2
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Mark sphinx tests as incomplete for nowDhruv2013-10-051-0/+5
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Mark failed search test incomplete for native searchDhruv2013-10-051-0/+4
| | | | | | | | PHPBB3-11608
| * [ticket/11608] remove setUp method overrideDhruv2013-10-054-32/+4
| | | | | | | | PHPBB3-11608
| * [ticket/11608] add search functional tests to search subfolderDhruv2013-10-055-11/+10
| | | | | | | | PHPBB3-11608
| * [ticket/11608] rename search_found and not_found methodDhruv2013-10-051-8/+6
| | | | | | | | | | | | | | | | Rename search_found and search_not_found to assert_search_found and assert_search_not_found. Count .errorbox incase the search backend is not supported and skip tests PHPBB3-11608
| * [ticket/11608] pass keywords to search_found and search_not_found testDhruv2013-10-051-7/+9
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Set sphinx id from test_config file for testsDhruv2013-10-052-1/+9
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Use assertEquals for more accurate assertionsDhruv2013-10-051-2/+2
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Use assertContainsLang to compare language stringsDhruv2013-10-051-2/+2
| | | | | | | | PHPBB3-11608
| * [ticket/11608] split search tests into separate filesDhruv2013-10-055-36/+109
| | | | | | | | | | | | | | Tests for each search backend are into their own separate files. These separate classes inherit from a common search test case class. PHPBB3-11608
| * [ticket/11608] Check for word highlights in search resultsDhruv2013-10-051-1/+2
| | | | | | | | | | | | Search tests check for highlighted words in search results PHPBB3-11608
| * [ticket/11608] Mark sphinx test as incompleteDhruv2013-10-051-1/+2
| | | | | | | | | | | | Sphinx search for the test board cannot be tested PHPBB3-11608
| * [ticket/11608] Logout before searchingDhruv2013-10-051-0/+4
| | | | | | | | | | | | | | Keyword search in search functional tests should be performed as guests rather than logged in as admin. PHPBB3-11608
| * [ticket/11608] Add more assetions in testsDhruv2013-10-051-1/+5
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Use assertions in testDhruv2013-10-051-4/+2
| | | | | | | | PHPBB3-11608
| * [ticket/11608] complete search tests functionalitiesDhruv2013-10-051-4/+33
| | | | | | | | PHPBB3-11608
| * [ticket/11608] Skip tests for unsupported search backendsDhruv2013-10-051-4/+10
| | | | | | | | PHPBB3-11608
| * [ticket/11608] add basic search functional test structureDhruv2013-10-051-0/+77
| | | | | | | | PHPBB3-11608
* | Merge pull request #1742 from EXreaction/ticket/11840David King2013-10-045-31/+30
|\ \ | |/ |/| Ticket/11840 Refactor the extension metadata class
| * [ticket/11840] Correct Moo test extension composerNathan Guse2013-09-301-2/+2
| | | | | | | | PHPBB3-11840
| * [ticket/11840] Use generic information in the test extensionNathan Guse2013-09-303-7/+7
| | | | | | | | | | | | Not sure why I had my name/info in these files... PHPBB3-11840
| * [task/composer-compatibility] Minor changes that will break extension BCMichaelC2013-10-014-22/+21
| | | | | | | | PHPBB3-11840
* | Merge pull request #1726 from EXreaction/ticket/11850David King2013-10-035-39/+122
|\ \ | | | | | | Fix $user->page on pages through the controller
| * | [ticket/11850] More namespacesNathan Guse2013-09-301-1/+1
| | | | | | | | | | | | PHPBB3-11850
| * | [ticket/11850] More namespacesNathan Guse2013-09-303-4/+4
| | | | | | | | | | | | PHPBB3-11850
| * | [ticket/11850] Fix testsNathan Guse2013-09-301-2/+3
| | | | | | | | | | | | PHPBB3-11850
| * | [ticket/11850] Update for namespacesNathan Guse2013-09-303-5/+10
| | | | | | | | | | | | PHPBB3-11850
| * | Merge branch 'develop' of github.com:phpbb/phpbb3 into ticket/11850Nathan Guse2013-09-30159-637/+866
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # By Nils Adermann (68) and others # Via Andreas Fischer (12) and others * 'develop' of github.com:phpbb/phpbb3: (102 commits) [ticket/11876] Replace MD5 with SHA256. [ticket/11876] Move checksum generation from build PHP files to phing build.xml [develop-olympus] Build against 3.0.12 instead of 3.0.12-RC3. Tag exists now. [prep-release-3.0.12] Update changelog for 3.0.12 release. [ticket/11873] Add unit test for large password input. [ticket/11873] Do not hash very large passwords in order to safe resources. [ticket/11862] Correct var names in user_delete() events due to prune-users [develop-olympus] Use 3.0.13-dev as build version. Use latest 3.0.12 RC tag. [prep-release-3.0.12] Bumping version number for 3.0.12 final. [ticket/11852] Add class file [ticket/11852] Move tests to folder with new class name [ticket/11852] Split filesystem and path_helper into 2 classes [ticket/11868] Add @depends to test [ticket/11868] Add functional test for registration [ticket/11868] Replace phpbb_request_interface references [ticket/11866] Only single backslash in .md files [ticket/11866] Remove outdated and broken develop script [ticket/11866] More namespaces [ticket/11866] Update some occurances of phpbb_db_ to new Namespace [ticket/11865] Convert old class name to namespaced version ... Conflicts: tests/security/extract_current_page_test.php tests/session/testable_facade.php