Sha256: db8a7b587d97fb4a3294aeff566a91282751468b32c4a260ef7a2fc32512bf35
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 KB
Contents
# Copyright 2010 Bert Meerman require File.expand_path(File.join(File.dirname(__FILE__), 'test_helper')) # Dummy code for overriding the default current_user behavior module Cbac def current_user 1 end end ### # Tests the Cbac system for authorization with context roles # class CbacAuthorizeContextRolesTest < ActiveSupport::TestCase include Cbac #self.fixture_path = File.join(File.dirname(__FILE__), "fixtures") #fixtures :all attr_accessor :authorize_context_eval_string attr_accessor :session # Setup defines the PrivilegeSet that is being used by all PrivilegeTest methods def setup return if PrivilegeSet.sets.include?(:cbac_context_role) PrivilegeSet.add :cbac_context_role, "" Privilege.resource :cbac_context_role, "authorize/context/roles", :get ContextRole.add :authorize_context_role, "context[:authorize_context_eval_string]" end # Check to see if action is correctly authorized def test_authorize_ok assert_equal true, authorization_check("authorize/context", "roles", :get, {:authorize_context_eval_string => true}) end # Run authorization with incorrect authorization def test_authorize_incorrect_privilege assert_equal false, authorization_check("authorize/context", "roles", :get, {:authorize_context_eval_string => false}) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cbac-0.6.5 | test/test_cbac_authorize_context_roles.rb |
cbac-0.6.4 | test/test_cbac_authorize_context_roles.rb |
cbac-0.6.2 | test/test_cbac_authorize_context_roles.rb |