fix error with single cannot condition

This commit is contained in:
Yura Sokolov 2010-05-25 12:14:01 +04:00
parent dbc1538054
commit bcab8d6369
3 changed files with 47 additions and 20 deletions

View File

@ -237,9 +237,9 @@ module CanCan
conds.reverse.inject(nil) do |sql, action|
behavior, condition = action
if condition && condition != {}
condition = "#{subject.send(:sanitize_sql, condition)}"
condition = subject.send(:sanitize_sql, condition)
case sql
when nil then condition
when nil then behavior ? condition : "not (#{condition})"
when true_cond
behavior ? true_cond : "not (#{condition})"
when false_cond

View File

@ -233,25 +233,41 @@ describe CanCan::Ability do
@ability.conditions(:foo, Array).should == false
end
it "should return appropriate sql conditions" do
obj = Class.new do
def self.sanitize_sql(hash_cond)
case hash_cond
when Hash then hash_cond.map{|name, value| "#{name}=#{value}"}
when Array
hash_cond.shift.gsub('?'){"#{hash_cond.shift.inspect}"}
when String then hash_cond
end
end
end
@ability.can :read, obj
@ability.can :manage, obj, :id => 1
@ability.can :update, obj, :manager_id => 1
@ability.cannot :update, obj, :self_managed => true
it "should return hash for single `can` definition" do
@ability.can :read, SqlSanitizer, :blocked => false, :user_id => 1
@ability.sql_conditions(:update, obj).should == 'not (self_managed=true) AND ((manager_id=1) OR (id=1))'
@ability.sql_conditions(:manage, obj).should == {:id=>1}
@ability.sql_conditions(:read, obj).should == 'true=true'
@ability.sql_conditions(:read, SqlSanitizer).should == { :blocked => false, :user_id => 1 }
end
it "should return `not (sql)` for single `cannot` definition" do
@ability.cannot :read, SqlSanitizer, :blocked => true, :user_id => 1
@ability.sql_conditions(:read, SqlSanitizer).should == 'not (blocked=true AND user_id=1)'
end
it "should return `sql` for single `can` definition in front of default cannot condition" do
@ability.cannot :read, SqlSanitizer
@ability.can :read, SqlSanitizer, :blocked => false, :user_id => 1
@ability.sql_conditions(:read, SqlSanitizer).should == 'blocked=false AND user_id=1'
end
it "should return `not (sql)` for single `cannot` definition in front of default can condition" do
@ability.can :read, SqlSanitizer
@ability.cannot :read, SqlSanitizer, :blocked => true, :user_id => 1
@ability.sql_conditions(:read, SqlSanitizer).should == 'not (blocked=true AND user_id=1)'
end
it "should return appropriate sql conditions in complex case" do
@ability.can :read, SqlSanitizer
@ability.can :manage, SqlSanitizer, :id => 1
@ability.can :update, SqlSanitizer, :manager_id => 1
@ability.cannot :update, SqlSanitizer, :self_managed => true
@ability.sql_conditions(:update, SqlSanitizer).should == 'not (self_managed=true) AND ((manager_id=1) OR (id=1))'
@ability.sql_conditions(:manage, SqlSanitizer).should == {:id=>1}
@ability.sql_conditions(:read, SqlSanitizer).should == 'true=true'
end
it "should has eated cheezburger" do

View File

@ -21,3 +21,14 @@ end
# this class helps out in testing nesting
class Person
end
class SqlSanitizer
def self.sanitize_sql(hash_cond)
case hash_cond
when Hash then hash_cond.map{|name, value| "#{name}=#{value}"}.join(' AND ')
when Array
hash_cond.shift.gsub('?'){"#{hash_cond.shift.inspect}"}
when String then hash_cond
end
end
end