diff options
author | Nils Adermann <naderman@naderman.de> | 2011-06-09 22:40:26 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-06-09 22:40:26 +0200 |
commit | d02d00e9512a1960bf7e9d507a9910b6ea849bf4 (patch) | |
tree | f83ded5655e37a320c7aaa4e3fed6c15564809e4 /tests/bbcode | |
parent | 0942fca29927856731ed4fc1a79cc913a0d97e74 (diff) | |
parent | 928ee43881b30d6f15dc1a5b56aeae425ac47b4d (diff) | |
download | forums-d02d00e9512a1960bf7e9d507a9910b6ea849bf4.tar forums-d02d00e9512a1960bf7e9d507a9910b6ea849bf4.tar.gz forums-d02d00e9512a1960bf7e9d507a9910b6ea849bf4.tar.bz2 forums-d02d00e9512a1960bf7e9d507a9910b6ea849bf4.tar.xz forums-d02d00e9512a1960bf7e9d507a9910b6ea849bf4.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/217] Use positive assertions in tests.
[ticket/217] Silence errors in tests, not code.
[ticket/217] Use positive parameter statement for bbcode_init()
[ticket/217] Adjust patch, add tests
[ticket/217] Multiline [url] not converted
Diffstat (limited to 'tests/bbcode')
-rw-r--r-- | tests/bbcode/url_bbcode_test.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/bbcode/url_bbcode_test.php b/tests/bbcode/url_bbcode_test.php new file mode 100644 index 0000000000..cd85dbd0d9 --- /dev/null +++ b/tests/bbcode/url_bbcode_test.php @@ -0,0 +1,63 @@ +<?php +/** +* +* @package testing +* @copyright (c) 2010 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php'; +require_once dirname(__FILE__) . '/../../phpBB/includes/functions_content.php'; +require_once dirname(__FILE__) . '/../../phpBB/includes/bbcode.php'; +require_once dirname(__FILE__) . '/../../phpBB/includes/message_parser.php'; +require_once dirname(__FILE__) . '/../mock_user.php'; + +class phpbb_url_bbcode_test extends phpbb_test_case +{ + public function url_bbcode_test_data() + { + return array( + array( + 'url only', + '[url]http://www.phpbb.com/community/[/url]', + '[url:]http://www.phpbb.com/community/[/url:]' + ), + array( + 'url with title', + '[url=http://www.phpbb.com/community/]One line URL text[/url]', + '[url=http://www.phpbb.com/community/:]One line URL text[/url:]' + ), + array( + 'url with multiline title', + "[url=http://www.phpbb.com/community/]Multiline\x0AURL\x0Atext[/url]", + "[url=http://www.phpbb.com/community/:]Multiline\x0AURL\x0Atext[/url:]" + ), + array( + 'unclosed url with multiline', + "test [url] test \x0A test [url=http://www.phpbb.com/]test[/url] test", + "test [url] test \x0A test [url=http://www.phpbb.com/:]test[/url:] test" + ), + array( + 'unclosed url with multiline and title', + "test [url=http://www.phpbb.com/]test \x0A [url]http://phpbb.com[/url] test", + "test [url=http://www.phpbb.com/:]test \x0A [url]http://phpbb.com[/url:] test" + ), + ); + } + + /** + * @dataProvider url_bbcode_test_data + */ + public function test_url($description, $message, $expected) + { + global $user; + $user = new phpbb_mock_user; + + $bbcode = new bbcode_firstpass(); + $bbcode->message = $message; + $bbcode->bbcode_init(false); + $bbcode->parse_bbcode(); + $this->assertEquals($expected, $bbcode->message); + } +} |