aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/posting_test.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '3.2.x' into ticket/161533D-I2019-10-281-2/+2
|\
| * [ticket/16150] Make post subject links reliablev12mike2019-09-081-2/+2
| | | | | | | | | | | | | | Change links that were relative to topic page into absolute links. Update related test cases. PHPBB3-16150
* | [ticket/16153] Functional test 23D-I2019-09-111-7/+4
| | | | | | | | PHPBB3-16153
* | [ticket/16153] Functional test3D-I2019-09-111-3/+1
|/ | | | PHPBB3-16153
* [ticket/15171] Fix testRubén Calvo2017-10-311-1/+1
| | | | PHPBB3-15171
* Merge pull request #4632 from VSEphpbb/ticket/14989Tristan Darricau2017-01-151-0/+41
|\ | | | | | | | | | | | | [ticket/14989] Allow more admin-configurable schemes in post links * VSEphpbb/ticket/14989: [ticket/14989] Allow more admin-configurable schemes in post links
| * [ticket/14989] Allow more admin-configurable schemes in post linksMatt Friedman2017-01-111-0/+41
| | | | | | | | PHPBB3-14989
* | [ticket/14962] Fix functional test for editing postMarc Alexander2017-01-061-3/+6
| | | | | | | | PHPBB3-14962
* | [ticket/14962] Introduces a new helper to check emptyness of bbcode textsTristan Darricau2017-01-061-0/+15
|/ | | | PHPBB3-14962
* Merge branch '3.1.x' into 3.2.xTristan Darricau2016-10-031-0/+16
|\ | | | | | | | | | | * 3.1.x: [ticket/14802] Add test for empty/blank lines in poll options [ticket/14802] Empty/blank lines should not be additional poll options
| * [ticket/14802] Add test for empty/blank lines in poll optionsDaniel Sinn2016-10-031-0/+16
| | | | | | | | PHPBB3-14802
| * [ticket/13880] Automatically remove quotes that are nested too deepJoshyPHP2015-06-271-0/+81
| | | | | | | | PHPBB3-13880
* | [ticket/10628] Added testJoshyPHP2015-12-281-0/+25
| | | | | | | | | | | | | | | | Tests that the textarea's content is preserved, that no "http://" is added to the text or to the preview's HTML and that the www URL is linkified PHPBB3-10628
* | [ticket/14000] Replaced test content with non-emoji charactersJoshyPHP2015-07-131-2/+2
| | | | | | | | PHPBB3-14000
* | [ticket/10620] Fixed functional tests to account for newlinesJoshyPHP2015-06-251-2/+2
| | | | | | | | PHPBB3-10620
* | [ticket/10620] Removed extraneous quotes from attribute valuesJoshyPHP2015-06-251-2/+2
| | | | | | | | PHPBB3-10620
* | [ticket/10620] Implemented quote improvementsJoshyPHP2015-06-251-7/+10
| | | | | | | | PHPBB3-10620
* | [ticket/13906] Renamed testJoshyPHP2015-06-021-1/+1
| | | | | | | | PHPBB3-13906
* | [ticket/13906] Added testJoshyPHP2015-06-021-0/+22
| | | | | | | | PHPBB3-13906
* | [ticket/8420] Added regression testJoshyPHP2015-05-311-0/+14
| | | | | | | | PHPBB3-8420
* | [ticket/13847] Move quote generation to text_formatter.utilsJoshyPHP2015-05-251-0/+14
| | | | | | | | PHPBB3-13847
* | [ticket/11530] Fixed test description [ci skip]JoshyPHP2015-05-191-1/+1
| | | | | | | | PHPBB3-11530
* | [ticket/11530] Remove extra quotes when depth limit is exceededJoshyPHP2015-05-181-0/+81
| | | | | | | | PHPBB3-11530
* | [ticket/12745] Added HTML entity testJoshyPHP2015-04-251-0/+10
| | | | | | | | | | | | https://github.com/phpbb/phpbb/pull/3548#issuecomment-96219167 PHPBB3-12745
* | [ticket/12745] Added support for Unicode characters outside BMPJoshyPHP2015-04-251-8/+10
|/ | | | PHPBB3-12745
* [ticket/11711] Improve coding and comments of character checkMarc Alexander2014-06-101-2/+4
| | | | PHPBB3-11711
* [ticket/11711] Reduce size of tests and also test topic titlesMarc Alexander2014-06-091-30/+13
| | | | PHPBB3-11711
* [ticket/11711] Inform user of unsupported characters while postingMarc Alexander2014-06-091-0/+38
| | | | PHPBB3-11711
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* [ticket/11865] Add bbcodes to functional posting testsJoas Schilling2013-09-261-2/+2
| | | | PHPBB3-11865
* [ticket/9341] Move create_topic and post into functional test caseDhruv2013-06-271-101/+0
| | | | | | | create_topic and create_post are moved into functional test case so that they can be used by other tests as well PHPBB3-9341
* [ticket/11568] Use static calls for static methodsJoas Schilling2013-05-311-7/+7
| | | | PHPBB3-11568
* [ticket/11568] Remove manual calls to assert_response_success()Joas Schilling2013-05-271-4/+1
| | | | PHPBB3-11568
* [ticket/8610] Do not use requests to submit posts except in posting_test.phpNathan Guse2012-12-151-6/+106
| | | | | | | | Moving my functional test functions from posting_helpers.php to posting_test.php since it is a bit nicer and more reusable if posting_test.php is to be expanded in the future. PHPBB3-8610
* [ticket/8610] Move posting helpers to separate fileNathan Guse2012-12-131-2/+6
| | | | | | This is to prevent cluttering up the functional test case class more PHPBB3-8610
* [ticket/8610] Create helper functions to create topic/post in functional testsNathan Guse2012-12-131-78/+11
| | | | | | | | This will be used to test splitting/copying/merging/etc in functional tests Also convert functional posting_test.php to use these functions PHPBB3-8610
* [task/functional] Allow tests to bypass certain restrictions with DEBUG_TESTDavid King2012-09-011-9/+1
| | | | PHPBB3-10758
* [task/functional] Added posting tests (reply and new topic)David King2012-09-011-0/+110
PHPBB-10758