Sha256: 1725efb718eccc5fb2e183bf51d96c0bd65d96b734214f03c6b86326c7e700dd

Contents?: true

Size: 1.94 KB

Versions: 30

Compression:

Stored size: 1.94 KB

Contents

module NavigationHelpers
  # Maps a name to a path. Used by the
  #
  #   When /^I go to (.+)$/ do |page_name|
  #
  # step definition in web_steps.rb
  #
  def path_to(page_name)
    params = page_name.scan(/with params "(.*?)"/).flatten[0] || ''
    page_name.sub! /\ with params.*/, ''

    url = case page_name

    when /the home\s?page/
      '/'
    when /the dashboard/
      "/admin"
    when /the new post page/
      "/admin/posts/new"
    when /the login page/
      "/admin/login"
    when /the first post show page/
      "/admin/posts/1"
    when /the first post edit page/
      "/admin/posts/1/edit"
    when /the admin password reset form with token "([^"]*)"/
      "/admin/password/edit?reset_password_token=#{$1}"

    # the index page for posts in the root namespace
    # the index page for posts in the user_admin namespace
    when /^the index page for (.*) in the (.*) namespace$/
      if $2 != 'root'
        send "#{$2}_#{$1}_path"
      else
        send "#{$1}_path"
      end

    # same as above, except defaults to admin namespace
    when /^the index page for (.*)$/
      send "admin_#{$1}_path"

    when /^the last author's posts$/
      admin_user_posts_path(User.last)

    when /^the last author's last post page$/
      admin_user_post_path(User.last, Post.where(author_id: User.last.id).last)

    when /^the last post's edit page$/
      edit_admin_post_path(Post.last)

    # Add more mappings here.
    # Here is an example that pulls values out of the Regexp:
    #
    #   when /^(.*)'s profile page$/i
    #     user_profile_path(User.find_by_login($1))

    else
      begin
        page_name =~ /the (.*) page/
        path_components = $1.split(/\s+/)
        self.send path_components.push('path').join('_')
      rescue Object => e
        raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
          "Now, go and add a mapping in #{__FILE__}"
      end
    end
    url + params
  end
end

World(NavigationHelpers)

Version data entries

30 entries across 30 versions & 6 rubygems

Version Path
activeadmin_addons-1.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/activeadmin-a5a53c3f2b8f/features/support/paths.rb
activeadmin_addons-1.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/features/support/paths.rb
yousty-activeadmin-1.0.17.pre features/support/paths.rb
yousty-activeadmin-1.0.16.pre features/support/paths.rb
activeadmin_addons-1.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/features/support/paths.rb
activeadmin_addons-1.0.1 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/features/support/paths.rb
activeadmin_addons-1.0.0 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/features/support/paths.rb
yousty-activeadmin-1.0.15.pre features/support/paths.rb
activeadmin-orac-1.0.0.pre4 features/support/paths.rb
activeadmin-orac-1.0.0 features/support/paths.rb
activeadmin-orac-1.0.0.pre.orac features/support/paths.rb
yousty-activeadmin-1.0.14.pre features/support/paths.rb
yousty-activeadmin-1.0.13.pre features/support/paths.rb
yousty-activeadmin-1.0.12.pre features/support/paths.rb
yousty-activeadmin-1.0.11.pre features/support/paths.rb
yousty-activeadmin-1.0.10.pre features/support/paths.rb
yousty-activeadmin-1.0.9.pre features/support/paths.rb
yousty-activeadmin-1.0.8.pre features/support/paths.rb
activeadmin-1.0.0.pre4 features/support/paths.rb
activeadmin-1.0.0.pre3 features/support/paths.rb