X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b095b59d5e0ee805e49980af80b21bd1acff1345..16f5a5ac0c674b258996fcbde1c3fda2e651906a:/test/controllers/swf_controller_test.rb diff --git a/test/controllers/swf_controller_test.rb b/test/controllers/swf_controller_test.rb index d7213133b..25ed41947 100644 --- a/test/controllers/swf_controller_test.rb +++ b/test/controllers/swf_controller_test.rb @@ -1,6 +1,8 @@ -require 'test_helper' +require "test_helper" class SwfControllerTest < ActionController::TestCase + api_fixtures + ## # test all routes which lead to this controller def test_routes @@ -9,4 +11,26 @@ class SwfControllerTest < ActionController::TestCase { :controller => "swf", :action => "trackpoints" } ) end + + ## + # basic test that trackpoints at least returns some sort of flash movie + def test_trackpoints + 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 => users(:normal_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 => users(:public_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