3 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
4 print "This script must be run from the command line\n";
8 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
9 define('STATUSNET', true);
10 define('LACONICA', true);
12 require_once INSTALLDIR . '/lib/common.php';
14 class URLDetectionTest extends PHPUnit_Framework_TestCase
17 * @dataProvider provider
20 public function testProduction($content, $expected)
22 $rendered = common_render_text($content);
23 $this->assertEquals($expected, $rendered);
26 static public function provider()
29 array('not a link :: no way',
30 'not a link :: no way'),
31 array('link http://www.somesite.com/xyz/35637563@N00/52803365/ link',
32 'link <a href="http://www.somesite.com/xyz/35637563@N00/52803365/" title="http://www.somesite.com/xyz/35637563@N00/52803365/" rel="nofollow external">http://www.somesite.com/xyz/35637563@N00/52803365/</a> link'),
33 array('http://127.0.0.1',
34 '<a href="http://127.0.0.1/" title="http://127.0.0.1/" rel="nofollow external">http://127.0.0.1</a>'),
36 '<a href="http://127.0.0.1/" title="http://127.0.0.1/" rel="nofollow external">127.0.0.1</a>'),
38 '<a href="http://127.0.0.1:99/" title="http://127.0.0.1:99/" rel="nofollow external">127.0.0.1:99</a>'),
39 array('127.0.0.1/Name:test.php',
40 '<a href="http://127.0.0.1/Name:test.php" title="http://127.0.0.1/Name:test.php" rel="nofollow external">127.0.0.1/Name:test.php</a>'),
41 array('127.0.0.1/~test',
42 '<a href="http://127.0.0.1/~test" title="http://127.0.0.1/~test" rel="nofollow external">127.0.0.1/~test</a>'),
43 array('127.0.0.1/+test',
44 '<a href="http://127.0.0.1/+test" title="http://127.0.0.1/+test" rel="nofollow external">127.0.0.1/+test</a>'),
45 array('127.0.0.1/$test',
46 '<a href="http://127.0.0.1/$test" title="http://127.0.0.1/$test" rel="nofollow external">127.0.0.1/$test</a>'),
47 array('127.0.0.1/\'test',
48 '<a href="http://127.0.0.1/\'test" title="http://127.0.0.1/\'test" rel="nofollow external">127.0.0.1/\'test</a>'),
49 array('127.0.0.1/"test',
50 '<a href="http://127.0.0.1/" title="http://127.0.0.1/" rel="nofollow external">127.0.0.1/</a>"test'),
51 array('127.0.0.1/test"test',
52 '<a href="http://127.0.0.1/test" title="http://127.0.0.1/test" rel="nofollow external">127.0.0.1/test</a>"test'),
53 array('127.0.0.1/-test',
54 '<a href="http://127.0.0.1/-test" title="http://127.0.0.1/-test" rel="nofollow external">127.0.0.1/-test</a>'),
55 array('127.0.0.1/_test',
56 '<a href="http://127.0.0.1/_test" title="http://127.0.0.1/_test" rel="nofollow external">127.0.0.1/_test</a>'),
57 array('127.0.0.1/!test',
58 '<a href="http://127.0.0.1/!test" title="http://127.0.0.1/!test" rel="nofollow external">127.0.0.1/!test</a>'),
59 array('127.0.0.1/*test',
60 '<a href="http://127.0.0.1/*test" title="http://127.0.0.1/*test" rel="nofollow external">127.0.0.1/*test</a>'),
61 array('127.0.0.1/test%20stuff',
62 '<a href="http://127.0.0.1/test%20stuff" title="http://127.0.0.1/test%20stuff" rel="nofollow external">127.0.0.1/test%20stuff</a>'),
63 array('http://[::1]:99/test.php',
64 '<a href="http://[::1]:99/test.php" title="http://[::1]:99/test.php" rel="nofollow external">http://[::1]:99/test.php</a>'),
65 array('http://::1/test.php',
66 '<a href="http://::1/test.php" title="http://::1/test.php" rel="nofollow external">http://::1/test.php</a>'),
68 '<a href="http://::1/" title="http://::1/" rel="nofollow external">http://::1</a>'),
69 array('2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php',
70 '<a href="http://2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php" title="http://2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php" rel="nofollow external">2001:4978:1b5:0:21d:e0ff:fe66:59ab/test.php</a>'),
71 array('[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php',
72 '<a href="http://[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php" title="http://[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php" rel="nofollow external">[2001:4978:1b5:0:21d:e0ff:fe66:59ab]:99/test.php</a>'),
73 array('2001:4978:1b5:0:21d:e0ff:fe66:59ab',
74 '<a href="http://2001:4978:1b5:0:21d:e0ff:fe66:59ab/" title="http://2001:4978:1b5:0:21d:e0ff:fe66:59ab/" rel="nofollow external">2001:4978:1b5:0:21d:e0ff:fe66:59ab</a>'),
75 array('http://127.0.0.1',
76 '<a href="http://127.0.0.1/" title="http://127.0.0.1/" rel="nofollow external">http://127.0.0.1</a>'),
78 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>'),
80 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>'),
81 array('http://example.com',
82 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>'),
83 array('http://example.com.',
84 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>.'),
85 array('/var/lib/example.so',
86 '/var/lib/example.so'),
89 array('user@example.com',
90 '<a href="mailto:user@example.com" title="mailto:user@example.com" rel="nofollow external">user@example.com</a>'),
91 array('user_name+other@example.com',
92 '<a href="mailto:user_name+other@example.com" title="mailto:user_name+other@example.com" rel="nofollow external">user_name+other@example.com</a>'),
93 array('mailto:user@example.com',
94 '<a href="mailto:user@example.com" title="mailto:user@example.com" rel="nofollow external">mailto:user@example.com</a>'),
95 array('mailto:user@example.com?subject=test',
96 '<a href="mailto:user@example.com?subject=test" title="mailto:user@example.com?subject=test" rel="nofollow external">mailto:user@example.com?subject=test</a>'),
97 array('xmpp:user@example.com',
98 '<a href="xmpp:user@example.com" title="xmpp:user@example.com" rel="nofollow external">xmpp:user@example.com</a>'),
100 '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('example'))) . '" rel="tag">example</a></span>'),
101 array('#example.com',
102 '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('example.com'))) . '" rel="tag">example.com</a></span>'),
104 '#<span class="tag"><a href="' . common_local_url('tag', array('tag' => common_canonical_tag('.net'))) . '" rel="tag">.net</a></span>'),
105 array('http://example',
106 '<a href="http://example/" title="http://example/" rel="nofollow external">http://example</a>'),
107 array('http://3xampl3',
108 '<a href="http://3xampl3/" title="http://3xampl3/" rel="nofollow external">http://3xampl3</a>'),
109 array('http://example/',
110 '<a href="http://example/" title="http://example/" rel="nofollow external">http://example/</a>'),
111 array('http://example/path',
112 '<a href="http://example/path" title="http://example/path" rel="nofollow external">http://example/path</a>'),
113 array('http://example.com',
114 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>'),
115 array('https://example.com',
116 '<a href="https://example.com/" title="https://example.com/" rel="nofollow external">https://example.com</a>'),
117 array('ftp://example.com',
118 '<a href="ftp://example.com/" title="ftp://example.com/" rel="nofollow external">ftp://example.com</a>'),
119 array('ftps://example.com',
120 '<a href="ftps://example.com/" title="ftps://example.com/" rel="nofollow external">ftps://example.com</a>'),
121 array('http://user@example.com',
122 '<a href="http://user@example.com/" title="http://user@example.com/" rel="nofollow external">http://user@example.com</a>'),
123 array('http://user:pass@example.com',
124 '<a href="http://user:pass@example.com/" title="http://user:pass@example.com/" rel="nofollow external">http://user:pass@example.com</a>'),
125 array('http://example.com:8080',
126 '<a href="http://example.com:8080/" title="http://example.com:8080/" rel="nofollow external">http://example.com:8080</a>'),
127 array('http://example.com:8080/test.php',
128 '<a href="http://example.com:8080/test.php" title="http://example.com:8080/test.php" rel="nofollow external">http://example.com:8080/test.php</a>'),
129 array('example.com:8080/test.php',
130 '<a href="http://example.com:8080/test.php" title="http://example.com:8080/test.php" rel="nofollow external">example.com:8080/test.php</a>'),
131 array('http://www.example.com',
132 '<a href="http://www.example.com/" title="http://www.example.com/" rel="nofollow external">http://www.example.com</a>'),
133 array('http://example.com/',
134 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com/</a>'),
135 array('http://example.com/path',
136 '<a href="http://example.com/path" title="http://example.com/path" rel="nofollow external">http://example.com/path</a>'),
137 array('http://example.com/path.html',
138 '<a href="http://example.com/path.html" title="http://example.com/path.html" rel="nofollow external">http://example.com/path.html</a>'),
139 array('http://example.com/path.html#fragment',
140 '<a href="http://example.com/path.html#fragment" title="http://example.com/path.html#fragment" rel="nofollow external">http://example.com/path.html#fragment</a>'),
141 array('http://example.com/path.php?foo=bar&bar=foo',
142 '<a href="http://example.com/path.php?foo=bar&bar=foo" title="http://example.com/path.php?foo=bar&bar=foo" rel="nofollow external">http://example.com/path.php?foo=bar&bar=foo</a>'),
143 array('http://example.com.',
144 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>.'),
145 array('http://müllärör.de',
146 '<a href="http://müllärör.de/" title="http://müllärör.de/" rel="nofollow external">http://müllärör.de</a>'),
147 array('http://ﺱﺲﺷ.com',
148 '<a href="http://ﺱﺲﺷ.com/" title="http://ﺱﺲﺷ.com/" rel="nofollow external">http://ﺱﺲﺷ.com</a>'),
149 array('http://сделаткартинки.com',
150 '<a href="http://сделаткартинки.com/" title="http://сделаткартинки.com/" rel="nofollow external">http://сделаткартинки.com</a>'),
151 array('http://tūdaliņ.lv',
152 '<a href="http://tūdaliņ.lv/" title="http://tūdaliņ.lv/" rel="nofollow external">http://tūdaliņ.lv</a>'),
153 array('http://brændendekærlighed.com',
154 '<a href="http://brændendekærlighed.com/" title="http://brændendekærlighed.com/" rel="nofollow external">http://brændendekærlighed.com</a>'),
155 array('http://あーるいん.com',
156 '<a href="http://あーるいん.com/" title="http://あーるいん.com/" rel="nofollow external">http://あーるいん.com</a>'),
157 array('http://예비교사.com',
158 '<a href="http://예비교사.com/" title="http://예비교사.com/" rel="nofollow external">http://예비교사.com</a>'),
159 array('http://example.com.',
160 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>.'),
161 array('http://example.com?',
162 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>?'),
163 array('http://example.com!',
164 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>!'),
165 array('http://example.com,',
166 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>,'),
167 array('http://example.com;',
168 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>;'),
169 array('http://example.com:',
170 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>:'),
171 array('\'http://example.com\'',
172 '\'<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>\''),
173 array('"http://example.com"',
174 '"<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>"'),
175 array('"http://example.com/"',
176 '"<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com/</a>"'),
177 array('http://example.com',
178 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>'),
179 array('(http://example.com)',
180 '(<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>)'),
181 array('[http://example.com]',
182 '[<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>]'),
183 array('<http://example.com>',
184 '<<a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a>>'),
185 array('http://example.com/path/(foo)/bar',
186 '<a href="http://example.com/path/(foo)/bar" title="http://example.com/path/(foo)/bar" rel="nofollow external">http://example.com/path/(foo)/bar</a>'),
187 array('http://example.com/path/[foo]/bar',
188 '<a href="http://example.com/path/" title="http://example.com/path/" rel="nofollow external">http://example.com/path/</a>[foo]/bar'),
189 array('http://example.com/path/foo/(bar)',
190 '<a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">http://example.com/path/foo/(bar)</a>'),
191 //Not a valid url - urls cannot contain unencoded square brackets
192 array('http://example.com/path/foo/[bar]',
193 '<a href="http://example.com/path/foo/" title="http://example.com/path/foo/" rel="nofollow external">http://example.com/path/foo/</a>[bar]'),
194 array('Hey, check out my cool site http://example.com okay?',
195 'Hey, check out my cool site <a href="http://example.com/" title="http://example.com/" rel="nofollow external">http://example.com</a> okay?'),
196 array('What about parens (e.g. http://example.com/path/foo/(bar))?',
197 'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">http://example.com/path/foo/(bar)</a>)?'),
198 array('What about parens (e.g. http://example.com/path/foo/(bar)?',
199 'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">http://example.com/path/foo/(bar)</a>?'),
200 array('What about parens (e.g. http://example.com/path/foo/(bar).)?',
201 'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">http://example.com/path/foo/(bar)</a>.)?'),
202 //Not a valid url - urls cannot contain unencoded commas
203 array('What about parens (e.g. http://example.com/path/(foo,bar)?',
204 'What about parens (e.g. <a href="http://example.com/path/(foo,bar)" title="http://example.com/path/(foo,bar)" rel="nofollow external">http://example.com/path/(foo,bar)</a>?'),
205 array('Unbalanced too (e.g. http://example.com/path/((((foo)/bar)?',
206 'Unbalanced too (e.g. <a href="http://example.com/path/((((foo)/bar)" title="http://example.com/path/((((foo)/bar)" rel="nofollow external">http://example.com/path/((((foo)/bar)</a>?'),
207 array('Unbalanced too (e.g. http://example.com/path/(foo))))/bar)?',
208 'Unbalanced too (e.g. <a href="http://example.com/path/(foo))))/bar" title="http://example.com/path/(foo))))/bar" rel="nofollow external">http://example.com/path/(foo))))/bar</a>)?'),
209 array('Unbalanced too (e.g. http://example.com/path/foo/((((bar)?',
210 'Unbalanced too (e.g. <a href="http://example.com/path/foo/((((bar)" title="http://example.com/path/foo/((((bar)" rel="nofollow external">http://example.com/path/foo/((((bar)</a>?'),
211 array('Unbalanced too (e.g. http://example.com/path/foo/(bar))))?',
212 'Unbalanced too (e.g. <a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">http://example.com/path/foo/(bar)</a>)))?'),
214 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>'),
216 '<a href="http://example.org/" title="http://example.org/" rel="nofollow external">example.org</a>'),
217 array('example.co.uk',
218 '<a href="http://example.co.uk/" title="http://example.co.uk/" rel="nofollow external">example.co.uk</a>'),
219 array('www.example.co.uk',
220 '<a href="http://www.example.co.uk/" title="http://www.example.co.uk/" rel="nofollow external">www.example.co.uk</a>'),
221 array('farm1.images.example.co.uk',
222 '<a href="http://farm1.images.example.co.uk/" title="http://farm1.images.example.co.uk/" rel="nofollow external">farm1.images.example.co.uk</a>'),
223 array('example.museum',
224 '<a href="http://example.museum/" title="http://example.museum/" rel="nofollow external">example.museum</a>'),
225 array('example.travel',
226 '<a href="http://example.travel/" title="http://example.travel/" rel="nofollow external">example.travel</a>'),
227 array('example.com.',
228 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>.'),
229 array('example.com?',
230 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>?'),
231 array('example.com!',
232 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>!'),
233 array('example.com,',
234 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>,'),
235 array('example.com;',
236 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>;'),
237 array('example.com:',
238 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>:'),
239 array('\'example.com\'',
240 '\'<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>\''),
241 array('"example.com"',
242 '"<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>"'),
244 '<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>'),
245 array('(example.com)',
246 '(<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>)'),
247 array('[example.com]',
248 '[<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>]'),
249 array('<example.com>',
250 '<<a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>>'),
251 array('Hey, check out my cool site example.com okay?',
252 'Hey, check out my cool site <a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a> okay?'),
253 array('Hey, check out my cool site example.com.I made it.',
254 'Hey, check out my cool site <a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>.I made it.'),
255 array('Hey, check out my cool site example.com.Funny thing...',
256 'Hey, check out my cool site <a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>.Funny thing...'),
257 array('Hey, check out my cool site example.com.You will love it.',
258 'Hey, check out my cool site <a href="http://example.com/" title="http://example.com/" rel="nofollow external">example.com</a>.You will love it.'),
259 array('What about parens (e.g. example.com/path/foo/(bar))?',
260 'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">example.com/path/foo/(bar)</a>)?'),
261 array('What about parens (e.g. example.com/path/foo/(bar)?',
262 'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">example.com/path/foo/(bar)</a>?'),
263 array('What about parens (e.g. example.com/path/foo/(bar).)?',
264 'What about parens (e.g. <a href="http://example.com/path/foo/(bar)" title="http://example.com/path/foo/(bar)" rel="nofollow external">example.com/path/foo/(bar)</a>.)?'),
265 array('What about parens (e.g. example.com/path/(foo,bar)?',
266 'What about parens (e.g. <a href="http://example.com/path/(foo,bar)" title="http://example.com/path/(foo,bar)" rel="nofollow external">example.com/path/(foo,bar)</a>?'),