4 class TracepointsControllerTest < ActionController::TestCase
7 @badbigbbox = %w[-0.1,-0.1,1.1,1.1 10,10,11,11]
8 @badmalformedbbox = %w[-0.1 hello
10 @badlatmixedbbox = %w[0,0.1,0.1,0 -0.1,80,0.1,70 0.24,54.34,0.25,54.33]
11 @badlonmixedbbox = %w[80,-0.1,70,0.1 54.34,0.24,54.33,0.25]
12 # @badlatlonoutboundsbbox = %w{ 191,-0.1,193,0.1 -190.1,89.9,-190,90 }
13 @goodbbox = %w[-0.1,-0.1,0.1,0.1 51.1,-0.1,51.2,0
14 -0.1,%20-0.1,%200.1,%200.1 -0.1edcd,-0.1d,0.1,0.1 -0.1E,-0.1E,0.1S,0.1N S0.1,W0.1,N0.1,E0.1]
15 # That last item in the goodbbox really shouldn't be there, as the API should
16 # reall reject it, however this is to test to see if the api changes.
20 # test all routes which lead to this controller
23 { :path => "/api/0.6/trackpoints", :method => :get },
24 { :controller => "api/tracepoints", :action => "index" }
29 point = create(:trace, :visibility => "public", :latitude => 1, :longitude => 1) do |trace|
30 create(:tracepoint, :trace => trace, :latitude => 1 * GeoRecord::SCALE, :longitude => 1 * GeoRecord::SCALE)
32 minlon = point.longitude - 0.001
33 minlat = point.latitude - 0.001
34 maxlon = point.longitude + 0.001
35 maxlat = point.latitude + 0.001
36 bbox = "#{minlon},#{minlat},#{maxlon},#{maxlat}"
37 get :index, :params => { :bbox => bbox }
38 assert_response :success
39 assert_select "gpx[version='1.0'][creator='OpenStreetMap.org']", :count => 1 do
40 assert_select "trk" do
41 assert_select "trkseg"
46 def test_tracepoints_trackable
47 point = create(:trace, :visibility => "trackable", :latitude => 51.51, :longitude => -0.14) do |trace|
48 create(:tracepoint, :trace => trace, :trackid => 1, :latitude => (51.510 * GeoRecord::SCALE).to_i, :longitude => (-0.140 * GeoRecord::SCALE).to_i)
49 create(:tracepoint, :trace => trace, :trackid => 2, :latitude => (51.511 * GeoRecord::SCALE).to_i, :longitude => (-0.141 * GeoRecord::SCALE).to_i)
51 minlon = point.longitude - 0.002
52 minlat = point.latitude - 0.002
53 maxlon = point.longitude + 0.002
54 maxlat = point.latitude + 0.002
55 bbox = "#{minlon},#{minlat},#{maxlon},#{maxlat}"
56 get :index, :params => { :bbox => bbox }
57 assert_response :success
58 assert_select "gpx[version='1.0'][creator='OpenStreetMap.org']", :count => 1 do
59 assert_select "trk", :count => 1 do
60 assert_select "trk > trkseg", :count => 2 do |trksegs|
61 trksegs.each do |trkseg|
62 assert_select trkseg, "trkpt", :count => 1 do |trkpt|
63 assert_select trkpt[0], "time", :count => 1
71 def test_tracepoints_identifiable
72 point = create(:trace, :visibility => "identifiable", :latitude => 51.512, :longitude => 0.142) do |trace|
73 create(:tracepoint, :trace => trace, :latitude => (51.512 * GeoRecord::SCALE).to_i, :longitude => (0.142 * GeoRecord::SCALE).to_i)
75 minlon = point.longitude - 0.002
76 minlat = point.latitude - 0.002
77 maxlon = point.longitude + 0.002
78 maxlat = point.latitude + 0.002
79 bbox = "#{minlon},#{minlat},#{maxlon},#{maxlat}"
80 get :index, :params => { :bbox => bbox }
81 assert_response :success
82 assert_select "gpx[version='1.0'][creator='OpenStreetMap.org']", :count => 1 do
83 assert_select "trk", :count => 1 do
84 assert_select "trk>name", :count => 1
85 assert_select "trk>desc", :count => 1
86 assert_select "trk>url", :count => 1
87 assert_select "trkseg", :count => 1 do
88 assert_select "trkpt", :count => 1 do
89 assert_select "time", :count => 1
96 def test_index_without_bbox
98 assert_response :bad_request
99 assert_equal "The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat", @response.body, "A bbox param was expected"
102 def test_traces_page_less_than_0
104 get :index, :params => { :page => i, :bbox => "-0.1,-0.1,0.1,0.1" }
105 assert_response :bad_request
106 assert_equal "Page number must be greater than or equal to 0", @response.body, "The page number was #{i}"
109 get :index, :params => { :page => i, :bbox => "-0.1,-0.1,0.1,0.1" }
110 assert_response :success, "The page number was #{i} and should have been accepted"
114 def test_bbox_too_big
115 @badbigbbox.each do |bbox|
116 get :index, :params => { :bbox => bbox }
117 assert_response :bad_request, "The bbox:#{bbox} was expected to be too big"
118 assert_equal "The maximum bbox size is #{MAX_REQUEST_AREA}, and your request was too large. Either request a smaller area, or use planet.osm", @response.body, "bbox: #{bbox}"
122 def test_bbox_malformed
123 @badmalformedbbox.each do |bbox|
124 get :index, :params => { :bbox => bbox }
125 assert_response :bad_request, "The bbox:#{bbox} was expected to be malformed"
126 assert_equal "The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat", @response.body, "bbox: #{bbox}"
130 def test_bbox_lon_mixedup
131 @badlonmixedbbox.each do |bbox|
132 get :index, :params => { :bbox => bbox }
133 assert_response :bad_request, "The bbox:#{bbox} was expected to have the longitude mixed up"
134 assert_equal "The minimum longitude must be less than the maximum longitude, but it wasn't", @response.body, "bbox: #{bbox}"
138 def test_bbox_lat_mixedup
139 @badlatmixedbbox.each do |bbox|
140 get :index, :params => { :bbox => bbox }
141 assert_response :bad_request, "The bbox:#{bbox} was expected to have the latitude mixed up"
142 assert_equal "The minimum latitude must be less than the maximum latitude, but it wasn't", @response.body, "bbox: #{bbox}"