| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { | 
					
						
							|  |  |  |     print "This script must be run from the command line\n"; | 
					
						
							|  |  |  |     exit(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); | 
					
						
							| 
									
										
										
										
											2009-08-25 18:42:34 -04:00
										 |  |  | define('STATUSNET', true); | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | require_once INSTALLDIR . '/lib/common.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class URLDetectionTest extends PHPUnit_Framework_TestCase | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @dataProvider provider | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function testProduction($content, $expected) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $rendered = common_render_text($content); | 
					
						
							|  |  |  |         $this->assertEquals($expected, $rendered); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static public function provider() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return array( | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:31 -04:00
										 |  |  |                      array('http://127.0.0.1', | 
					
						
							|  |  |  |                            '<a href="http://127.0.0.1/" rel="external">http://127.0.0.1</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('127.0.0.1', | 
					
						
							|  |  |  |                            '<a href="http://127.0.0.1/" rel="external">127.0.0.1</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:31 -04:00
										 |  |  |                      array('127.0.0.1:99', | 
					
						
							|  |  |  |                            '<a href="http://127.0.0.1:99/" rel="external">127.0.0.1:99</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('127.0.0.1/test.php', | 
					
						
							|  |  |  |                            '<a href="http://127.0.0.1/test.php" rel="external">127.0.0.1/test.php</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-28 16:18:05 -04:00
										 |  |  |                      array('127.0.0.1/~test', | 
					
						
							|  |  |  |                            '<a href="http://127.0.0.1/~test" rel="external">127.0.0.1/~test</a>'), | 
					
						
							|  |  |  |                      array('127.0.0.1/test%20stuff', | 
					
						
							|  |  |  |                            '<a href="http://127.0.0.1/test%20stuff" rel="external">127.0.0.1/test%20stuff</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:31 -04:00
										 |  |  |                      array('http://[::1]:99/test.php', | 
					
						
							|  |  |  |                            '<a href="http://[::1]:99/test.php" rel="external">http://[::1]:99/test.php</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('http://::1/test.php', | 
					
						
							|  |  |  |                            '<a href="http://::1/test.php" rel="external">http://::1/test.php</a>'), | 
					
						
							|  |  |  |                      array('http://::1', | 
					
						
							|  |  |  |                            '<a href="http://::1/" rel="external">http://::1</a>'), | 
					
						
							|  |  |  |                      array('2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php', | 
					
						
							|  |  |  |                            '<a href="http://2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php" rel="external">2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:31 -04:00
										 |  |  |                      array('[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php', | 
					
						
							|  |  |  |                            '<a href="http://[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php" rel="external">[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('2001:4978:1b5:0:21d:e0ff:fe66:59ab', | 
					
						
							|  |  |  |                            '<a href="http://2001:4978:1b5:0:21d:e0ff:fe66:59ab/" rel="external">2001:4978:1b5:0:21d:e0ff:fe66:59ab</a>'), | 
					
						
							|  |  |  |                      array('http://127.0.0.1', | 
					
						
							|  |  |  |                            '<a href="http://127.0.0.1/" rel="external">http://127.0.0.1</a>'), | 
					
						
							|  |  |  |                      array('example.com', | 
					
						
							|  |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>'), | 
					
						
							|  |  |  |                      array('example.com', | 
					
						
							|  |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>'), | 
					
						
							|  |  |  |                      array('http://example.com', | 
					
						
							|  |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>'), | 
					
						
							|  |  |  |                      array('http://example.com.', | 
					
						
							|  |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>.'), | 
					
						
							|  |  |  |                      array('/var/lib/example.so', | 
					
						
							|  |  |  |                            '/var/lib/example.so'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example', | 
					
						
							|  |  |  |                            'example'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('user@example.com', | 
					
						
							|  |  |  |                            '<a href="mailto:user@example.com" rel="external">user@example.com</a>'), | 
					
						
							|  |  |  |                      array('user_name+other@example.com', | 
					
						
							|  |  |  |                            '<a href="mailto:user_name+other@example.com" rel="external">user_name+other@example.com</a>'), | 
					
						
							|  |  |  |                      array('mailto:user@example.com', | 
					
						
							|  |  |  |                            '<a href="mailto:user@example.com" rel="external">mailto:user@example.com</a>'), | 
					
						
							|  |  |  |                      array('mailto:user@example.com?subject=test', | 
					
						
							|  |  |  |                            '<a href="mailto:user@example.com?subject=test" rel="external">mailto:user@example.com?subject=test</a>'), | 
					
						
							|  |  |  |                      array('#example', | 
					
						
							|  |  |  |                            '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('example'))) . '" rel="tag">example</a></span>'), | 
					
						
							|  |  |  |                      array('#example.com', | 
					
						
							|  |  |  |                            '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('example.com'))) . '" rel="tag">example.com</a></span>'), | 
					
						
							|  |  |  |                      array('#.net', | 
					
						
							|  |  |  |                            '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('.net'))) . '" rel="tag">.net</a></span>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://example/" rel="external">http://example</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('http://3xampl3', | 
					
						
							|  |  |  |                            '<a href="http://3xampl3/" rel="external">http://3xampl3</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example/', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://example/" rel="external">http://example/</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example/path', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://example/path" rel="external">http://example/path</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('https://example.com', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="https://example.com/" rel="external">https://example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('ftp://example.com', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="ftp://example.com/" rel="external">ftp://example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('ftps://example.com', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="ftps://example.com/" rel="external">ftps://example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://user@example.com', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://user@example.com/" rel="external">http://user@example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://user:pass@example.com', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://user:pass@example.com/" rel="external">http://user:pass@example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com:8080', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://example.com:8080/" rel="external">http://example.com:8080</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('http://example.com:8080/test.php', | 
					
						
							|  |  |  |                            '<a href="http://example.com:8080/test.php" rel="external">http://example.com:8080/test.php</a>'), | 
					
						
							|  |  |  |                      array('example.com:8080/test.php', | 
					
						
							|  |  |  |                            '<a href="http://example.com:8080/test.php" rel="external">example.com:8080/test.php</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://www.example.com', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://www.example.com/" rel="external">http://www.example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com/</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/path', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            '<a href="http://example.com/path" rel="external">http://example.com/path</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/path.html', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            '<a href="http://example.com/path.html" rel="external">http://example.com/path.html</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/path.html#fragment', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            '<a href="http://example.com/path.html#fragment" rel="external">http://example.com/path.html#fragment</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/path.php?foo=bar&bar=foo', | 
					
						
							| 
									
										
										
										
											2009-08-24 20:44:06 -04:00
										 |  |  |                            '<a href="http://example.com/path.php?foo=bar&bar=foo" rel="external">http://example.com/path.php?foo=bar&bar=foo</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      array('http://example.com.', | 
					
						
							|  |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>.'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://müllärör.de', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://müllärör.de/" rel="external">http://müllärör.de</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://ﺱﺲﺷ.com', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://ﺱﺲﺷ.com/" rel="external">http://ﺱﺲﺷ.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://сделаткартинки.com', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://сделаткартинки.com/" rel="external">http://сделаткартинки.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://tūdaliņ.lv', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://tūdaliņ.lv/" rel="external">http://tūdaliņ.lv</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://brændendekærlighed.com', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://brændendekærlighed.com/" rel="external">http://brændendekærlighed.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://あーるいん.com', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://あーるいん.com/" rel="external">http://あーるいん.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://예비교사.com', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://예비교사.com/" rel="external">http://예비교사.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com.', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>.'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com?', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com!', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>!'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com,', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>,'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com;', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>;'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com:', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>:'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('\'http://example.com\'', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '\'<a href="http://example.com/" rel="external">http://example.com</a>\''), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('"http://example.com"', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '"<a href="http://example.com/" rel="external">http://example.com</a>"'), | 
					
						
							|  |  |  |                      array('http://example.com', | 
					
						
							|  |  |  |                            '<a href="http://example.com/" rel="external">http://example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('(http://example.com)', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '(<a href="http://example.com/" rel="external">http://example.com</a>)'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('[http://example.com]', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '[<a href="http://example.com/" rel="external">http://example.com</a>]'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('<http://example.com>', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<<a href="http://example.com/" rel="external">http://example.com</a>>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/path/(foo)/bar', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            '<a href="http://example.com/path/(foo)/bar" rel="external">http://example.com/path/(foo)/bar</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/path/[foo]/bar', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            '<a href="http://example.com/path/[foo]/bar" rel="external">http://example.com/path/[foo]/bar</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('http://example.com/path/foo/(bar)', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            '<a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      //Not a valid url - urls cannot contain unencoded square brackets
 | 
					
						
							| 
									
										
										
										
											2009-08-25 14:12:31 -04:00
										 |  |  |                      array('http://example.com/path/foo/[bar]', | 
					
						
							|  |  |  |                            '<a href="http://example.com/path/foo/[bar]" rel="external">http://example.com/path/foo/[bar]</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Hey, check out my cool site http://example.com okay?', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            'Hey, check out my cool site <a href="http://example.com/" rel="external">http://example.com</a> okay?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. http://example.com/path/foo/(bar))?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>)?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. http://example.com/path/foo/(bar)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. http://example.com/path/foo/(bar).)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>.)?'), | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                      //Not a valid url - urls cannot contain unencoded commas
 | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. http://example.com/path/(foo,bar)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/(foo,bar)" rel="external">http://example.com/path/(foo,bar)</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Unbalanced too (e.g. http://example.com/path/((((foo)/bar)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'Unbalanced too (e.g. <a href="http://example.com/path/((((foo)/bar)" rel="external">http://example.com/path/((((foo)/bar)</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Unbalanced too (e.g. http://example.com/path/(foo))))/bar)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'Unbalanced too (e.g. <a href="http://example.com/path/(foo))))/bar" rel="external">http://example.com/path/(foo))))/bar</a>)?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Unbalanced too (e.g. http://example.com/path/foo/((((bar)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'Unbalanced too (e.g. <a href="http://example.com/path/foo/((((bar)" rel="external">http://example.com/path/foo/((((bar)</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Unbalanced too (e.g. http://example.com/path/foo/(bar))))?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'Unbalanced too (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>)))?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.com', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.org', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.org/" rel="external">example.org</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.co.uk', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.co.uk/" rel="external">example.co.uk</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('www.example.co.uk', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://www.example.co.uk/" rel="external">www.example.co.uk</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('farm1.images.example.co.uk', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://farm1.images.example.co.uk/" rel="external">farm1.images.example.co.uk</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.museum', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.museum/" rel="external">example.museum</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.travel', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.travel/" rel="external">example.travel</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.com.', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>.'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.com?', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.com!', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>!'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.com,', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>,'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.com;', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>;'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('example.com:', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>:'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('\'example.com\'', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '\'<a href="http://example.com/" rel="external">example.com</a>\''), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('"example.com"', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '"<a href="http://example.com/" rel="external">example.com</a>"'), | 
					
						
							|  |  |  |                      array('example.com', | 
					
						
							|  |  |  |                            '<a href="http://example.com/" rel="external">example.com</a>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('(example.com)', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '(<a href="http://example.com/" rel="external">example.com</a>)'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('[example.com]', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '[<a href="http://example.com/" rel="external">example.com</a>]'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('<example.com>', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            '<<a href="http://example.com/" rel="external">example.com</a>>'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Hey, check out my cool site example.com okay?', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a> okay?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Hey, check out my cool site example.com.I made it.', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a>.I made it.'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Hey, check out my cool site example.com.Funny thing...', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a>.Funny thing...'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('Hey, check out my cool site example.com.You will love it.', | 
					
						
							| 
									
										
										
										
											2009-08-25 11:21:45 -04:00
										 |  |  |                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a>.You will love it.'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. example.com/path/foo/(bar))?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">example.com/path/foo/(bar)</a>)?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. example.com/path/foo/(bar)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">example.com/path/foo/(bar)</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. example.com/path/foo/(bar).)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">example.com/path/foo/(bar)</a>.)?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('What about parens (e.g. example.com/path/(foo,bar)?', | 
					
						
							| 
									
										
										
										
											2009-08-24 17:48:24 -04:00
										 |  |  |                            'What about parens (e.g. <a href="http://example.com/path/(foo,bar)" rel="external">example.com/path/(foo,bar)</a>?'), | 
					
						
							| 
									
										
										
										
											2009-08-24 15:46:12 -04:00
										 |  |  |                      array('file.ext', | 
					
						
							|  |  |  |                            'file.ext'), | 
					
						
							|  |  |  |                      array('file.html', | 
					
						
							|  |  |  |                            'file.html'), | 
					
						
							|  |  |  |                      array('file.php', | 
					
						
							|  |  |  |                            'file.php') | 
					
						
							|  |  |  |                      ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |