aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/extension_controller_test.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/13008] Add functionnal testTristan Darricau2014-08-241-0/+14
| | | | PHPBB3-13008
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* [ticket/12261] Mark test as incomplete, something is wrong with sessionsJoas Schilling2014-03-111-0/+3
| | | | PHPBB3-12261
* [ticket/12261] Fix doc blockJoas Schilling2014-03-101-1/+1
| | | | PHPBB3-12261
* [ticket/12261] Validate the redirect hidden field before submitting the formJoas Schilling2014-03-101-0/+2
| | | | PHPBB3-12261
* [ticket/12261] Add a functional test for redirect after using login_box()Joas Schilling2014-03-101-1/+17
| | | | PHPBB3-12261
* [ticket/11997] Use path_helper in in foo/bar extension for redirect URLsMarc Alexander2013-12-271-1/+1
| | | | | | | By using path_helper's clean_url() method, we'll be able to properly check the full URL instead of just parts of the expected URL. PHPBB3-11997
* [ticket/11997] Allow redirects to parent folders like previouslyMarc Alexander2013-12-211-1/+3
| | | | | | | Redirects to parent folders were possible with the previous redirect function. This change will allow these redirects again. PHPBB3-11997
* [ticket/11997] Move expected redirect returns to controller and output to HTMLMarc Alexander2013-12-201-16/+11
| | | | | | | | The controller will now output the expected redirect returns the same way the redirect returns are output. The extension controller test will compare those 2 outputs. PHPBB3-11997
* Merge branch 'develop' of https://github.com/phpbb/phpbb into ticket/11997Marc Alexander2013-12-071-0/+2
|\ | | | | | | | | Conflicts: tests/functional/fixtures/ext/foo/bar/config/services.yml
| * [ticket/12017] Copy config/ dir so events workJoas Schilling2013-11-141-0/+2
| | | | | | | | PHPBB3-12017
* | [ticket/11997] Fix tests for path_helper's get_controller_redirect_url()Marc Alexander2013-12-071-10/+9
| | | | | | | | PHPBB3-11997
* | [ticket/11997] Add functional test for redirects in controllerJoas Schilling2013-11-131-0/+32
|/ | | | PHPBB3-11997
* [ticket/11700] Fix extension loading with namespacesNils Adermann2013-09-191-1/+1
| | | | | | | class loader now expects all classes to be prefixed with a backslash when resolving paths PHPBB3-11700
* [ticket/11215] Use new URL structure for controllersDavid King2013-08-311-5/+5
| | | | | | | In tests, the old app.php?controller=foo structure was used. Instead it should be app.php/foo. PHPBB3-11215
* [ticket/11696] Rename db_tools.php so it can be autoloadedJoas Schilling2013-07-141-1/+0
| | | | PHPBB3-11696
* [ticket/11550] Move comments to correct functionJoas Schilling2013-06-111-8/+0
| | | | PHPBB3-11550
* [ticket/11550] Fixtures should only be directories not filesJoas Schilling2013-06-081-4/+3
| | | | PHPBB3-11550
* [ticket/11550] Use new functionality from the test case helpersJoas Schilling2013-06-081-35/+6
| | | | | | | Instead of duplicating the extension copy code, it is now in the helpers. So we remove the code from existing tests. PHPBB3-11550
* Merge branch 'ticket/11568' into ticket/11568-developJoas Schilling2013-05-311-8/+10
| | | | | | | | | | | * ticket/11568: [ticket/11568] Split status code and html debug assertion into two methods [ticket/11568] Add comma at end of array key-value couple [ticket/11568] Invert logic for asserting the response [ticket/11568] Use static calls for static methods Conflicts: tests/test_framework/phpbb_functional_test_case.php
* [ticket/develop/11568] Remove unneccessary second call with wrong argumentsJoas Schilling2013-05-301-1/+0
| | | | PHPBB3-11568
* [ticket/develop/11568] Fix some more tests in 3.1Joas Schilling2013-05-301-3/+3
| | | | PHPBB3-11568
* [ticket/develop/11568] Remove unneccessary calls to assert_response_success()Joas Schilling2013-05-281-4/+2
| | | | PHPBB3-11568
* [ticket/develop/11568] Do not directly access $client from testsJoas Schilling2013-05-281-4/+5
| | | | PHPBB3-11568
* [feature/controller] Fix comments, check against more general HttpExceptionDavid King2012-11-191-3/+4
| | | | PHPBB3-10864
* [feature/controller] Check for proper status codes from controllersDavid King2012-11-191-1/+12
| | | | PHPBB3-10864
* [feature/controller] Fix functional tests to use query string for controllersDavid King2012-11-181-4/+4
| | | | PHPBB3-10864
* [feature/controller] Fix line endings and permissions, and check responsesDavid King2012-11-161-0/+4
| | | | PHPBB3-10864
* [feature/controller] Add controller functional test with templateDavid King2012-11-161-5/+27
| | | | PHPBB3-10864
* [feature/controller] Use warning instead of echo for copy() and unlink()David King2012-11-161-8/+2
| | | | PHPBB3-10864
* [feature/controller] Add test for missing argument in controller classDavid King2012-11-161-1/+9
| | | | PHPBB3-10864
* [feature/controller] Adapt functional tests given new controller frameworkDavid King2012-11-161-82/+47
| | | | PHPBB3-10864
* [ticket/11202] Check response success before content assertions.Oleg Pudeyev2012-11-151-0/+2
| | | | | | | This does not change tests that perform requests which are either clearly not supposed to succeed or are a gray area. PHPBB3-11202
* [ticket/10837] Removed tearDownAfterClass() from extension_controller_test.phpDavid King2012-05-071-9/+0
| | | | PHPBB3-10837
* [ticket/10586] Added space in if statementDavid King2012-03-281-1/+1
| | | | PHPBB3-10586
* [ticket/10586] Tests finally work (thanks naderman)David King2012-03-191-13/+12
| | | | PHPBB3-10586
* [ticket/10586] Correctly purge board cache and don't rename install directoryNils Adermann2012-03-191-4/+4
| | | | PHPBB3-10586
* [ticket/10586] trying to get tests to workDavid King2012-03-191-12/+16
| | | | PHPBB3-10586
* [ticket/10586] more work on getting tests to passDavid King2012-03-191-11/+5
| | | | PHPBB3-10586
* [ticket/10586] Tests are coming along, just a little more to goDavid King2012-03-191-30/+26
| | | | PHPBB3-10586
* [ticket/10586] Rename install directory back to install/ after testsDavid King2012-03-191-0/+11
| | | | PHPBB3-10586
* [ticket/10586] browse tests now work, but mine dont. at least we are making ↵David King2012-03-191-1/+21
| | | | | | progress PHPBB3-10586
* [ticket/10586] initial work on copying fixtures. Note that this depends on 10706David King2012-03-191-0/+33
| | | | PHPBB3-10586
* [ticket/10586] Now tests run, but fail. But here is what I have.David King2012-03-191-2/+4
| | | | PHPBB3-10586
* [ticket/10586] some bootstrap additions and test changes to try and make it workDavid King2012-03-191-4/+2
| | | | PHPBB3-10586
* [ticket/10586] test stuff. does not work yet, still need to put phpBB ↵David King2012-03-191-0/+96
objects in bootstrap.php