Giter Site home page Giter Site logo

Comments (5)

palkan avatar palkan commented on July 19, 2024 1

Looks like we do not recognize compound matchers in be_authorized_to. Will fix it.

from action_policy.

palkan avatar palkan commented on July 19, 2024

You can use an_instance_of(Post) here.

Though I'd recommend to authorize! Post instead: authorization shouldn't depend on the input but on the action itself and a subject (which is missing in this case).

from action_policy.

louim avatar louim commented on July 19, 2024

Hey!
Thank you for the answer. While I agree that it's generally better to authorize! Post on initial create, in this case I need to authorize associations on the record that is being created. My policy looks somewhat like this:

class PostPolicy < ApplicationPolicy
  def create?
    allowed_to?(:update?, record.author) && other_conditions
  end
end

from action_policy.

louim avatar louim commented on July 19, 2024
subject(:create) { post :create, params: { post: post_payload } }
it "authorize the post do
  expect { create }.to be_authorized_to(:create?, an_instance_of(Post))
end

Maybe I spoke too soon, because passing an_instance_of(Post) result in the following message:

ActionPolicy::NotFound:
Couldn't find policy class for #<RSpec::Matchers::AliasedMatcher:0x00007ffcb7e13f28 @description_block=#<Proc:0x00007ffcbb0119f8@/Users/louim/.gem/ruby/2.6.5/gems/rspec-expectations-3.6.0/lib/rspec/matchers/dsl.rb:31 (lambda)>, @base_matcher=#<RSpec::Matchers::BuiltIn::BeAnInstanceOf:0x00007ffcb7e13f50 @expected=Post(some_attributes), @matcher_name=:an_instance_of>> (RSpec::Matchers::AliasedMatcher)

Because it can't infer the policy from the instance matcher, which make sense to me, so I tried:

subject(:create) { post :create, params: { post: post_payload } }
it "authorize the post do
  expect { create }.to be_authorized_to(:create?, an_instance_of(Post)).with(PostPolicy)
end

and I got

expected an instance of Post to be authorized with PostPolicy#create?, but the following calls were encountered:
        - #<Post id: 17439, some_more_post_attributes> was authorized with PostPolicy#create?

from action_policy.

louim avatar louim commented on July 19, 2024

Thanks!

from action_policy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.