Sha256: ce501e720f1578f6b597235bd7af51bd343660254a1c94829fb8f19981f9c93b

Contents?: true

Size: 1.8 KB

Versions: 52

Compression:

Stored size: 1.8 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)
    case page_name

    when /the (home\s?page|website)/i
      root_path
    when /the CMS/
      '/admin'
    when /^the (?:root )?content titled "([^\"]*)" page$/i
      node = Node.find_by_title($1)
      node_path(node)
    when /^the content admin page$/
      noodall_admin_nodes_path
    when /^the site ?map page$/
      noodall_sitemap_path
    when /^a page that's content is in the "([^\"]*)" template$/
      node = Node.first(:_type => $1.gsub(' ',''), :order => 'created_at DESC')
      node_path(node)
    when /^a page that's content is in the "([^\"]*)" template that does not have published children$/
      node = Factory($1.gsub(' ','_').tableize.singularize, :publish => true)
      node.children.each{|c| c.destroy }
      node_path(node)
    when /^a page that's content is in the "([^\"]*)" template that has published children$/
      node = Factory($1.gsub(' ','_').tableize.singularize, :publish => true)
      3.times do
        Factory(:page_a, :publish => true, :parent => node)
      end
      node_path(node)
    when /^that page$/
      node_path(@_content)

    when /^the article list page$/
      node_path(@_content)
    when /content titled "([^\"]*)"$/
      node_path(Node.find_by_title($1))
    when /the site map xml page/
      noodall_sitemap_path(:xml)
    else
      begin
        page_name =~ /the (.*) page/
        path_components = $1.split(/\s+/)
        self.send(path_components.push('path').join('_').to_sym)
      rescue Object => e
        raise "Can't find a mapping from \"#{page_name}\" to a path.\n" +
          "Please add one to #{__FILE__}"
      end
    end
  end
end

World(NavigationHelpers)

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
noodall-ui-0.3.20 features/support/paths.rb
noodall-ui-0.3.19 features/support/paths.rb
noodall-ui-0.3.17 features/support/paths.rb
noodall-ui-0.3.16 features/support/paths.rb
noodall-ui-0.3.15 features/support/paths.rb
noodall-ui-0.3.14 features/support/paths.rb
noodall-ui-0.3.13 features/support/paths.rb
noodall-ui-0.3.12 features/support/paths.rb
noodall-ui-0.3.11 features/support/paths.rb
noodall-ui-0.3.8 features/support/paths.rb
noodall-ui-0.3.7 features/support/paths.rb
noodall-ui-0.3.6 features/support/paths.rb
noodall-ui-0.3.5 features/support/paths.rb
noodall-ui-0.3.4 features/support/paths.rb
noodall-ui-0.3.3 features/support/paths.rb
noodall-ui-0.3.2 features/support/paths.rb
noodall-ui-0.3.1 features/support/paths.rb
noodall-ui-0.3.0 features/support/paths.rb
noodall-ui-0.2.3 features/support/paths.rb
noodall-ui-0.2.2 features/support/paths.rb