53 lines
1.7 KiB
Ruby
53 lines
1.7 KiB
Ruby
### Pages
|
|
|
|
# helps create a simple content page (parent: "index") with a slug, contents, and template
|
|
def create_content_page(page_slug, page_contents, template = nil)
|
|
@home = @site.pages.where(:slug => "index").first || Factory(: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|
|
|
@page = create_content_page(page_slug, '', 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|
|
|
visit "http://#{@site.domains.first}#{path}"
|
|
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
|
|
|
|
|