Module: Authorization::TestHelper

Includes:
Maintenance
Defined in:
lib/maintenance.rb

Overview

TestHelper provides assert methods and controller request methods which take authorization into account and set the current user to a specific one.

Defines get_with, post_with, get_by_xhr_with etc. for methods get, post, put, delete each with the signature

get_with(user, action, params = {}, session = {}, flash = {})

Use it by including it in your TestHelper:

require File.expand_path(File.dirname(__FILE__) + 
  "/../vendor/plugins/declarative_authorization/lib/maintenance")
class Test::Unit::TestCase 
  include Authorization::TestHelper
  ...

  def admin
    # create admin user
  end
end

class SomeControllerTest < ActionController::TestCase
  def test_should_get_index
    ...
    get_with admin, :index, :param_1 => "param value"
    ...
  end
end

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Maintenance

#with_user, without_access_control, #without_access_control

Class Method Details

.included(base) ⇒ Object



160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/maintenance.rb', line 160

def self.included (base)
  [:get, :post, :put, :delete].each do |method|
    base.class_eval "      def \#{method}_with (user, *args)\n        request_with(user, \#{method.inspect}, false, *args)\n      end\n\n      def \#{method}_by_xhr_with (user, *args)\n        request_with(user, \#{method.inspect}, true, *args)\n      end\n    EOV\n  end\nend\n", __FILE__, __LINE__

Instance Method Details

#assert_raise_with_user(user, *args, &block) ⇒ Object

Analogue to the Ruby’s assert_raise method, only executing the block in the context of the given user.



142
143
144
145
146
# File 'lib/maintenance.rb', line 142

def assert_raise_with_user (user, *args, &block)
  assert_raise(*args) do
    with_user(user, &block)
  end
end

#request_with(user, method, xhr, action, params = {}, session = {}, flash = {}) ⇒ Object



148
149
150
151
152
153
154
155
156
157
158
# File 'lib/maintenance.rb', line 148

def request_with (user, method, xhr, action, params = {}, 
    session = {}, flash = {})
  session = session.merge({:user => user, :user_id => user.id})
  with_user(user) do
    if xhr
      xhr method, action, params, session, flash
    else
      send method, action, params, session, flash
    end
  end
end