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