]> git.openstreetmap.org Git - rails.git/blob - test/controllers/api/permissions_controller_test.rb
Merge remote-tracking branch 'upstream/pull/5311'
[rails.git] / test / controllers / api / permissions_controller_test.rb
1 require "test_helper"
2
3 module Api
4   class PermissionsControllerTest < ActionDispatch::IntegrationTest
5     ##
6     # test all routes which lead to this controller
7     def test_routes
8       assert_routing(
9         { :path => "/api/0.6/permissions", :method => :get },
10         { :controller => "api/permissions", :action => "show" }
11       )
12       assert_routing(
13         { :path => "/api/0.6/permissions.json", :method => :get },
14         { :controller => "api/permissions", :action => "show", :format => "json" }
15       )
16     end
17
18     def test_permissions_anonymous
19       get permissions_path
20       assert_response :success
21       assert_select "osm > permissions", :count => 1 do
22         assert_select "permission", :count => 0
23       end
24
25       # Test json
26       get permissions_path(:format => "json")
27       assert_response :success
28       assert_equal "application/json", @response.media_type
29
30       js = ActiveSupport::JSON.decode(@response.body)
31       assert_not_nil js
32       assert_equal 0, js["permissions"].count
33     end
34
35     def test_permissions_oauth2
36       user = create(:user)
37       auth_header = bearer_authorization_header(user, :scopes => %w[read_prefs write_api])
38       get permissions_path, :headers => auth_header
39       assert_response :success
40       assert_select "osm > permissions", :count => 1 do
41         assert_select "permission", :count => 2
42         assert_select "permission[name='allow_read_prefs']", :count => 1
43         assert_select "permission[name='allow_write_api']", :count => 1
44         assert_select "permission[name='allow_read_gpx']", :count => 0
45       end
46     end
47   end
48 end