]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - tests/URLDetectionTest.php
Allow :'s in the path, query string, and fragment parts of the url (Mediawiki URLs...
[quix0rs-gnu-social.git] / tests / URLDetectionTest.php
1 <?php
2
3 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
4     print "This script must be run from the command line\n";
5     exit();
6 }
7
8 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
9 define('STATUSNET', true);
10
11 require_once INSTALLDIR . '/lib/common.php';
12
13 class URLDetectionTest extends PHPUnit_Framework_TestCase
14 {
15     /**
16      * @dataProvider provider
17      *
18      */
19     public function testProduction($content, $expected)
20     {
21         $rendered = common_render_text($content);
22         $this->assertEquals($expected, $rendered);
23     }
24
25     static public function provider()
26     {
27         return array(
28                      array('http://127.0.0.1',
29                            '<a href="http://127.0.0.1/" rel="external">http://127.0.0.1</a>'),
30                      array('127.0.0.1',
31                            '<a href="http://127.0.0.1/" rel="external">127.0.0.1</a>'),
32                      array('127.0.0.1:99',
33                            '<a href="http://127.0.0.1:99/" rel="external">127.0.0.1:99</a>'),
34                      array('127.0.0.1/Name:test.php',
35                            '<a href="http://127.0.0.1/Name:test.php" rel="external">127.0.0.1/Name:test.php</a>'),
36                      array('127.0.0.1/~test',
37                            '<a href="http://127.0.0.1/~test" rel="external">127.0.0.1/~test</a>'),
38                      array('127.0.0.1/test%20stuff',
39                            '<a href="http://127.0.0.1/test%20stuff" rel="external">127.0.0.1/test%20stuff</a>'),
40                      array('http://[::1]:99/test.php',
41                            '<a href="http://[::1]:99/test.php" rel="external">http://[::1]:99/test.php</a>'),
42                      array('http://::1/test.php',
43                            '<a href="http://::1/test.php" rel="external">http://::1/test.php</a>'),
44                      array('http://::1',
45                            '<a href="http://::1/" rel="external">http://::1</a>'),
46                      array('2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php',
47                            '<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>'),
48                      array('[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php',
49                            '<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>'),
50                      array('2001:4978:1b5:0:21d:e0ff:fe66:59ab',
51                            '<a href="http://2001:4978:1b5:0:21d:e0ff:fe66:59ab/" rel="external">2001:4978:1b5:0:21d:e0ff:fe66:59ab</a>'),
52                      array('http://127.0.0.1',
53                            '<a href="http://127.0.0.1/" rel="external">http://127.0.0.1</a>'),
54                      array('example.com',
55                            '<a href="http://example.com/" rel="external">example.com</a>'),
56                      array('example.com',
57                            '<a href="http://example.com/" rel="external">example.com</a>'),
58                      array('http://example.com',
59                            '<a href="http://example.com/" rel="external">http://example.com</a>'),
60                      array('http://example.com.',
61                            '<a href="http://example.com/" rel="external">http://example.com</a>.'),
62                      array('/var/lib/example.so',
63                            '/var/lib/example.so'),
64                      array('example',
65                            'example'),
66                      array('user@example.com',
67                            '<a href="mailto:user@example.com" rel="external">user@example.com</a>'),
68                      array('user_name+other@example.com',
69                            '<a href="mailto:user_name+other@example.com" rel="external">user_name+other@example.com</a>'),
70                      array('mailto:user@example.com',
71                            '<a href="mailto:user@example.com" rel="external">mailto:user@example.com</a>'),
72                      array('mailto:user@example.com?subject=test',
73                            '<a href="mailto:user@example.com?subject=test" rel="external">mailto:user@example.com?subject=test</a>'),
74                      array('#example',
75                            '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('example'))) . '" rel="tag">example</a></span>'),
76                      array('#example.com',
77                            '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('example.com'))) . '" rel="tag">example.com</a></span>'),
78                      array('#.net',
79                            '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('.net'))) . '" rel="tag">.net</a></span>'),
80                      array('http://example',
81                            '<a href="http://example/" rel="external">http://example</a>'),
82                      array('http://3xampl3',
83                            '<a href="http://3xampl3/" rel="external">http://3xampl3</a>'),
84                      array('http://example/',
85                            '<a href="http://example/" rel="external">http://example/</a>'),
86                      array('http://example/path',
87                            '<a href="http://example/path" rel="external">http://example/path</a>'),
88                      array('http://example.com',
89                            '<a href="http://example.com/" rel="external">http://example.com</a>'),
90                      array('https://example.com',
91                            '<a href="https://example.com/" rel="external">https://example.com</a>'),
92                      array('ftp://example.com',
93                            '<a href="ftp://example.com/" rel="external">ftp://example.com</a>'),
94                      array('ftps://example.com',
95                            '<a href="ftps://example.com/" rel="external">ftps://example.com</a>'),
96                      array('http://user@example.com',
97                            '<a href="http://user@example.com/" rel="external">http://user@example.com</a>'),
98                      array('http://user:pass@example.com',
99                            '<a href="http://user:pass@example.com/" rel="external">http://user:pass@example.com</a>'),
100                      array('http://example.com:8080',
101                            '<a href="http://example.com:8080/" rel="external">http://example.com:8080</a>'),
102                      array('http://example.com:8080/test.php',
103                            '<a href="http://example.com:8080/test.php" rel="external">http://example.com:8080/test.php</a>'),
104                      array('example.com:8080/test.php',
105                            '<a href="http://example.com:8080/test.php" rel="external">example.com:8080/test.php</a>'),
106                      array('http://www.example.com',
107                            '<a href="http://www.example.com/" rel="external">http://www.example.com</a>'),
108                      array('http://example.com/',
109                            '<a href="http://example.com/" rel="external">http://example.com/</a>'),
110                      array('http://example.com/path',
111                            '<a href="http://example.com/path" rel="external">http://example.com/path</a>'),
112                      array('http://example.com/path.html',
113                            '<a href="http://example.com/path.html" rel="external">http://example.com/path.html</a>'),
114                      array('http://example.com/path.html#fragment',
115                            '<a href="http://example.com/path.html#fragment" rel="external">http://example.com/path.html#fragment</a>'),
116                      array('http://example.com/path.php?foo=bar&bar=foo',
117                            '<a href="http://example.com/path.php?foo=bar&amp;bar=foo" rel="external">http://example.com/path.php?foo=bar&amp;bar=foo</a>'),
118                      array('http://example.com.',
119                            '<a href="http://example.com/" rel="external">http://example.com</a>.'),
120                      array('http://müllärör.de',
121                            '<a href="http://m&#xFC;ll&#xE4;r&#xF6;r.de/" rel="external">http://müllärör.de</a>'),
122                      array('http://ﺱﺲﺷ.com',
123                            '<a href="http://&#xFEB1;&#xFEB2;&#xFEB7;.com/" rel="external">http://ﺱﺲﺷ.com</a>'),
124                      array('http://сделаткартинки.com',
125                            '<a href="http://&#x441;&#x434;&#x435;&#x43B;&#x430;&#x442;&#x43A;&#x430;&#x440;&#x442;&#x438;&#x43D;&#x43A;&#x438;.com/" rel="external">http://сделаткартинки.com</a>'),
126                      array('http://tūdaliņ.lv',
127                            '<a href="http://t&#x16B;dali&#x146;.lv/" rel="external">http://tūdaliņ.lv</a>'),
128                      array('http://brændendekærlighed.com',
129                            '<a href="http://br&#xE6;ndendek&#xE6;rlighed.com/" rel="external">http://brændendekærlighed.com</a>'),
130                      array('http://あーるいん.com',
131                            '<a href="http://&#x3042;&#x30FC;&#x308B;&#x3044;&#x3093;.com/" rel="external">http://あーるいん.com</a>'),
132                      array('http://예비교사.com',
133                            '<a href="http://&#xC608;&#xBE44;&#xAD50;&#xC0AC;.com/" rel="external">http://예비교사.com</a>'),
134                      array('http://example.com.',
135                            '<a href="http://example.com/" rel="external">http://example.com</a>.'),
136                      array('http://example.com?',
137                            '<a href="http://example.com/" rel="external">http://example.com</a>?'),
138                      array('http://example.com!',
139                            '<a href="http://example.com/" rel="external">http://example.com</a>!'),
140                      array('http://example.com,',
141                            '<a href="http://example.com/" rel="external">http://example.com</a>,'),
142                      array('http://example.com;',
143                            '<a href="http://example.com/" rel="external">http://example.com</a>;'),
144                      array('http://example.com:',
145                            '<a href="http://example.com/" rel="external">http://example.com</a>:'),
146                      array('\'http://example.com\'',
147                            '\'<a href="http://example.com/" rel="external">http://example.com</a>\''),
148                      array('"http://example.com"',
149                            '&quot;<a href="http://example.com/" rel="external">http://example.com</a>&quot;'),
150                      array('http://example.com',
151                            '<a href="http://example.com/" rel="external">http://example.com</a>'),
152                      array('(http://example.com)',
153                            '(<a href="http://example.com/" rel="external">http://example.com</a>)'),
154                      array('[http://example.com]',
155                            '[<a href="http://example.com/" rel="external">http://example.com</a>]'),
156                      array('<http://example.com>',
157                            '&lt;<a href="http://example.com/" rel="external">http://example.com</a>&gt;'),
158                      array('http://example.com/path/(foo)/bar',
159                            '<a href="http://example.com/path/(foo)/bar" rel="external">http://example.com/path/(foo)/bar</a>'),
160                      array('http://example.com/path/[foo]/bar',
161                            '<a href="http://example.com/path/[foo]/bar" rel="external">http://example.com/path/[foo]/bar</a>'),
162                      array('http://example.com/path/foo/(bar)',
163                            '<a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>'),
164                      //Not a valid url - urls cannot contain unencoded square brackets
165                      array('http://example.com/path/foo/[bar]',
166                            '<a href="http://example.com/path/foo/[bar]" rel="external">http://example.com/path/foo/[bar]</a>'),
167                      array('Hey, check out my cool site http://example.com okay?',
168                            'Hey, check out my cool site <a href="http://example.com/" rel="external">http://example.com</a> okay?'),
169                      array('What about parens (e.g. http://example.com/path/foo/(bar))?',
170                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>)?'),
171                      array('What about parens (e.g. http://example.com/path/foo/(bar)?',
172                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>?'),
173                      array('What about parens (e.g. http://example.com/path/foo/(bar).)?',
174                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>.)?'),
175                      //Not a valid url - urls cannot contain unencoded commas
176                      array('What about parens (e.g. http://example.com/path/(foo,bar)?',
177                            'What about parens (e.g. <a href="http://example.com/path/(foo,bar)" rel="external">http://example.com/path/(foo,bar)</a>?'),
178                      array('Unbalanced too (e.g. http://example.com/path/((((foo)/bar)?',
179                            'Unbalanced too (e.g. <a href="http://example.com/path/((((foo)/bar)" rel="external">http://example.com/path/((((foo)/bar)</a>?'),
180                      array('Unbalanced too (e.g. http://example.com/path/(foo))))/bar)?',
181                            'Unbalanced too (e.g. <a href="http://example.com/path/(foo))))/bar" rel="external">http://example.com/path/(foo))))/bar</a>)?'),
182                      array('Unbalanced too (e.g. http://example.com/path/foo/((((bar)?',
183                            'Unbalanced too (e.g. <a href="http://example.com/path/foo/((((bar)" rel="external">http://example.com/path/foo/((((bar)</a>?'),
184                      array('Unbalanced too (e.g. http://example.com/path/foo/(bar))))?',
185                            'Unbalanced too (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">http://example.com/path/foo/(bar)</a>)))?'),
186                      array('example.com',
187                            '<a href="http://example.com/" rel="external">example.com</a>'),
188                      array('example.org',
189                            '<a href="http://example.org/" rel="external">example.org</a>'),
190                      array('example.co.uk',
191                            '<a href="http://example.co.uk/" rel="external">example.co.uk</a>'),
192                      array('www.example.co.uk',
193                            '<a href="http://www.example.co.uk/" rel="external">www.example.co.uk</a>'),
194                      array('farm1.images.example.co.uk',
195                            '<a href="http://farm1.images.example.co.uk/" rel="external">farm1.images.example.co.uk</a>'),
196                      array('example.museum',
197                            '<a href="http://example.museum/" rel="external">example.museum</a>'),
198                      array('example.travel',
199                            '<a href="http://example.travel/" rel="external">example.travel</a>'),
200                      array('example.com.',
201                            '<a href="http://example.com/" rel="external">example.com</a>.'),
202                      array('example.com?',
203                            '<a href="http://example.com/" rel="external">example.com</a>?'),
204                      array('example.com!',
205                            '<a href="http://example.com/" rel="external">example.com</a>!'),
206                      array('example.com,',
207                            '<a href="http://example.com/" rel="external">example.com</a>,'),
208                      array('example.com;',
209                            '<a href="http://example.com/" rel="external">example.com</a>;'),
210                      array('example.com:',
211                            '<a href="http://example.com/" rel="external">example.com</a>:'),
212                      array('\'example.com\'',
213                            '\'<a href="http://example.com/" rel="external">example.com</a>\''),
214                      array('"example.com"',
215                            '&quot;<a href="http://example.com/" rel="external">example.com</a>&quot;'),
216                      array('example.com',
217                            '<a href="http://example.com/" rel="external">example.com</a>'),
218                      array('(example.com)',
219                            '(<a href="http://example.com/" rel="external">example.com</a>)'),
220                      array('[example.com]',
221                            '[<a href="http://example.com/" rel="external">example.com</a>]'),
222                      array('<example.com>',
223                            '&lt;<a href="http://example.com/" rel="external">example.com</a>&gt;'),
224                      array('Hey, check out my cool site example.com okay?',
225                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a> okay?'),
226                      array('Hey, check out my cool site example.com.I made it.',
227                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a>.I made it.'),
228                      array('Hey, check out my cool site example.com.Funny thing...',
229                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a>.Funny thing...'),
230                      array('Hey, check out my cool site example.com.You will love it.',
231                            'Hey, check out my cool site <a href="http://example.com/" rel="external">example.com</a>.You will love it.'),
232                      array('What about parens (e.g. example.com/path/foo/(bar))?',
233                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">example.com/path/foo/(bar)</a>)?'),
234                      array('What about parens (e.g. example.com/path/foo/(bar)?',
235                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">example.com/path/foo/(bar)</a>?'),
236                      array('What about parens (e.g. example.com/path/foo/(bar).)?',
237                            'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" rel="external">example.com/path/foo/(bar)</a>.)?'),
238                      array('What about parens (e.g. example.com/path/(foo,bar)?',
239                            'What about parens (e.g. <a href="http://example.com/path/(foo,bar)" rel="external">example.com/path/(foo,bar)</a>?'),
240                      array('file.ext',
241                            'file.ext'),
242                      array('file.html',
243                            'file.html'),
244                      array('file.php',
245                            'file.php')
246                      );
247     }
248 }
249