* @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ class phpbb_functions_make_clickable_test extends phpbb_test_case { /** * Tags: * 'm' - full URL like xxxx://aaaaa.bbb.cccc. * 'l' - local relative board URL like http://domain.tld/path/to/board/index.php * 'w' - URL without http/https protocol like www.xxxx.yyyy[/zzzz] aka 'lazy' URLs * 'e' - email@domain type address * * Classes: * "postlink-local" for 'l' URLs * "postlink" for the rest of URLs * empty for email addresses **/ public function data_test_make_clickable_url_positive() { return [ [ 'http://www.phpbb.com/community/', 'http://www.phpbb.com/community/' ], [ 'http://www.phpbb.com/path/file.ext#section', 'http://www.phpbb.com/path/file.ext#section' ], [ 'ftp://ftp.phpbb.com/', 'ftp://ftp.phpbb.com/' ], [ 'sip://bantu@phpbb.com', 'sip://bantu@phpbb.com' ], [ 'www.phpbb.com/community/', 'www.phpbb.com/community/' ], [ 'http://testhost/viewtopic.php?t=1', 'viewtopic.php?t=1' ], [ 'javascript://testhost/viewtopic.php?t=1', 'javascript://testhost/viewtopic.php?t=1' ], [ "java\nscri\npt://testhost/viewtopic.php?t=1", "java\nscri\npt://testhost/viewtopic.php?t=1" ], [ 'email@domain.com', 'email@domain.com' ], // Test appending punctuation mark to the URL [ 'http://testhost/viewtopic.php?t=1!', 'viewtopic.php?t=1!' ], [ 'www.phpbb.com/community/?', 'www.phpbb.com/community/?' ], // Test shortened text for URL > 55 characters long // URL text should be turned into: first 39 chars + ' ... ' + last 10 chars [ 'http://www.phpbb.com/community/path/to/long/url/file.ext#section', 'http://www.phpbb.com/community/path/to/ ... xt#section' ], ]; } public function data_test_make_clickable_url_idn() { return [ [ 'http://www.täst.de/community/', 'http://www.täst.de/community/' ], [ 'http://www.täst.de/path/file.ext#section', 'http://www.täst.de/path/file.ext#section' ], [ 'ftp://ftp.täst.de/', 'ftp://ftp.täst.de/' ], [ 'javascript://täst.de/', 'javascript://täst.de/' ], [ 'sip://bantu@täst.de', 'sip://bantu@täst.de' ], [ 'www.täst.de/community/', 'www.täst.de/community/' ], // Test appending punctuation mark to the URL [ 'http://домен.рф/viewtopic.php?t=1!', 'http://домен.рф/viewtopic.php?t=1!' ], [ 'www.домен.рф/сообщество/?', 'www.домен.рф/сообщество/?' ], // Test shortened text for URL > 55 characters long // URL text should be turned into: first 39 chars + ' ... ' + last 10 chars [ 'http://www.домен.рф/сообщество/путь/по/длинной/ссылке/file.ext#section', 'http://www.домен.рф/сообщество/путь/по/ ... xt#section' ], // IDN with invalid characters shouldn't be parsed correctly (only 'valid' part) [ 'http://www.täst╫.de', 'http://www.täst╫.de' ], // IDN in emails is unsupported yet ['почта@домен.рф', 'почта@домен.рф'], ]; } public function data_test_make_clickable_local_url_idn() { return [ [ 'http://www.домен.рф/viewtopic.php?t=1', 'viewtopic.php?t=1' ], // Test appending punctuation mark to the URL [ 'http://www.домен.рф/viewtopic.php?t=1!', 'viewtopic.php?t=1!' ], [ 'http://www.домен.рф/сообщество/?', 'сообщество/?' ], ]; } public function data_test_make_clickable_custom_classes() { return [ [ 'http://www.домен.рф/viewtopic.php?t=1', 'http://www.домен.рф', 'class1', 'viewtopic.php?t=1' ], [ 'http://www.домен.рф/viewtopic.php?t=1!', false, 'class2', 'http://www.домен.рф/viewtopic.php?t=1!' ], [ 'http://www.домен.рф/сообщество/?', false, 'class3', 'http://www.домен.рф/сообщество/?' ], [ 'www.phpbb.com/community/', false, 'class2', 'www.phpbb.com/community/' ], [ 'http://testhost/viewtopic.php?t=1', false, 'class1', 'viewtopic.php?t=1' ], [ 'email@domain.com', false, 'class-email', 'email@domain.com' ], ]; } protected function setUp(): void { parent::setUp(); global $user, $request, $symfony_request; $user = new phpbb_mock_user(); $request = new phpbb_mock_request(); $symfony_request = new \phpbb\symfony_request($request); } /** * @dataProvider data_test_make_clickable_url_positive * @dataProvider data_test_make_clickable_url_idn */ public function test_urls_matching_positive($url, $expected) { $this->assertSame($expected, make_clickable($url)); } /** * @dataProvider data_test_make_clickable_local_url_idn */ public function test_local_urls_matching_idn($url, $expected) { $this->assertSame($expected, make_clickable($url, "http://www.домен.рф")); } /** * @dataProvider data_test_make_clickable_custom_classes */ public function test_make_clickable_custom_classes($url, $server_url, $class, $expected) { $this->assertSame($expected, make_clickable($url, $server_url, $class)); } }