Sha256: 61f675773477a685163cb59487057e24b4b492a189c90dfa5ad8d6b86dc2759e

Contents?: true

Size: 1.36 KB

Versions: 7

Compression:

Stored size: 1.36 KB

Contents

require 'rails_helper'

RSpec.describe "Controller Authorization", type: :controller do

  let(:authorization){ controller.send(:active_admin_authorization) }

  before do
    load_resources { ActiveAdmin.register Post }
    @controller = Admin::PostsController.new
    allow(authorization).to receive(:authorized?)
  end

  it "should authorize the index action" do
    expect(authorization).to receive(:authorized?).with(auth::READ, Post).and_return true
    get :index
    expect(response).to be_successful
  end

  it "should authorize the new action" do
    expect(authorization).to receive(:authorized?).with(auth::CREATE, an_instance_of(Post)).and_return true
    get :new
    expect(response).to be_successful
  end

  it "should authorize the create action with the new resource" do
    expect(authorization).to receive(:authorized?).with(auth::CREATE, an_instance_of(Post)).and_return true
    post :create
    expect(response).to redirect_to action: 'show', id: Post.last.id
  end

  it "should redirect when the user isn't authorized" do
    expect(authorization).to receive(:authorized?).with(auth::READ, Post).and_return false
    get :index
    expect(response.body).to eq '<html><body>You are being <a href="http://test.host/admin">redirected</a>.</body></html>'
    expect(response).to redirect_to '/admin'
  end

  private

  def auth
    ActiveAdmin::Authorization
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
activeadmin-rb-1.6.0 spec/unit/authorization/controller_authorization_spec.rb
activeadmin-rb-1.5.2 spec/unit/authorization/controller_authorization_spec.rb
activeadmin-rb-1.5.1 spec/unit/authorization/controller_authorization_spec.rb
activeadmin-rb-1.5.0 spec/unit/authorization/controller_authorization_spec.rb
activeadmin-rb-1.4.0 spec/unit/authorization/controller_authorization_spec.rb
activeadmin-1.3.1 spec/unit/authorization/controller_authorization_spec.rb
activeadmin-1.3.0 spec/unit/authorization/controller_authorization_spec.rb