Vanilla authlogic/cantango setup, testing with a hard-coded roles_list during test that returns [:user]. Test permissions.yml file:
roles:
user:
can:
manage:
- User
On the first request, user_can?(:manage, User) does what I expect. On subsequent requests, however, it's no longer true, and my permission goes away.
The Duh :/current_user and current_user_session vars change on each request; not sure if that's because I'm in dev environment and something's being reloaded, but it sketches me out a little bit.
Implementation in ApplicationController follows default authlogic examples.
If I load up the console:
pry(main)> u = User.first
=> #<User id: 2, email: "ohai@wtf.com", [...]
pry(main)> a = CanTango::Ability.new u
=> [lots of stuff, available on request]
pry(main)> a.can?(:manage, User.new)
=> true
pry(main)> a.can?(:manage, User.new)
=> true
I attempted to turn cantango's caching off (just in case) in cantango.rb per cantango's docs [...]>
Any hints/tips/pointers/source/docs?
current_useris not available to it, so is calling the guest user hook. The guest user still returns the same list of roles, though, so the original problem still exists, although now I have another one. This question-asking process is working backwards so far. – Dave Newton Sep 8 '11 at 18:44