]> git.openstreetmap.org Git - rails.git/blob - test/helpers/browse_tags_helper_test.rb
Merge remote-tracking branch 'upstream/pull/3868'
[rails.git] / test / helpers / browse_tags_helper_test.rb
1 require "test_helper"
2
3 class BrowseTagsHelperTest < ActionView::TestCase
4   include ERB::Util
5   include ApplicationHelper
6
7   def test_format_key
8     html = format_key("highway")
9     assert_dom_equal "<a href=\"https://wiki.openstreetmap.org/wiki/Key:highway?uselang=en\" title=\"The wiki description page for the highway tag\">highway</a>", html
10
11     html = format_key("unknown")
12     assert_dom_equal "unknown", html
13   end
14
15   def test_format_value
16     html = format_value("highway", "primary")
17     assert_dom_equal "<a href=\"https://wiki.openstreetmap.org/wiki/Tag:highway=primary?uselang=en\" title=\"The wiki description page for the highway=primary tag\">primary</a>", html
18
19     html = format_value("highway", "unknown")
20     assert_dom_equal "unknown", html
21
22     html = format_value("unknown", "unknown")
23     assert_dom_equal "unknown", html
24
25     html = format_value("phone", "+1234567890")
26     assert_dom_equal "<a href=\"tel:+1234567890\" title=\"Call +1234567890\">+1234567890</a>", html
27
28     html = format_value("phone", "+1 (234) 567-890 ;  +22334455")
29     assert_dom_equal "<a href=\"tel:+1(234)567-890\" title=\"Call +1 (234) 567-890\">+1 (234) 567-890</a>; <a href=\"tel:+22334455\" title=\"Call +22334455\">+22334455</a>", html
30
31     html = format_value("wikipedia", "Test")
32     assert_dom_equal "<a title=\"The Test article on Wikipedia\" href=\"https://en.wikipedia.org/wiki/Test?uselang=en\">Test</a>", html
33
34     html = format_value("wikidata", "Q42")
35     assert_dom_equal "<a title=\"The Q42 item on Wikidata\" href=\"//www.wikidata.org/entity/Q42?uselang=en\">Q42</a>", html
36
37     html = format_value("operator:wikidata", "Q12;Q98")
38     assert_dom_equal "<a title=\"The Q12 item on Wikidata\" href=\"//www.wikidata.org/entity/Q12?uselang=en\">Q12</a>;" \
39                      "<a title=\"The Q98 item on Wikidata\" href=\"//www.wikidata.org/entity/Q98?uselang=en\">Q98</a>", html
40
41     html = format_value("name:etymology:wikidata", "Q123")
42     assert_dom_equal "<a title=\"The Q123 item on Wikidata\" href=\"//www.wikidata.org/entity/Q123?uselang=en\">Q123</a>", html
43
44     html = format_value("wikimedia_commons", "File:Test.jpg")
45     assert_dom_equal "<a title=\"The File:Test.jpg item on Wikimedia Commons\" href=\"//commons.wikimedia.org/wiki/File:Test.jpg?uselang=en\">File:Test.jpg</a>", html
46
47     html = format_value("colour", "#f00")
48     assert_dom_equal %(<span class="colour-preview-box" data-colour="#f00" title="Colour #f00 preview"></span>#f00), html
49
50     html = format_value("contact", "foo@example.com")
51     assert_dom_equal "<a title=\"Email foo@example.com\" href=\"mailto:foo@example.com\">foo@example.com</a>", html
52
53     html = format_value("source", "https://example.com")
54     assert_dom_equal "<a href=\"https://example.com\" rel=\"nofollow\">https://example.com</a>", html
55
56     html = format_value("source", "https://example.com;hello;https://example.net")
57     assert_dom_equal "<a href=\"https://example.com\" rel=\"nofollow\">https://example.com</a>;hello;<a href=\"https://example.net\" rel=\"nofollow\">https://example.net</a>", html
58   end
59
60   def test_wiki_link
61     link = wiki_link("key", "highway")
62     assert_equal "https://wiki.openstreetmap.org/wiki/Key:highway?uselang=en", link
63
64     link = wiki_link("tag", "highway=primary")
65     assert_equal "https://wiki.openstreetmap.org/wiki/Tag:highway=primary?uselang=en", link
66
67     I18n.with_locale "de" do
68       link = wiki_link("key", "highway")
69       assert_equal "https://wiki.openstreetmap.org/wiki/DE:Key:highway?uselang=de", link
70
71       link = wiki_link("tag", "highway=primary")
72       assert_equal "https://wiki.openstreetmap.org/wiki/DE:Tag:highway=primary?uselang=de", link
73     end
74
75     I18n.with_locale "tr" do
76       link = wiki_link("key", "highway")
77       assert_equal "https://wiki.openstreetmap.org/wiki/Tr:Key:highway?uselang=tr", link
78
79       link = wiki_link("tag", "highway=primary")
80       assert_equal "https://wiki.openstreetmap.org/wiki/Tag:highway=primary?uselang=tr", link
81     end
82   end
83
84   def test_wikidata_links
85     ### Non-prefixed wikidata-tag (only one value allowed)
86
87     # Non-wikidata tag
88     links = wikidata_links("foo", "Test")
89     assert_nil links
90
91     # No URLs allowed
92     links = wikidata_links("wikidata", "http://www.wikidata.org/entity/Q1")
93     assert_nil links
94
95     # No language-prefixes (as wikidata is multilanguage)
96     links = wikidata_links("wikidata", "en:Q1")
97     assert_nil links
98
99     # Needs a leading Q
100     links = wikidata_links("wikidata", "1")
101     assert_nil links
102
103     # No leading zeros allowed
104     links = wikidata_links("wikidata", "Q0123")
105     assert_nil links
106
107     # A valid value
108     links = wikidata_links("wikidata", "Q42")
109     assert_equal 1, links.length
110     assert_equal "//www.wikidata.org/entity/Q42?uselang=en", links[0][:url]
111     assert_equal "Q42", links[0][:title]
112
113     # the language of the wikidata-page should match the current locale
114     I18n.with_locale "zh-CN" do
115       links = wikidata_links("wikidata", "Q1234")
116       assert_equal 1, links.length
117       assert_equal "//www.wikidata.org/entity/Q1234?uselang=zh-CN", links[0][:url]
118       assert_equal "Q1234", links[0][:title]
119     end
120
121     ### Prefixed wikidata-tags
122
123     # Not anything is accepted as prefix (only limited set)
124     links = wikidata_links("anything:wikidata", "Q13")
125     assert_nil links
126
127     # This for example is an allowed key
128     links = wikidata_links("operator:wikidata", "Q24")
129     assert_equal "//www.wikidata.org/entity/Q24?uselang=en", links[0][:url]
130     assert_equal "Q24", links[0][:title]
131
132     # Another allowed key, this time with multiple values and I18n
133     I18n.with_locale "dsb" do
134       links = wikidata_links("brand:wikidata", "Q936;Q2013;Q1568346")
135       assert_equal 3, links.length
136       assert_equal "//www.wikidata.org/entity/Q936?uselang=dsb", links[0][:url]
137       assert_equal "Q936", links[0][:title]
138       assert_equal "//www.wikidata.org/entity/Q2013?uselang=dsb", links[1][:url]
139       assert_equal "Q2013", links[1][:title]
140       assert_equal "//www.wikidata.org/entity/Q1568346?uselang=dsb", links[2][:url]
141       assert_equal "Q1568346", links[2][:title]
142     end
143
144     # and now with whitespaces...
145     links = wikidata_links("subject:wikidata", "Q6542248 ;\tQ180\n ;\rQ364\t\n\r ;\nQ4006")
146     assert_equal 4, links.length
147     assert_equal "//www.wikidata.org/entity/Q6542248?uselang=en", links[0][:url]
148     assert_equal "Q6542248 ", links[0][:title]
149     assert_equal "//www.wikidata.org/entity/Q180?uselang=en", links[1][:url]
150     assert_equal "\tQ180\n ", links[1][:title]
151     assert_equal "//www.wikidata.org/entity/Q364?uselang=en", links[2][:url]
152     assert_equal "\rQ364\t\n\r ", links[2][:title]
153     assert_equal "//www.wikidata.org/entity/Q4006?uselang=en", links[3][:url]
154     assert_equal "\nQ4006", links[3][:title]
155   end
156
157   def test_wikipedia_link
158     link = wikipedia_link("wikipedia", "http://en.wikipedia.org/wiki/Full%20URL")
159     assert_nil link
160
161     link = wikipedia_link("wikipedia", "https://en.wikipedia.org/wiki/Full%20URL")
162     assert_nil link
163
164     link = wikipedia_link("wikipedia", "Test")
165     assert_equal "https://en.wikipedia.org/wiki/Test?uselang=en", link[:url]
166     assert_equal "Test", link[:title]
167
168     link = wikipedia_link("wikipedia", "de:Test")
169     assert_equal "https://de.wikipedia.org/wiki/de:Test?uselang=en", link[:url]
170     assert_equal "de:Test", link[:title]
171
172     link = wikipedia_link("wikipedia:fr", "de:Test")
173     assert_equal "https://fr.wikipedia.org/wiki/de:Test?uselang=en", link[:url]
174     assert_equal "de:Test", link[:title]
175
176     link = wikipedia_link("wikipedia", "de:Englischer Garten (München)#Japanisches Teehaus")
177     assert_equal "https://de.wikipedia.org/wiki/de:Englischer Garten (München)?uselang=en#Japanisches_Teehaus", link[:url]
178     assert_equal "de:Englischer Garten (München)#Japanisches Teehaus", link[:title]
179
180     link = wikipedia_link("wikipedia", "de:Alte Brücke (Heidelberg)#Brückenaffe")
181     assert_equal "https://de.wikipedia.org/wiki/de:Alte Brücke (Heidelberg)?uselang=en#Br%C3%BCckenaffe", link[:url]
182     assert_equal "de:Alte Brücke (Heidelberg)#Brückenaffe", link[:title]
183
184     link = wikipedia_link("wikipedia", "de:Liste der Baudenkmäler in Eichstätt#Brückenstraße 1, Ehemaliges Bauernhaus")
185     assert_equal "https://de.wikipedia.org/wiki/de:Liste der Baudenkmäler in Eichstätt?uselang=en#Br%C3%BCckenstra%C3%9Fe_1%2C_Ehemaliges_Bauernhaus", link[:url]
186     assert_equal "de:Liste der Baudenkmäler in Eichstätt#Brückenstraße 1, Ehemaliges Bauernhaus", link[:title]
187
188     I18n.with_locale "pt-BR" do
189       link = wikipedia_link("wikipedia", "zh-classical:Test#Section")
190       assert_equal "https://zh-classical.wikipedia.org/wiki/zh-classical:Test?uselang=pt-BR#Section", link[:url]
191       assert_equal "zh-classical:Test#Section", link[:title]
192     end
193
194     link = wikipedia_link("foo", "Test")
195     assert_nil link
196   end
197
198   def test_wikimedia_commons_link
199     link = wikimedia_commons_link("wikimedia_commons", "http://commons.wikimedia.org/wiki/File:Full%20URL.jpg")
200     assert_nil link
201
202     link = wikimedia_commons_link("wikimedia_commons", "https://commons.wikimedia.org/wiki/File:Full%20URL.jpg")
203     assert_nil link
204
205     link = wikimedia_commons_link("wikimedia_commons", "Test.jpg")
206     assert_nil link
207
208     link = wikimedia_commons_link("wikimedia_commons", "File:Test.jpg")
209     assert_equal "//commons.wikimedia.org/wiki/File:Test.jpg?uselang=en", link[:url]
210     assert_equal "File:Test.jpg", link[:title]
211
212     link = wikimedia_commons_link("wikimedia_commons", "Category:Test_Category")
213     assert_equal "//commons.wikimedia.org/wiki/Category:Test_Category?uselang=en", link[:url]
214     assert_equal "Category:Test_Category", link[:title]
215
216     I18n.with_locale "pt-BR" do
217       link = wikimedia_commons_link("wikimedia_commons", "File:Test.jpg")
218       assert_equal "//commons.wikimedia.org/wiki/File:Test.jpg?uselang=pt-BR", link[:url]
219       assert_equal "File:Test.jpg", link[:title]
220     end
221
222     link = wikimedia_commons_link("foo", "Test")
223     assert_nil link
224   end
225
226   def test_email_link
227     email = email_link("foo", "Test")
228     assert_nil email
229
230     email = email_link("email", "123")
231     assert_nil email
232
233     email = email_link("email", "Abc.example.com")
234     assert_nil email
235
236     email = email_link("email", "a@b@c.com")
237     assert_nil email
238
239     email = email_link("email", "just\"not\"right@example.com")
240     assert_nil email
241
242     email = email_link("email", "123 abcdefg@space.com")
243     assert_nil email
244
245     email = email_link("email", "test@ abc")
246     assert_nil email
247
248     email = email_link("email", "using;semicolon@test.com")
249     assert_nil email
250
251     email = email_link("email", "x@example.com")
252     assert_equal "x@example.com", email
253
254     email = email_link("email", "other.email-with-hyphen@example.com")
255     assert_equal "other.email-with-hyphen@example.com", email
256
257     email = email_link("email", "user.name+tag+sorting@example.com")
258     assert_equal "user.name+tag+sorting@example.com", email
259
260     email = email_link("email", "dash-in@both-parts.com")
261     assert_equal "dash-in@both-parts.com", email
262
263     email = email_link("email", "example@s.example")
264     assert_equal "example@s.example", email
265
266     # Strips whitespace at ends
267     email = email_link("email", " test@email.com ")
268     assert_equal "test@email.com", email
269   end
270
271   def test_telephone_links
272     links = telephone_links("foo", "Test")
273     assert_nil links
274
275     links = telephone_links("phone", "+123")
276     assert_nil links
277
278     links = telephone_links("phone", "123")
279     assert_nil links
280
281     links = telephone_links("phone", "123 abcdefg")
282     assert_nil links
283
284     links = telephone_links("phone", "+1234567890 abc")
285     assert_nil links
286
287     # If multiple numbers are listed, all must be valid
288     links = telephone_links("phone", "+1234567890; +223")
289     assert_nil links
290
291     links = telephone_links("phone", "1234567890")
292     assert_nil links
293
294     links = telephone_links("phone", "+1234567890")
295     assert_equal 1, links.length
296     assert_equal "+1234567890", links[0][:phone_number]
297     assert_equal "tel:+1234567890", links[0][:url]
298
299     links = telephone_links("phone", "+1234-567-890")
300     assert_equal 1, links.length
301     assert_equal "+1234-567-890", links[0][:phone_number]
302     assert_equal "tel:+1234-567-890", links[0][:url]
303
304     links = telephone_links("phone", "+1234/567/890")
305     assert_equal 1, links.length
306     assert_equal "+1234/567/890", links[0][:phone_number]
307     assert_equal "tel:+1234/567/890", links[0][:url]
308
309     links = telephone_links("phone", "+1234.567.890")
310     assert_equal 1, links.length
311     assert_equal "+1234.567.890", links[0][:phone_number]
312     assert_equal "tel:+1234.567.890", links[0][:url]
313
314     links = telephone_links("phone", "   +1234 567-890  ")
315     assert_equal 1, links.length
316     assert_equal "+1234 567-890", links[0][:phone_number]
317     assert_equal "tel:+1234567-890", links[0][:url]
318
319     links = telephone_links("phone", "+1 234-567-890")
320     assert_equal 1, links.length
321     assert_equal "+1 234-567-890", links[0][:phone_number]
322     assert_equal "tel:+1234-567-890", links[0][:url]
323
324     links = telephone_links("phone", "+1 (234) 567-890")
325     assert_equal 1, links.length
326     assert_equal "+1 (234) 567-890", links[0][:phone_number]
327     assert_equal "tel:+1(234)567-890", links[0][:url]
328
329     # Multiple valid phone numbers separated by ;
330     links = telephone_links("phone", "+1234567890; +22334455667788")
331     assert_equal 2, links.length
332     assert_equal "+1234567890", links[0][:phone_number]
333     assert_equal "tel:+1234567890", links[0][:url]
334     assert_equal "+22334455667788", links[1][:phone_number]
335     assert_equal "tel:+22334455667788", links[1][:url]
336
337     links = telephone_links("phone", "+1 (234) 567-890 ;  +22(33)4455.66.7788 ")
338     assert_equal 2, links.length
339     assert_equal "+1 (234) 567-890", links[0][:phone_number]
340     assert_equal "tel:+1(234)567-890", links[0][:url]
341     assert_equal "+22(33)4455.66.7788", links[1][:phone_number]
342     assert_equal "tel:+22(33)4455.66.7788", links[1][:url]
343   end
344
345   def test_colour_preview
346     # basic positive tests
347     colour = colour_preview("colour", "red")
348     assert_equal "red", colour
349
350     colour = colour_preview("colour", "Red")
351     assert_equal "Red", colour
352
353     colour = colour_preview("colour", "darkRed")
354     assert_equal "darkRed", colour
355
356     colour = colour_preview("colour", "#f00")
357     assert_equal "#f00", colour
358
359     colour = colour_preview("colour", "#fF0000")
360     assert_equal "#fF0000", colour
361
362     # other tag variants:
363     colour = colour_preview("building:colour", "#f00")
364     assert_equal "#f00", colour
365
366     colour = colour_preview("ref:colour", "#f00")
367     assert_equal "#f00", colour
368
369     colour = colour_preview("int_ref:colour", "green")
370     assert_equal "green", colour
371
372     colour = colour_preview("roof:colour", "#f00")
373     assert_equal "#f00", colour
374
375     colour = colour_preview("seamark:beacon_lateral:colour", "#f00")
376     assert_equal "#f00", colour
377
378     # negative tests:
379     colour = colour_preview("colour", "")
380     assert_nil colour
381
382     colour = colour_preview("colour", "   ")
383     assert_nil colour
384
385     colour = colour_preview("colour", nil)
386     assert_nil colour
387
388     # ignore US spelling variant
389     colour = colour_preview("color", "red")
390     assert_nil colour
391
392     # irrelevant tag names
393     colour = colour_preview("building", "red")
394     assert_nil colour
395
396     colour = colour_preview("ref:colour_no", "red")
397     assert_nil colour
398
399     colour = colour_preview("ref:colour-bg", "red")
400     assert_nil colour
401
402     colour = colour_preview("int_ref", "red")
403     assert_nil colour
404
405     # invalid hex codes
406     colour = colour_preview("colour", "#")
407     assert_nil colour
408
409     colour = colour_preview("colour", "#ff")
410     assert_nil colour
411
412     colour = colour_preview("colour", "#ffff")
413     assert_nil colour
414
415     colour = colour_preview("colour", "#fffffff")
416     assert_nil colour
417
418     colour = colour_preview("colour", "#ggg")
419     assert_nil colour
420
421     colour = colour_preview("colour", "#ff 00 00")
422     assert_nil colour
423
424     # invalid w3c color names:
425     colour = colour_preview("colour", "r")
426     assert_nil colour
427
428     colour = colour_preview("colour", "ffffff")
429     assert_nil colour
430
431     colour = colour_preview("colour", "f00")
432     assert_nil colour
433
434     colour = colour_preview("colour", "xxxred")
435     assert_nil colour
436
437     colour = colour_preview("colour", "dark red")
438     assert_nil colour
439
440     colour = colour_preview("colour", "dark_red")
441     assert_nil colour
442
443     colour = colour_preview("colour", "ADarkDummyLongColourNameWithAPurpleUndertone")
444     assert_nil colour
445   end
446 end