engine/features/step_definitions/page_steps.rb

69 lines
2.3 KiB
Ruby
Raw Normal View History

### Pages
# helps create a simple content page (parent: "index") with a slug, contents, and template
2010-08-16 22:07:54 +00:00
def create_content_page(page_slug, page_contents, template = nil)
2011-08-25 21:28:56 +00:00
@home = @site.pages.where(:slug => "index").first || FactoryGirl.create(:page)
page = @site.pages.create(:slug => page_slug, :body => page_contents, :parent => @home, :title => "some title", :published => true, :raw_template => template)
page.should be_valid
page
end
# creates a page
Given /^a simple page named "([^"]*)" with the body:$/ do |page_slug, page_contents|
@page = create_content_page(page_slug, page_contents)
end
Given /^a page named "([^"]*)" with the template:$/ do |page_slug, template|
2010-08-16 22:07:54 +00:00
@page = create_content_page(page_slug, '', template)
end
2012-02-17 08:56:11 +00:00
# change the title
When /^I change the page title to "([^"]*)"$/ do |page_title|
2012-02-17 08:56:11 +00:00
page.evaluate_script "window.prompt = function() { return '#{page_title}'; }"
page.find('h2 a.editable').click
end
# change the template
When /^I change the page template to "([^"]*)"$/ do |page_template|
2012-02-17 08:56:11 +00:00
page.evaluate_script "window.application_view.view.model.set({ 'raw_template': '#{page_template}' })"
end
# update a page
When /^I update the "([^"]*)" page with the template:$/ do |page_slug, template|
page = @site.pages.where(:slug => page_slug).first
page.raw_template = template
page.save!
end
# try to render a page by slug
When /^I view the rendered page at "([^"]*)"$/ do |path|
# If we're running selenium then we need to use a differnt port
if Capybara.current_driver == :selenium
visit "http://#{@site.domains.first}:#{Capybara.server_port}#{path}"
else
visit "http://#{@site.domains.first}#{path}"
end
end
# checks to see if a string is in the slug
Then /^I should have "(.*)" in the (.*) page$/ do |content, page_slug|
page = @site.pages.where(:slug => page_slug).first
raise "Could not find page: #{page_slug}" unless page
page.raw_template.should == content
end
# checks if the rendered body matches a string
Then /^the rendered output should look like:$/ do |body_contents|
page.source.should == body_contents
end
Then /^I should see delete page buttons$/ do
page.has_css?("ul#pages-list li .more a.remove").should be_true
end
Then /^I should not see delete page buttons$/ do
page.has_css?("ul#pages-list li .more a.remove").should be_false
end