-
Notifications
You must be signed in to change notification settings - Fork 67
/
autolink_test.rb
445 lines (368 loc) · 18.9 KB
/
autolink_test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
require 'bundler/setup'
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'minitest/autorun'
require 'cgi'
require 'uri'
require 'rinku'
class RinkuAutoLinkTest < Minitest::Test
def generate_result(link_text, href = nil)
href ||= link_text
href = "http://" + href unless href =~ %r{\A(\w+://|mailto:)}
%{<a href="#{CGI.escapeHTML href}">#{CGI.escapeHTML link_text}</a>}
end
def assert_linked(expected, url)
assert_equal expected, Rinku.auto_link(url)
end
def test_segfault
Rinku.auto_link("[email protected][email protected]", :all)
end
def test_escapes_quotes
assert_linked %(<a href="http://website.com/"onmouseover=document.body.style.backgroundColor="pink";//">http://website.com/"onmouseover=document.body.style.backgroundColor="pink";//</a>),
%(http://website.com/"onmouseover=document.body.style.backgroundColor="pink";//)
end
def test_global_skip_tags
assert_nil Rinku.skip_tags
Rinku.skip_tags = ['pre']
assert_equal Rinku.skip_tags, ['pre']
Rinku.skip_tags = ['pa']
url = 'This is just a <pa>http://www.pokemon.com</pa> test'
assert_equal Rinku.auto_link(url), url
Rinku.skip_tags = nil
refute_equal Rinku.auto_link(url), url
end
def test_auto_link_with_single_trailing_punctuation_and_space
url = "http://www.youtube.com"
url_result = generate_result(url)
assert_equal url_result, Rinku.auto_link(url)
["?", "!", ".", ",", ":"].each do |punc|
assert_equal "link: #{url_result}#{punc} foo?", Rinku.auto_link("link: #{url}#{punc} foo?")
end
end
def test_terminates_on_ampersand
url = "http://example.com"
assert_linked "hello '<a href=\"#{url}\">#{url}</a>' hello", "hello '#{url}' hello"
end
def test_does_not_segfault
assert_linked "< this is just a test", "< this is just a test"
end
def test_skips_tags
html = <<-html
This is just a test. http://www.pokemon.com
<div>
More test
http://www.amd.com
</div>
<pre>
CODE www.less.es
</pre>
html
result = <<-result
This is just a test. <a href="http://www.pokemon.com">http://www.pokemon.com</a>
<div>
More test
http://www.amd.com
</div>
<pre>
CODE <a href="http://www.less.es">www.less.es</a>
</pre>
result
assert_equal result, Rinku.auto_link(html, :all, nil, ["div", "a"])
end
def test_auto_link_with_brackets
link1_raw = 'http://en.wikipedia.org/wiki/Sprite_(computer_graphics)'
link1_result = generate_result(link1_raw)
assert_equal link1_result, Rinku.auto_link(link1_raw)
assert_equal "(link: #{link1_result})", Rinku.auto_link("(link: #{link1_raw})")
link2_raw = 'http://en.wikipedia.org/wiki/Sprite_[computer_graphics]'
link2_result = generate_result(link2_raw)
assert_equal link2_result, Rinku.auto_link(link2_raw)
assert_equal "[link: #{link2_result}]", Rinku.auto_link("[link: #{link2_raw}]")
link3_raw = 'http://en.wikipedia.org/wiki/Sprite_{computer_graphics}'
link3_result = generate_result(link3_raw)
assert_equal link3_result, Rinku.auto_link(link3_raw)
assert_equal "{link: #{link3_result}}", Rinku.auto_link("{link: #{link3_raw}}")
end
def test_auto_link_with_multiple_trailing_punctuations
url = "http://youtube.com"
url_result = generate_result(url)
assert_equal url_result, Rinku.auto_link(url)
assert_equal "(link: #{url_result}).", Rinku.auto_link("(link: #{url}).")
end
def test_auto_link_with_block
url = "http://api.rubyonrails.com/Foo.html"
email = "[email protected]"
assert_equal %(<p><a href="#{url}">#{url[0...7]}...</a><br /><a href="mailto:#{email}">#{email[0...7]}...</a><br /></p>), Rinku.auto_link("<p>#{url}<br />#{email}<br /></p>") { |_url| _url[0...7] + '...'}
end
def test_auto_link_with_block_with_html
pic = "http://example.com/pic.png"
url = "http://example.com/album?a&b=c"
expect = %(My pic: <a href="#{pic}"><img src="#{pic}" width="160px"></a> -- full album here #{generate_result(url)})
text = "My pic: #{pic} -- full album here #{CGI.escapeHTML url}"
assert_equal expect, Rinku.auto_link(text) { |link|
if link =~ /\.(jpg|gif|png|bmp|tif)$/i
%(<img src="#{link}" width="160px">)
else
link
end
}
end
def test_auto_link_already_linked
linked1 = generate_result('Ruby On Rails', 'http://www.rubyonrails.com')
linked2 = %('<a href="http://www.example.com">www.example.com</a>')
linked3 = %('<a href="http://www.example.com" rel="nofollow">www.example.com</a>')
linked4 = %('<a href="http://www.example.com"><b>www.example.com</b></a>')
linked5 = %('<a href="#close">close</a> <a href="http://www.example.com"><b>www.example.com</b></a>')
assert_equal linked1, Rinku.auto_link(linked1)
assert_equal linked2, Rinku.auto_link(linked2)
assert_equal linked3, Rinku.auto_link(linked3)
assert_equal linked4, Rinku.auto_link(linked4)
assert_equal linked5, Rinku.auto_link(linked5)
linked_email = %Q(<a href="mailto:[email protected]">Mail me</a>)
assert_equal linked_email, Rinku.auto_link(linked_email)
end
def test_auto_link_at_eol
url1 = "http://api.rubyonrails.com/Foo.html"
url2 = "http://www.ruby-doc.org/core/Bar.html"
assert_equal %(<p><a href="#{url1}">#{url1}</a><br /><a href="#{url2}">#{url2}</a><br /></p>), Rinku.auto_link("<p>#{url1}<br />#{url2}<br /></p>")
end
def test_block
link = Rinku.auto_link("Find ur favorite pokeman @ http://www.pokemon.com") do |url|
assert_equal url, "http://www.pokemon.com"
"POKEMAN WEBSITE"
end
assert_equal link, "Find ur favorite pokeman @ <a href=\"http://www.pokemon.com\">POKEMAN WEBSITE</a>"
end
def test_autolink_works
url = "http://example.com/"
assert_linked "<a href=\"#{url}\">#{url}</a>", url
end
def test_autolink_options_for_short_domains
url = "http://google"
linked_url = "<a href=\"#{url}\">#{url}</a>"
flags = Rinku::AUTOLINK_SHORT_DOMAINS
# Specifying use short_domains in the args
url = "http://google"
linked_url = "<a href=\"#{url}\">#{url}</a>"
assert_equal Rinku.auto_link(url, nil, nil, nil, flags), linked_url
# Specifying no short_domains in the args
url = "http://google"
linked_url = "<a href=\"#{url}\">#{url}</a>"
assert_equal Rinku.auto_link(url, nil, nil, nil, 0), url
end
def test_not_autolink_www
assert_linked "Awww... man", "Awww... man"
end
def test_does_not_terminate_on_dash
url = "http://example.com/Notification_Center-GitHub-20101108-140050.jpg"
assert_linked "<a href=\"#{url}\">#{url}</a>", url
end
def test_does_not_include_trailing_gt
url = "http://example.com"
assert_linked "<<a href=\"#{url}\">#{url}</a>>", "<#{url}>"
end
def test_links_with_anchors
url = "https://github.com/github/hubot/blob/master/scripts/cream.js#L20-20"
assert_linked "<a href=\"#{url}\">#{url}</a>", url
end
def test_links_like_rails
urls = %w(http://www.rubyonrails.com
http://www.rubyonrails.com:80
http://www.rubyonrails.com/~minam
https://www.rubyonrails.com/~minam
http://www.rubyonrails.com/~minam/url%20with%20spaces
http://www.rubyonrails.com/foo.cgi?something=here
http://www.rubyonrails.com/foo.cgi?something=here&and=here
http://www.rubyonrails.com/contact;new
http://www.rubyonrails.com/contact;new%20with%20spaces
http://www.rubyonrails.com/contact;new?with=query&string=params
http://www.rubyonrails.com/~minam/contact;new?with=query&string=params
http://en.wikipedia.org/wiki/Wikipedia:Today%27s_featured_picture_%28animation%29/January_20%2C_2007
http://www.mail-archive.com/[email protected]/
http://www.amazon.com/Testing-Equal-Sign-In-Path/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1198861734&sr=8-1
http://en.wikipedia.org/wiki/Sprite_(computer_graphics)
http://en.wikipedia.org/wiki/Texas_hold%27em
https://www.google.com/doku.php?id=gps:resource:scs:start
)
urls.each do |url|
assert_linked %(<a href="#{CGI.escapeHTML url}">#{CGI.escapeHTML url}</a>), CGI.escapeHTML(url)
end
end
def test_links_like_autolink_rails
email_raw = '[email protected]'
email_result = %{<a href="mailto:#{email_raw}">#{email_raw}</a>}
email2_raw = '[email protected]'
email2_result = %{<a href="mailto:#{email2_raw}">#{email2_raw}</a>}
link_raw = 'http://www.rubyonrails.com'
link_result = %{<a href="#{link_raw}">#{link_raw}</a>}
link2_raw = 'www.rubyonrails.com'
link2_result = %{<a href="http://#{link2_raw}">#{link2_raw}</a>}
link3_raw = 'http://manuals.ruby-on-rails.com/read/chapter.need_a-period/103#page281'
link3_result = %{<a href="#{link3_raw}">#{link3_raw}</a>}
link4_raw = CGI.escapeHTML 'http://foo.example.com/controller/action?parm=value&p2=v2#anchor123'
link4_result = %{<a href="#{link4_raw}">#{link4_raw}</a>}
link5_raw = 'http://foo.example.com:3000/controller/action'
link5_result = %{<a href="#{link5_raw}">#{link5_raw}</a>}
link6_raw = 'http://foo.example.com:3000/controller/action+pack'
link6_result = %{<a href="#{link6_raw}">#{link6_raw}</a>}
link7_raw = CGI.escapeHTML 'http://foo.example.com/controller/action?parm=value&p2=v2#anchor-123'
link7_result = %{<a href="#{link7_raw}">#{link7_raw}</a>}
link8_raw = 'http://foo.example.com:3000/controller/action.html'
link8_result = %{<a href="#{link8_raw}">#{link8_raw}</a>}
link9_raw = 'http://business.timesonline.co.uk/article/0,,9065-2473189,00.html'
link9_result = %{<a href="#{link9_raw}">#{link9_raw}</a>}
link10_raw = 'http://www.mail-archive.com/[email protected]/'
link10_result = %{<a href="#{link10_raw}">#{link10_raw}</a>}
assert_linked %(Go to #{link_result} and say hello to #{email_result}), "Go to #{link_raw} and say hello to #{email_raw}"
assert_linked %(<p>Link #{link_result}</p>), "<p>Link #{link_raw}</p>"
assert_linked %(<p>#{link_result} Link</p>), "<p>#{link_raw} Link</p>"
assert_linked %(Go to #{link_result}.), %(Go to #{link_raw}.)
assert_linked %(<p>Go to #{link_result}, then say hello to #{email_result}.</p>), %(<p>Go to #{link_raw}, then say hello to #{email_raw}.</p>)
assert_linked %(<p>Link #{link2_result}</p>), "<p>Link #{link2_raw}</p>"
assert_linked %(<p>#{link2_result} Link</p>), "<p>#{link2_raw} Link</p>"
assert_linked %(Go to #{link2_result}.), %(Go to #{link2_raw}.)
assert_linked %(<p>Say hello to #{email_result}, then go to #{link2_result},</p>), %(<p>Say hello to #{email_raw}, then go to #{link2_raw},</p>)
assert_linked %(<p>Link #{link3_result}</p>), "<p>Link #{link3_raw}</p>"
assert_linked %(<p>#{link3_result} Link</p>), "<p>#{link3_raw} Link</p>"
assert_linked %(Go to #{link3_result}.), %(Go to #{link3_raw}.)
assert_linked %(<p>Go to #{link3_result}. seriously, #{link3_result}? i think I'll say hello to #{email_result}. instead.</p>), %(<p>Go to #{link3_raw}. seriously, #{link3_raw}? i think I'll say hello to #{email_raw}. instead.</p>)
assert_linked %(<p>Link #{link4_result}</p>), "<p>Link #{link4_raw}</p>"
assert_linked %(<p>#{link4_result} Link</p>), "<p>#{link4_raw} Link</p>"
assert_linked %(<p>#{link5_result} Link</p>), "<p>#{link5_raw} Link</p>"
assert_linked %(<p>#{link6_result} Link</p>), "<p>#{link6_raw} Link</p>"
assert_linked %(<p>#{link7_result} Link</p>), "<p>#{link7_raw} Link</p>"
assert_linked %(<p>Link #{link8_result}</p>), "<p>Link #{link8_raw}</p>"
assert_linked %(<p>#{link8_result} Link</p>), "<p>#{link8_raw} Link</p>"
assert_linked %(Go to #{link8_result}.), %(Go to #{link8_raw}.)
assert_linked %(<p>Go to #{link8_result}. seriously, #{link8_result}? i think I'll say hello to #{email_result}. instead.</p>), %(<p>Go to #{link8_raw}. seriously, #{link8_raw}? i think I'll say hello to #{email_raw}. instead.</p>)
assert_linked %(<p>Link #{link9_result}</p>), "<p>Link #{link9_raw}</p>"
assert_linked %(<p>#{link9_result} Link</p>), "<p>#{link9_raw} Link</p>"
assert_linked %(Go to #{link9_result}.), %(Go to #{link9_raw}.)
assert_linked %(<p>Go to #{link9_result}. seriously, #{link9_result}? i think I'll say hello to #{email_result}. instead.</p>), %(<p>Go to #{link9_raw}. seriously, #{link9_raw}? i think I'll say hello to #{email_raw}. instead.</p>)
assert_linked %(<p>#{link10_result} Link</p>), "<p>#{link10_raw} Link</p>"
assert_linked email2_result, email2_raw
assert_linked "#{link_result} #{link_result} #{link_result}", "#{link_raw} #{link_raw} #{link_raw}"
assert_linked '<a href="http://www.rubyonrails.com">Ruby On Rails</a>', '<a href="http://www.rubyonrails.com">Ruby On Rails</a>'
end
def test_copies_source_encoding
str = "http://www.bash.org"
ret = Rinku.auto_link str
assert_equal str.encoding, ret.encoding
str.encode! 'binary'
ret = Rinku.auto_link str
assert_equal str.encoding, ret.encoding
end
def test_valid_encodings_are_generated
str = "<a href='http://gi.co'>gi.co</a>\xC2\xA0r"
assert_equal Encoding::UTF_8, str.encoding
res = Rinku.auto_link(str)
assert_equal Encoding::UTF_8, res.encoding
assert res.valid_encoding?
end
def test_polish_wikipedia_haha
url = "https://pl.wikipedia.org/wiki/Komisja_śledcza_do_zbadania_sprawy_zarzutu_nielegalnego_wywierania_wpływu_na_funkcjonariuszy_policji,_służb_specjalnych,_prokuratorów_i_osoby_pełniące_funkcje_w_organach_wymiaru_sprawiedliwości"
input = "A wikipedia link (#{url})"
expected = "A wikipedia link (<a href=\"#{url}\">#{url}</a>)"
assert_linked expected, input
end
def test_only_valid_encodings_are_accepted
str = "this is invalid \xA0 utf8"
assert_equal Encoding::UTF_8, str.encoding
assert !str.valid_encoding?
assert_raises ArgumentError do
Rinku.auto_link(str)
end
end
NBSP = "\xC2\xA0".freeze
def test_the_famous_nbsp
input = "at http://google.com/#{NBSP};"
expected = "at <a href=\"http://google.com/\">http://google.com/</a>#{NBSP};"
assert_linked expected, input
end
def test_does_not_include_trailing_nonbreaking_spaces
url = "http://example.com/"
assert_linked "<a href=\"#{url}\">#{url}</a>#{NBSP}and", "#{url}#{NBSP}and"
end
def test_identifies_preceeding_nonbreaking_spaces
url = "http://example.com/"
assert_linked "#{NBSP}<a href=\"#{url}\">#{url}</a> and", "#{NBSP}#{url} and"
end
def test_urls_with_2_wide_UTF8_characters
url = "http://example.com/?foo=¥&bar=1"
assert_linked "<a href=\"#{url}\">#{url}</a> and", "#{url} and"
end
def test_urls_with_4_wide_UTF8_characters
url = "http://example.com/?foo=&bar=1"
assert_linked "<a href=\"#{url}\">#{url}</a> and", "#{url} and"
end
def test_handles_urls_with_emoji_properly
url = "http://foo.com/💖a"
assert_linked "<a href=\"#{url}\">#{url}</a> and", "#{url} and"
end
def test_identifies_nonbreaking_spaces_preceeding_emails
email_raw = '[email protected]'
assert_linked "email#{NBSP}<a href=\"mailto:#{email_raw}\">#{email_raw}</a>", "email#{NBSP}#{email_raw}"
end
def test_identifies_unicode_spaces
assert_linked(
%{This is just a test. <a href="http://www.pokemon.com">http://www.pokemon.com</a>\u202F\u2028\u2001},
"This is just a test. http://www.pokemon.com\u202F\u2028\u2001"
)
end
def test_www_is_case_insensitive
url = "www.reddit.com"
assert_linked generate_result(url), url
url = "WWW.REDDIT.COM"
assert_linked generate_result(url), url
url = "Www.reddit.Com"
assert_linked generate_result(url), url
url = "WwW.reddit.CoM"
assert_linked generate_result(url), url
end
def test_non_emails_ending_in_periods
assert_linked "abc/def@ghi.", "abc/def@ghi."
assert_linked "abc/def@ghi. ", "abc/def@ghi. "
assert_linked "abc/def@ghi. x", "abc/def@ghi. x"
assert_linked "abc/def@ghi.< x", "abc/def@ghi.< x"
assert_linked "abc/<a href=\"mailto:[email protected]\">[email protected]</a>", "abc/[email protected]"
assert_linked "abc/<a href=\"mailto:[email protected]\">[email protected]</a>. a", "abc/[email protected]. a"
end
def test_urls_with_entities_and_parens
assert_linked "<<a href=\"http://www.google.com\">http://www.google.com</a>>", "<http://www.google.com>"
assert_linked "<<a href=\"http://www.google.com\">http://www.google.com</a>>)", "<http://www.google.com>)"
# this produces invalid output, but limits how much work we will do
assert_linked "<<a href=\"http://www.google.com>\">http://www.google.com></a>)<)<)<)<)<)<)", "<http://www.google.com>)<)<)<)<)<)<)"
url = "http://pokemon.com/bulbasaur"
assert_linked "URL is #{generate_result(url)}.", "URL is #{url}."
assert_linked "(URL is #{generate_result(url)}.)", "(URL is #{url}.)"
url = "www.pokemon.com/bulbasaur"
assert_linked "URL is #{generate_result(url)}.", "URL is #{url}."
assert_linked "(URL is #{generate_result(url)}.)", "(URL is #{url}.)"
url = "[email protected]"
assert_linked "URL is #{generate_result(url, "mailto:#{url}")}.", "URL is #{url}."
assert_linked "(URL is #{generate_result(url, "mailto:#{url}")}.)", "(URL is #{url}.)"
end
def test_urls_with_parens
assert_linked "(<a href=\"http://example.com\">http://example.com</a>)", "(http://example.com)"
assert_linked "((<a href=\"http://example.com/()\">http://example.com/()</a>))", "((http://example.com/()))"
assert_linked "[<a href=\"http://example.com/()\">http://example.com/()</a>]", "[http://example.com/()]"
assert_linked "(<a href=\"http://example.com/\">http://example.com/</a>)", "(http://example.com/)"
assert_linked "【<a href=\"http://example.com/\">http://example.com/</a>】", "【http://example.com/】"
assert_linked "『<a href=\"http://example.com/\">http://example.com/</a>』", "『http://example.com/』"
assert_linked "「<a href=\"http://example.com/\">http://example.com/</a>」", "「http://example.com/」"
assert_linked "《<a href=\"http://example.com/\">http://example.com/</a>》", "《http://example.com/》"
assert_linked "〈<a href=\"http://example.com/\">http://example.com/</a>〉", "〈http://example.com/〉"
end
def test_urls_with_quotes
assert_linked "'<a href=\"http://example.com\">http://example.com</a>'", "'http://example.com'"
assert_linked "\"<a href=\"http://example.com\">http://example.com</a>\"\"", "\"http://example.com\"\""
end
def test_underscore_in_domain
assert_linked "http://foo_bar.com", "http://foo_bar.com"
end
def test_underscore_in_subdomain
assert_linked "<a href=\"http://foo_bar.xyz.com\">http://foo_bar.xyz.com</a>", "http://foo_bar.xyz.com"
end
def test_regression_84
assert_linked "<a href=\"https://www.keepright.atの情報をもとにエラー修正\">https://www.keepright.atの情報をもとにエラー修正</a>", "https://www.keepright.atの情報をもとにエラー修正"
end
end