]> git.openstreetmap.org Git - rails.git/blob - test/controllers/api/users/traces_controller_test.rb
Merge remote-tracking branch 'upstream/pull/5500'
[rails.git] / test / controllers / api / users / traces_controller_test.rb
1 require "test_helper"
2
3 module Api
4   module Users
5     class TracesControllerTest < ActionDispatch::IntegrationTest
6       ##
7       # test all routes which lead to this controller
8       def test_routes
9         assert_routing(
10           { :path => "/api/0.6/user/gpx_files", :method => :get },
11           { :controller => "api/users/traces", :action => "index" }
12         )
13       end
14
15       def test_index
16         user = create(:user)
17         trace1 = create(:trace, :user => user) do |trace|
18           create(:tracetag, :trace => trace, :tag => "London")
19         end
20         trace2 = create(:trace, :user => user) do |trace|
21           create(:tracetag, :trace => trace, :tag => "Birmingham")
22         end
23
24         # check that we get a response when logged in
25         auth_header = bearer_authorization_header user, :scopes => %w[read_gpx]
26         get api_user_traces_path, :headers => auth_header
27         assert_response :success
28         assert_equal "application/xml", response.media_type
29
30         # check the data that is returned
31         assert_select "gpx_file[id='#{trace1.id}']", 1 do
32           assert_select "tag", "London"
33         end
34         assert_select "gpx_file[id='#{trace2.id}']", 1 do
35           assert_select "tag", "Birmingham"
36         end
37       end
38
39       def test_index_anonymous
40         get api_user_traces_path
41         assert_response :unauthorized
42       end
43
44       def test_index_no_scope
45         user = create(:user)
46         bad_auth = bearer_authorization_header user, :scopes => %w[]
47
48         get api_user_traces_path, :headers => bad_auth
49         assert_response :forbidden
50       end
51     end
52   end
53 end