X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f8af0c6c331d5b52deab50abf7afa8c7881cddfb..4077a9af0985d3c85f2f2de2bb7a0f6be581e71e:/services/api/test/test_helper.rb?ds=inline diff --git a/services/api/test/test_helper.rb b/services/api/test/test_helper.rb index 5ea6e62bfa..bf5afea1e2 100644 --- a/services/api/test/test_helper.rb +++ b/services/api/test/test_helper.rb @@ -52,6 +52,25 @@ class ActiveSupport::TestCase restore_configuration end + def assert_not_allowed + # Provide a block that calls a Rails boolean "true or false" success value, + # like model.save or model.destroy. This method will test that it either + # returns false, or raises a Permission Denied exception. + begin + refute(yield) + rescue ArvadosModel::PermissionDeniedError + end + end + + def add_permission_link from_who, to_what, perm_type + act_as_system_user do + Link.create!(tail_uuid: from_who.uuid, + head_uuid: to_what.uuid, + link_class: 'permission', + name: perm_type) + end + end + def restore_configuration # Restore configuration settings changed during tests $application_config.each do |k,v|