2010-08-01 11:14:00 +00:00
|
|
|
### Pages
|
|
|
|
|
2010-08-21 22:48:24 +00:00
|
|
|
# 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)
|
2010-08-21 22:48:24 +00:00
|
|
|
page = @site.pages.create(:slug => page_slug, :body => page_contents, :parent => @home, :title => "some title", :published => true, :raw_template => template)
|
2010-08-01 21:36:11 +00:00
|
|
|
page.should be_valid
|
|
|
|
page
|
2010-08-01 20:52:24 +00:00
|
|
|
end
|
|
|
|
|
2010-08-01 21:36:11 +00:00
|
|
|
# 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
|
|
|
|
|
2010-08-08 11:30:27 +00:00
|
|
|
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)
|
2010-08-08 11:30:27 +00:00
|
|
|
end
|
|
|
|
|
2010-08-26 11:06:44 +00:00
|
|
|
# update a page
|
|
|
|
When /^I update the "([^"]*)" page with the template:$/ do |page_slug, template|
|
|
|
|
page = @site.pages.where(:slug => page_slug).first
|
2010-08-27 15:40:03 +00:00
|
|
|
page.raw_template = template
|
|
|
|
page.save!
|
2010-08-26 11:06:44 +00:00
|
|
|
end
|
|
|
|
|
2010-08-01 21:36:11 +00:00
|
|
|
# try to render a page by slug
|
|
|
|
When /^I view the rendered page at "([^"]*)"$/ do |path|
|
2011-09-01 12:30:59 +00:00
|
|
|
# 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
|
2010-08-01 21:36:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# checks to see if a string is in the slug
|
2010-08-20 16:24:59 +00:00
|
|
|
Then /^I should have "(.*)" in the (.*) page$/ do |content, page_slug|
|
2010-08-01 11:14:00 +00:00
|
|
|
page = @site.pages.where(:slug => page_slug).first
|
2010-08-01 20:52:24 +00:00
|
|
|
raise "Could not find page: #{page_slug}" unless page
|
2010-08-21 22:48:24 +00:00
|
|
|
page.raw_template.should == content
|
2010-08-01 11:14:00 +00:00
|
|
|
end
|
|
|
|
|
2010-08-01 21:36:11 +00:00
|
|
|
# checks if the rendered body matches a string
|
2010-08-01 11:14:00 +00:00
|
|
|
Then /^the rendered output should look like:$/ do |body_contents|
|
2011-06-29 01:05:07 +00:00
|
|
|
page.source.should == body_contents
|
2010-08-01 11:14:00 +00:00
|
|
|
end
|
2010-08-01 20:52:24 +00:00
|
|
|
|
2011-06-27 15:27:07 +00:00
|
|
|
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
|
|
|
|
|
2010-08-01 20:52:24 +00:00
|
|
|
|