]> git.openstreetmap.org Git - rails.git/blob - test/models/abilities_test.rb
Authorize actions on GeocoderController with CanCanCan Ability
[rails.git] / test / models / abilities_test.rb
1 # frozen_string_literal: true
2
3 require "test_helper"
4
5 class AbilityTest < ActiveSupport::TestCase
6
7   def tokens(*toks)
8     AccessToken.new do |token|
9       toks.each do |t|
10         token.public_send("#{t}=", true)
11       end
12     end
13   end
14
15 end
16
17 class GuestAbilityTest < AbilityTest
18
19   test "geocoder permission for a guest" do
20     ability = Ability.new nil, tokens
21
22     [:search, :search_latlon, :search_ca_postcode, :search_osm_nominatim,
23      :search_geonames, :search_osm_nominatim_reverse, :search_geonames_reverse].each do |action|
24       assert ability.can?(action, :geocoder), "should be able to #{action} geocoder"
25     end
26   end
27
28   test "diary permissions for a guest" do
29     ability = Ability.new nil, tokens
30     [:list, :rss, :view, :comments].each do |action|
31       assert ability.can?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
32     end
33
34     [:create, :edit, :comment, :subscribe, :unsubscribe, :hide, :hidecomment].each do |action|
35       assert ability.cannot?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
36       assert ability.cannot?(action, DiaryComment), "should be able to #{action} DiaryEntries"
37     end
38   end
39
40 end
41
42 class UserAbilityTest < AbilityTest
43
44   test "Diary permissions" do
45     ability = Ability.new create(:user), tokens
46
47     [:list, :rss, :view, :comments, :create, :edit, :comment, :subscribe, :unsubscribe].each do |action|
48       assert ability.can?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
49     end
50
51     [:hide, :hidecomment].each do |action|
52       assert ability.cannot?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
53       assert ability.cannot?(action, DiaryComment), "should be able to #{action} DiaryEntries"
54     end
55   end
56
57   test "user preferences" do
58     user = create(:user)
59
60     # a user with no tokens
61     ability = Ability.new create(:user), nil
62     [:read, :read_one, :update, :update_one, :delete_one].each do |act|
63       assert ability.can? act, UserPreference
64     end
65
66     # A user with empty tokens
67     ability = Ability.new create(:user), tokens
68
69     [:read, :read_one, :update, :update_one, :delete_one].each do |act|
70       assert ability.cannot? act, UserPreference
71     end
72
73     ability = Ability.new user, tokens(:allow_read_prefs)
74
75     [:update, :update_one, :delete_one].each do |act|
76       assert ability.cannot? act, UserPreference
77     end
78
79     [:read, :read_one].each do |act|
80       assert ability.can? act, UserPreference
81     end
82
83     ability = Ability.new user, tokens(:allow_write_prefs)
84     [:read, :read_one].each do |act|
85       assert ability.cannot? act, UserPreference
86     end
87
88     [:update, :update_one, :delete_one].each do |act|
89       assert ability.can? act, UserPreference
90     end
91   end
92 end
93
94 class AdministratorAbilityTest < AbilityTest
95
96   test "Diary for an administrator" do
97     ability = Ability.new create(:administrator_user), tokens
98     [:list, :rss, :view, :comments, :create, :edit, :comment, :subscribe, :unsubscribe, :hide, :hidecomment].each do |action|
99       assert ability.can?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
100     end
101
102     [:hide, :hidecomment].each do |action|
103       assert ability.can?(action, DiaryComment), "should be able to #{action} DiaryComment"
104     end
105   end
106
107   test "administrator does not auto-grant user preferences" do
108     ability = Ability.new create(:administrator_user), tokens
109
110     [:read, :read_one, :update, :update_one, :delete_one].each do |act|
111       assert ability.cannot? act, UserPreference
112     end
113   end
114
115
116 end