Sha256: 4b4861be91df4f6386cf1d3b6b12a74ec573411e854ccf204639ac240306c496
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
RSpec.describe ApplicationController, type: :controller do controller do include Hydra::AccessControlsEnforcement include Ddr::Auth::RoleBasedAccessControlsEnforcement end let(:user) { FactoryGirl.create(:user) } before do sign_in user allow(controller.current_user).to receive(:groups) { Ddr::Auth::Groups.new([Ddr::Auth::Group.new("foo"), Ddr::Auth::Group.new("bar")]) } end describe "#resource_role_filters" do it "should include clauses for each agent for the current user" do expect(subject.resource_role_filters).to eq("resource_role_sim:\"foo\" OR resource_role_sim:\"bar\" OR resource_role_sim:\"#{user.name}\"") end end describe "#role_policies" do let(:collections) { FactoryGirl.build_list(:collection, 3) } before do collections[0].roles.grant type: "Curator", agent: user, scope: "policy" collections[0].save collections[1].roles.grant type: "Editor", agent: "foo", scope: "policy" collections[1].roles.grant type: "Contributor", agent: "bar", scope: "policy" collections[1].save collections[2].roles.grant type: "Viewer", agent: "foo:bar", scope: "policy" collections[2].save end it "should return a list of PIDs for collections on which the current user has a role" do expect(subject.role_policies).to match_array([collections[0].pid, collections[1].pid]) end end describe "#policy_role_filters" do before do allow(subject).to receive(:role_policies) { ["test:13", "test:45"] } end it "should include clauses for is_governed_by relationships to the #role_policies PIDs" do expect(subject.policy_role_filters).to eq("_query_:\"{!raw f=#{Ddr::IndexFields::IS_GOVERNED_BY}}test:13\" OR _query_:\"{!raw f=#{Ddr::IndexFields::IS_GOVERNED_BY}}test:45\"") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ddr-models-1.13.2 | spec/controllers/including_role_based_access_controls_enforcement_spec.rb |