Sha256: 72cde5e815a12d224f5331d0c955679b8ad9660a6f57e14726da879cdd11493f

Contents?: true

Size: 1.36 KB

Versions: 14

Compression:

Stored size: 1.36 KB

Contents

Feature: Authorizing Access using CanCan

  Background:
    Given I am logged in
    And 1 post exists
    And a configuration of:
    """
    require 'cancan'

    class ::Ability
      include ::CanCan::Ability

      def initialize(user)
        # Manage Posts
        can [:edit, :destroy], Post, author_id: user.id
        can :read, Post

        # View Pages
        can :read, ActiveAdmin::Page, name: "Dashboard"
        cannot :read, ActiveAdmin::Page, name: "No Access"
      end

    end

    ActiveAdmin.application.namespace(:admin).authorization_adapter = ActiveAdmin::CanCanAdapter

    ActiveAdmin.register Post do
    end

    ActiveAdmin.register_page "No Access" do
    end
    """
    And I am on the index page for posts

  @allow-rescue
  Scenario: Attempt to access a resource I am not authorized to see
    When I go to the last post's edit page
    Then I should see "You are not authorized to perform this action"

  Scenario: Viewing the default action items
    When I follow "View"
    Then I should not see an action item link to "Edit"

  @allow-rescue
  Scenario: Attempting to visit a Page without authorization
    When I go to the admin no access page
    Then I should see "You are not authorized to perform this action"

  @allow-rescue
  Scenario: Viewing a page with authorization
    When I go to the admin dashboard page
    Then I should see "Dashboard"

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
activeadmin-rails-1.7.1 features/authorization_cancan.feature
activeadmin-rails-1.7.0 features/authorization_cancan.feature
activeadmin-rb-1.6.0 features/authorization_cancan.feature
activeadmin-rb-1.5.2 features/authorization_cancan.feature
activeadmin-rb-1.5.1 features/authorization_cancan.feature
activeadmin-rb-1.5.0 features/authorization_cancan.feature
activeadmin-rb-1.4.0 features/authorization_cancan.feature
activeadmin-1.3.1 features/authorization_cancan.feature
activeadmin-1.3.0 features/authorization_cancan.feature
activeadmin-1.2.1 features/authorization_cancan.feature
activeadmin-1.2.0 features/authorization_cancan.feature
activeadmin-1.1.0 features/authorization_cancan.feature
activeadmin-1.0.0 features/authorization_cancan.feature
activeadmin-1.0.0.pre5 features/authorization_cancan.feature