X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/766246a9605bfa61cba8c6ef63676c233d206813..6b6d2447e3d1e362e0734210ee8cb76a27996fe5:/test/controllers/swf_controller_test.rb diff --git a/test/controllers/swf_controller_test.rb b/test/controllers/swf_controller_test.rb index 6873d86e7..e293bc41b 100644 --- a/test/controllers/swf_controller_test.rb +++ b/test/controllers/swf_controller_test.rb @@ -1,6 +1,8 @@ require "test_helper" class SwfControllerTest < ActionController::TestCase + api_fixtures + ## # test all routes which lead to this controller def test_routes @@ -13,9 +15,32 @@ class SwfControllerTest < ActionController::TestCase ## # basic test that trackpoints at least returns some sort of flash movie def test_trackpoints - get :trackpoints, :xmin => 51, :xmax => 52, :ymin => -1, :ymax => 1, :baselong => 0, :basey => 0, :masterscale => 1 + user = create(:user) + other_user = create(:user) + create(:trace, :visibility => "trackable", :latitude => 51.51, :longitude => -0.14, :user => user) do |trace| + create(:tracepoint, :trace => trace, :trackid => 1, :latitude => (51.510 * GeoRecord::SCALE).to_i, :longitude => (-0.140 * GeoRecord::SCALE).to_i) + create(:tracepoint, :trace => trace, :trackid => 2, :latitude => (51.511 * GeoRecord::SCALE).to_i, :longitude => (-0.141 * GeoRecord::SCALE).to_i) + end + create(:trace, :visibility => "identifiable", :latitude => 51.512, :longitude => 0.142) do |trace| + create(:tracepoint, :trace => trace, :latitude => (51.512 * GeoRecord::SCALE).to_i, :longitude => (0.142 * GeoRecord::SCALE).to_i) + end + + get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1 + assert_response :success + assert_equal "application/x-shockwave-flash", response.content_type + assert_match /^FWS/, response.body + assert_equal 80, response.body.length + + get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => other_user.tokens.create.token + assert_response :success + assert_equal "application/x-shockwave-flash", response.content_type + assert_match /^FWS/, response.body + assert_equal 67, response.body.length + + get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => user.tokens.create.token assert_response :success assert_equal "application/x-shockwave-flash", response.content_type assert_match /^FWS/, response.body + assert_equal 74, response.body.length end end