Sha256: 76dc7ba20b12031d2cbe87bfbc71fbe14e346a2028ed68a6281d591e2fd76f97
Contents?: true
Size: 1.61 KB
Versions: 3
Compression:
Stored size: 1.61 KB
Contents
require "spec_helper" module Tuersteher class Dashboard; end class Todo; end describe AccessRulesStorage do context "eval_rules" do before(:all) do rule_defs = <<-EOR path('/').grant.method(:get) path(:all).grant.role(:ADMIN) path('/special').grant.extension(:special?, :area1) path('/pictures') do grant.role(:admin) deny.role(:guest) end model(Dashboard).grant.method(:view) model(Todo) do grant.method(:view) grant.method(:full_view).role(:ADMIN) grant.method(:update).role(:EDITOR).extension(:owned_by?) # calls Todo.owned_by?(current_user) end EOR AccessRulesStorage.instance.eval_rules rule_defs @path_rules = AccessRulesStorage.instance.path_rules @model_rules = AccessRulesStorage.instance.model_rules end specify do @path_rules.should have(5).items end specify do @model_rules.should have(4).items end specify do AccessRules.path_access?(nil, '/') end end # of context "eval_rules" context "extend path with prefix" do context "eval_rules" do before(:all) do rule_defs = <<-EOR path(:all).grant.role(:ADMIN) path('/special').grant.role(:SPECIAL) EOR AccessRulesStorage.instance.eval_rules rule_defs AccessRulesStorage.instance.extend_path_rules_with_prefix('/test') @path_rules = AccessRulesStorage.instance.path_rules end specify{ @path_rules.first.path.should == :all } specify{ @path_rules.last.path.should == '/test/special' } end end end # of describe AccessRulesStorage end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tuersteher-0.5.2 | spec/acces_rules_storage_spec.rb |
tuersteher-0.5.1 | spec/acces_rules_storage_spec.rb |
tuersteher-0.5.0 | spec/acces_rules_storage_spec.rb |