Sha256: 4273bdfea7eac47a30a4a88b8508f0fd82ca25d8220f2682987b8b005a0e52c7
Contents?: true
Size: 1.63 KB
Versions: 4
Compression:
Stored size: 1.63 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 expect(@path_rules.size).to eq(5) end specify do expect(@model_rules.size).to eq(4) 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
4 entries across 4 versions & 1 rubygems