1 # frozen_string_literal: true
5 class AbilityTest < ActiveSupport::TestCase
8 class GuestAbilityTest < AbilityTest
9 test "geocoder permission for a guest" do
10 ability = Ability.new nil
12 [:search, :search_latlon, :search_osm_nominatim,
13 :search_osm_nominatim_reverse].each do |action|
14 assert ability.can?(action, :geocoder), "should be able to #{action} geocoder"
18 test "diary permissions for a guest" do
19 ability = Ability.new nil
20 [:index, :rss, :show].each do |action|
21 assert ability.can?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
24 [:index].each do |action|
25 assert ability.can?(action, DiaryComment), "should be able to #{action} DiaryComments"
28 [:create, :edit, :comment, :subscribe, :unsubscribe, :hide, :unhide].each do |action|
29 assert ability.cannot?(action, DiaryEntry), "should not be able to #{action} DiaryEntries"
32 [:hide, :unhide].each do |action|
33 assert ability.cannot?(action, DiaryComment), "should not be able to #{action} DiaryComments"
37 test "note permissions for a guest" do
38 ability = Ability.new nil
40 [:index].each do |action|
41 assert ability.can?(action, Note), "should be able to #{action} Notes"
45 test "user roles permissions for a guest" do
46 ability = Ability.new nil
48 [:grant, :revoke].each do |action|
49 assert ability.cannot?(action, UserRole), "should not be able to #{action} UserRoles"
54 class UserAbilityTest < AbilityTest
55 test "Diary permissions" do
56 ability = Ability.new create(:user)
58 [:index, :rss, :show, :create, :edit, :comment, :subscribe, :unsubscribe].each do |action|
59 assert ability.can?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
62 [:index].each do |action|
63 assert ability.can?(action, DiaryComment), "should be able to #{action} DiaryComments"
66 [:hide, :unhide].each do |action|
67 assert ability.cannot?(action, DiaryEntry), "should not be able to #{action} DiaryEntries"
68 assert ability.cannot?(action, DiaryComment), "should not be able to #{action} DiaryComment"
71 [:index, :show, :resolve, :ignore, :reopen].each do |action|
72 assert ability.cannot?(action, Issue), "should not be able to #{action} Issues"
77 class ModeratorAbilityTest < AbilityTest
78 test "Issue permissions" do
79 ability = Ability.new create(:moderator_user)
81 [:index, :show, :resolve, :ignore, :reopen].each do |action|
82 assert ability.can?(action, Issue), "should be able to #{action} Issues"
86 test "User Roles permissions" do
87 ability = Ability.new create(:moderator_user)
89 [:grant, :revoke].each do |action|
90 assert ability.cannot?(action, UserRole), "should not be able to #{action} UserRoles"
93 [:hide, :unhide].each do |action|
94 assert ability.can?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
95 assert ability.can?(action, DiaryComment), "should be able to #{action} DiaryComment"
100 class AdministratorAbilityTest < AbilityTest
101 test "Diary for an administrator" do
102 ability = Ability.new create(:administrator_user)
103 [:index, :rss, :show, :create, :edit, :comment, :subscribe, :unsubscribe, :hide, :unhide].each do |action|
104 assert ability.can?(action, DiaryEntry), "should be able to #{action} DiaryEntries"
107 [:index, :hide, :unhide].each do |action|
108 assert ability.can?(action, DiaryComment), "should be able to #{action} DiaryComments"
112 test "User Roles permissions for an administrator" do
113 ability = Ability.new create(:administrator_user)
115 [:grant, :revoke].each do |action|
116 assert ability.can?(action, UserRole), "should be able to #{action} UserRoles"