]> git.openstreetmap.org Git - rails.git/blob - test/functional/geocoder_controller_test.rb
Test XHR rendering of pages which can load in the sidebar
[rails.git] / test / functional / geocoder_controller_test.rb
1 # coding: utf-8
2
3 require File.dirname(__FILE__) + '/../test_helper'
4 require 'geocoder_controller'
5
6 class GeocoderControllerTest < ActionController::TestCase
7   ##
8   # test all routes which lead to this controller
9   def test_routes
10     assert_routing(
11       { :path => "/search", :method => :get },
12       { :controller => "geocoder", :action => "search" }
13     )
14     assert_routing(
15      { :path => "/geocoder/search_latlon", :method => :get },
16      { :controller => "geocoder", :action => "search_latlon" }
17     )
18     assert_routing(
19       { :path => "/geocoder/search_us_postcode", :method => :get },
20       { :controller => "geocoder", :action => "search_us_postcode" }
21     )
22     assert_routing(
23       { :path => "/geocoder/search_uk_postcode", :method => :get },
24       { :controller => "geocoder", :action => "search_uk_postcode" }
25     )
26     assert_routing(
27       { :path => "/geocoder/search_ca_postcode", :method => :get },
28       { :controller => "geocoder", :action => "search_ca_postcode" }
29     )
30     assert_routing(
31       { :path => "/geocoder/search_osm_nominatim", :method => :get },
32       { :controller => "geocoder", :action => "search_osm_nominatim" }
33     )
34     assert_routing(
35       { :path => "/geocoder/search_geonames", :method => :get },
36       { :controller => "geocoder", :action => "search_geonames" }
37     )
38     assert_routing(
39       { :path => "/geocoder/search_osm_nominatim_reverse", :method => :get },
40       { :controller => "geocoder", :action => "search_osm_nominatim_reverse" }
41     )
42     assert_routing(
43       { :path => "/geocoder/search_geonames_reverse", :method => :get },
44       { :controller => "geocoder", :action => "search_geonames_reverse" }
45     )
46   end
47
48   ##
49   # Test identification of basic lat/lon pairs
50   def test_identify_latlon_basic
51     [
52      '50.06773 14.37742',
53      '50.06773, 14.37742',
54      '+50.06773 +14.37742',
55      '+50.06773, +14.37742'
56     ].each do |code|
57       latlon_check code, 50.06773, 14.37742
58     end
59   end
60
61   ##
62   # Test identification of lat/lon pairs using N/E with degrees
63   def test_identify_latlon_ne_d
64     [
65      'N50.06773 E14.37742',
66      'N50.06773, E14.37742',
67      '50.06773N 14.37742E',
68      '50.06773N, 14.37742E'
69     ].each do |code|
70       latlon_check code, 50.06773, 14.37742
71     end
72   end
73
74   ##
75   # Test identification of lat/lon pairs using N/W with degrees
76   def test_identify_latlon_nw_d
77     [
78      'N50.06773 W14.37742',
79      'N50.06773, W14.37742',
80      '50.06773N 14.37742W',
81      '50.06773N, 14.37742W'
82     ].each do |code|
83       latlon_check code, 50.06773, -14.37742
84     end
85   end
86
87   ##
88   # Test identification of lat/lon pairs using S/E with degrees
89   def test_identify_latlon_se_d
90     [
91      'S50.06773 E14.37742',
92      'S50.06773, E14.37742',
93      '50.06773S 14.37742E',
94      '50.06773S, 14.37742E'
95     ].each do |code|
96       latlon_check code, -50.06773, 14.37742
97     end
98   end
99
100   ##
101   # Test identification of lat/lon pairs using S/W with degrees
102   def test_identify_latlon_sw_d
103     [
104      'S50.06773 W14.37742',
105      'S50.06773, W14.37742',
106      '50.06773S 14.37742W',
107      '50.06773S, 14.37742W'
108     ].each do |code|
109       latlon_check code, -50.06773, -14.37742
110     end
111   end
112
113   ##
114   # Test identification of lat/lon pairs using N/E with degrees/mins
115   def test_identify_latlon_ne_dm
116     [
117      'N 50° 04.064 E 014° 22.645',
118      "N 50° 04.064' E 014° 22.645",
119      "N 50° 04.064', E 014° 22.645'",
120      'N50° 04.064 E14° 22.645',
121      'N 50 04.064 E 014 22.645',
122      'N50 4.064 E14 22.645',
123      "50° 04.064' N, 014° 22.645' E"
124     ].each do |code|
125       latlon_check code, 50.06773, 14.37742
126     end
127   end
128
129   ##
130   # Test identification of lat/lon pairs using N/W with degrees/mins
131   def test_identify_latlon_nw_dm
132     [
133      'N 50° 04.064 W 014° 22.645',
134      "N 50° 04.064' W 014° 22.645",
135      "N 50° 04.064', W 014° 22.645'",
136      'N50° 04.064 W14° 22.645',
137      'N 50 04.064 W 014 22.645',
138      'N50 4.064 W14 22.645',
139      "50° 04.064' N, 014° 22.645' W"
140     ].each do |code|
141       latlon_check code, 50.06773, -14.37742
142     end
143   end
144
145   ##
146   # Test identification of lat/lon pairs using S/E with degrees/mins
147   def test_identify_latlon_se_dm
148     [
149      'S 50° 04.064 E 014° 22.645',
150      "S 50° 04.064' E 014° 22.645",
151      "S 50° 04.064', E 014° 22.645'",
152      'S50° 04.064 E14° 22.645',
153      'S 50 04.064 E 014 22.645',
154      'S50 4.064 E14 22.645',
155      "50° 04.064' S, 014° 22.645' E"
156     ].each do |code|
157       latlon_check code, -50.06773, 14.37742
158     end
159   end
160
161   ##
162   # Test identification of lat/lon pairs using S/W with degrees/mins
163   def test_identify_latlon_sw_dm
164     [
165      'S 50° 04.064 W 014° 22.645',
166      "S 50° 04.064' W 014° 22.645",
167      "S 50° 04.064', W 014° 22.645'",
168      'S50° 04.064 W14° 22.645',
169      'S 50 04.064 W 014 22.645',
170      'S50 4.064 W14 22.645',
171      "50° 04.064' S, 014° 22.645' W"
172     ].each do |code|
173       post :search, :query => code
174       assert_response :success
175       assert_equal ['latlon' ,'osm_nominatim_reverse', 'geonames_reverse'], assigns(:sources)
176       assert_nil @controller.params[:query]
177       assert_in_delta -50.06773, @controller.params[:lat]
178       assert_in_delta -14.37742, @controller.params[:lon]
179     end
180   end
181
182   ##
183   # Test identification of lat/lon pairs using N/E with degrees/mins/secs
184   def test_identify_latlon_ne_dms
185     [
186      "N 50° 4' 03.828\" E 14° 22' 38.712\"",
187      "N 50° 4' 03.828\", E 14° 22' 38.712\"",
188      "N 50° 4′ 03.828″, E 14° 22′ 38.712″",
189      'N50 4 03.828 E14 22 38.712',
190      'N50 4 03.828, E14 22 38.712',
191      "50°4'3.828\"N 14°22'38.712\"E"
192     ].each do |code|
193       latlon_check code, 50.06773, 14.37742
194     end
195   end
196
197   ##
198   # Test identification of lat/lon pairs using N/W with degrees/mins/secs
199   def test_identify_latlon_nw_dms
200     [
201      "N 50° 4' 03.828\" W 14° 22' 38.712\"",
202      "N 50° 4' 03.828\", W 14° 22' 38.712\"",
203      "N 50° 4′ 03.828″, W 14° 22′ 38.712″",
204      'N50 4 03.828 W14 22 38.712',
205      'N50 4 03.828, W14 22 38.712',
206      "50°4'3.828\"N 14°22'38.712\"W"
207     ].each do |code|
208       latlon_check code, 50.06773, -14.37742
209     end
210   end
211
212   ##
213   # Test identification of lat/lon pairs using S/E with degrees/mins/secs
214   def test_identify_latlon_se_dms
215     [
216      "S 50° 4' 03.828\" E 14° 22' 38.712\"",
217      "S 50° 4' 03.828\", E 14° 22' 38.712\"",
218      "S 50° 4′ 03.828″, E 14° 22′ 38.712″",
219      'S50 4 03.828 E14 22 38.712',
220      'S50 4 03.828, E14 22 38.712',
221      "50°4'3.828\"S 14°22'38.712\"E"
222     ].each do |code|
223       latlon_check code, -50.06773, 14.37742
224     end
225   end
226
227   ##
228   # Test identification of lat/lon pairs using S/W with degrees/mins/secs
229   def test_identify_latlon_sw_dms
230     [
231      "S 50° 4' 03.828\" W 14° 22' 38.712\"",
232      "S 50° 4' 03.828\", W 14° 22' 38.712\"",
233      "S 50° 4′ 03.828″, W 14° 22′ 38.712″",
234      'S50 4 03.828 W14 22 38.712',
235      'S50 4 03.828, W14 22 38.712',
236      "50°4'3.828\"S 14°22'38.712\"W"
237     ].each do |code|
238       latlon_check code, -50.06773, -14.37742
239     end
240   end
241
242   ##
243   # Test identification of US zipcodes
244   def test_identify_us_postcode
245     [
246      '12345',
247      '12345-6789'
248     ].each do |code|
249       post :search, query: code
250       assert_response :success
251       assert_equal ['us_postcode', 'osm_nominatim'], assigns(:sources)
252     end
253   end
254
255   ##
256   # Test identification of UK postcodes using examples from
257   # http://en.wikipedia.org/wiki/Postcodes_in_the_United_Kingdom
258   def test_identify_uk_postcode
259     [
260      'EC1A 1BB',
261      'W1A 1HQ',
262      'M1 1AA',
263      'B33 8TH',
264      'CR2 6XH',
265      'DN55 1PT'
266     ].each do |code|
267       search_check code, ['uk_postcode', 'osm_nominatim']
268     end
269   end
270
271   ##
272   # Test identification of Canadian postcodes
273   def test_identify_ca_postcode
274     search_check 'A1B 2C3', ['ca_postcode', 'osm_nominatim']
275   end
276
277   ##
278   # Test identification fall through to the default case
279   def test_identify_default
280     search_check 'foo bar baz', ['osm_nominatim']
281   end
282
283 private
284   def latlon_check(query, lat, lon)
285     post :search, :query => query
286     assert_response :success
287     assert_template "search"
288     assert_template :layout => "map"
289     assert_equal ['latlon' ,'osm_nominatim_reverse', 'geonames_reverse'], assigns(:sources)
290     assert_nil @controller.params[:query]
291     assert_in_delta lat, @controller.params[:lat]
292     assert_in_delta lon, @controller.params[:lon]
293
294     xhr :post, :search, :query => query
295     assert_response :success
296     assert_template "search"
297     assert_template :layout => "xhr"
298     assert_equal ['latlon' ,'osm_nominatim_reverse', 'geonames_reverse'], assigns(:sources)
299     assert_nil @controller.params[:query]
300     assert_in_delta lat, @controller.params[:lat]
301     assert_in_delta lon, @controller.params[:lon]
302   end
303
304   def search_check(query, sources)
305     post :search, :query => query
306     assert_response :success
307     assert_template "search"
308     assert_template :layout => "map"
309     assert_equal sources, assigns(:sources)
310
311     xhr :post, :search, :query => query
312     assert_response :success
313     assert_template "search"
314     assert_template :layout => "xhr"
315     assert_equal sources, assigns(:sources)
316   end
317 end