Sha256: 2aaff3819efd79649e15f5b853ceca7e3ca1b00c4fdb3bdbdede57138ccff660
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 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.path_prefix = '/test' AccessRulesStorage.instance.eval_rules rule_defs @path_rules = AccessRulesStorage.instance.path_rules end specify{ @path_rules.first.path_spezification.should be_nil } specify{ @path_rules.last.path_spezification.path.should == '/test/special' } end end end # of describe AccessRulesStorage end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tuersteher-0.6.7 | spec/acces_rules_storage_spec.rb |