]> git.openstreetmap.org Git - rails.git/blob - test/controllers/swf_controller_test.rb
Merge remote-tracking branch 'openstreetmap/pull/1348'
[rails.git] / test / controllers / swf_controller_test.rb
1 require "test_helper"
2
3 class SwfControllerTest < ActionController::TestCase
4   api_fixtures
5
6   ##
7   # test all routes which lead to this controller
8   def test_routes
9     assert_routing(
10       { :path => "/api/0.6/swf/trackpoints", :method => :get },
11       { :controller => "swf", :action => "trackpoints" }
12     )
13   end
14
15   ##
16   # basic test that trackpoints at least returns some sort of flash movie
17   def test_trackpoints
18     get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1
19     assert_response :success
20     assert_equal "application/x-shockwave-flash", response.content_type
21     assert_match /^FWS/, response.body
22     assert_equal 80, response.body.length
23
24     get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => users(:normal_user).tokens.create.token
25     assert_response :success
26     assert_equal "application/x-shockwave-flash", response.content_type
27     assert_match /^FWS/, response.body
28     assert_equal 67, response.body.length
29
30     get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => users(:public_user).tokens.create.token
31     assert_response :success
32     assert_equal "application/x-shockwave-flash", response.content_type
33     assert_match /^FWS/, response.body
34     assert_equal 74, response.body.length
35   end
36 end