aboutsummaryrefslogtreecommitdiffstats
path: root/spec/requests/manage_blog_posts_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/manage_blog_posts_spec.rb')
-rw-r--r--spec/requests/manage_blog_posts_spec.rb161
1 files changed, 92 insertions, 69 deletions
diff --git a/spec/requests/manage_blog_posts_spec.rb b/spec/requests/manage_blog_posts_spec.rb
index 585bcd4..12b7b8f 100644
--- a/spec/requests/manage_blog_posts_spec.rb
+++ b/spec/requests/manage_blog_posts_spec.rb
@@ -2,95 +2,118 @@ require "spec_helper"
describe "manage blog posts" do
login_refinery_user
-
- let!(:blog_post) { Factory(:blog_post, :title => "Refinery CMS blog post") }
+
+ let!(:blog_category) { Factory.create(:blog_category, :title => "Video Games") }
context "when no blog posts" do
before(:each) { Refinery::BlogPost.destroy_all }
-
- it "invites to create new post" do
- visit refinery_admin_blog_posts_path
- page.should have_content("There are no Blog Posts yet. Click \"Create new post\" to add your first blog post.")
- end
- end
-
- describe "when creating first blog post" do
- before(:each) do
- Refinery::BlogPost.destroy_all
-
- visit refinery_admin_blog_posts_path
- click_link "Create new post"
-
- fill_in "Title", :with => "Another Refinery CMS blog post"
- fill_in "blog_post_body", :with => "Bla bla"
- click_button "Save"
- end
-
- it "should succeed" do
- page.should have_content("'Another Refinery CMS blog post' was successfully added.")
- end
- it "should be the only blog post" do
- ::Refinery::BlogPost.all.size.should eq(1)
+ describe "blog post listing" do
+ before(:each) { visit refinery_admin_blog_posts_path }
+
+ it "invites to create new post" do
+ page.should have_content("There are no Blog Posts yet. Click \"Create new post\" to add your first blog post.")
+ end
end
- it "should belong to me" do
- ::Refinery::BlogPost.first.author.login.should eq(::Refinery::User.last.login)
+ describe "new blog post form" do
+ before(:each) do
+ visit refinery_admin_blog_posts_path
+ click_link "Create new post"
+ end
+
+ it "should have Tags" do
+ page.should have_content("Tags")
+ end
+
+ it "should have Video Games" do
+ page.should have_content(blog_category.title)
+ end
+
+ describe "create blog post" do
+ before(:each) do
+ fill_in "Title", :with => "This is my blog post"
+ fill_in "blog_post_body", :with => "And I love it"
+ check blog_category.title
+ click_button "Save"
+ end
+
+ it "should succeed" do
+ page.should have_content("was successfully added.")
+ end
+
+ it "should be the only blog post" do
+ ::Refinery::BlogPost.all.size.should eq(1)
+ end
+
+ it "should belong to me" do
+ ::Refinery::BlogPost.first.author.login.should eq(::Refinery::User.last.login)
+ end
+
+ it "should save categories" do
+ ::Refinery::BlogPost.last.categories.count.should eq(1)
+ ::Refinery::BlogPost.last.categories.first.title.should eq(blog_category.title)
+ end
+ end
end
end
- context "when editing blog post" do
- it "should succeed" do
- visit refinery_admin_blog_posts_path
- page.should have_content(blog_post.title)
-
- click_link("Edit this blog post")
- current_path.should == edit_refinery_admin_blog_post_path(blog_post)
-
- fill_in "Title", :with => "hax0r"
- click_button "Save"
+ context "when has blog posts" do
+ let!(:blog_post) { Factory(:blog_post) }
+
+ describe "blog post listing" do
+ before(:each) { visit refinery_admin_blog_posts_path }
+
+ describe "edit blog post" do
+ it "should succeed" do
+ page.should have_content(blog_post.title)
- page.should_not have_content(blog_post.title)
- page.should have_content("'hax0r' was successfully updated.")
- end
- end
+ click_link("Edit this blog post")
+ current_path.should == edit_refinery_admin_blog_post_path(blog_post)
- context "when deleting blog post" do
- it "should succeed" do
+ fill_in "Title", :with => "hax0r"
+ click_button "Save"
- visit refinery_admin_blog_posts_path
- page.should have_content(blog_post.title)
+ page.should_not have_content(blog_post.title)
+ page.should have_content("'hax0r' was successfully updated.")
+ end
+ end
- click_link "Remove this blog post forever"
+ describe "deleting blog post" do
+ it "should succeed" do
+ page.should have_content(blog_post.title)
- page.should have_content("'#{blog_post.title}' was successfully removed.")
- end
- end
+ click_link "Remove this blog post forever"
- context "uncategorized post" do
- it "shows up in the list" do
- visit uncategorized_refinery_admin_blog_posts_path
- page.should have_content(blog_post.title)
+ page.should have_content("'#{blog_post.title}' was successfully removed.")
+ end
+ end
+
+ describe "view live" do
+ it "redirects to blog post in the frontend" do
+ click_link "View this blog post live"
+
+ current_path.should == blog_post_path(blog_post)
+ page.should have_content(blog_post.title)
+ end
+ end
end
- end
-
- context "categorized post" do
- it "won't show up in the list" do
- blog_post.categories << Factory(:blog_category)
- blog_post.save!
- visit uncategorized_refinery_admin_blog_posts_path
- page.should_not have_content(blog_post.title)
+ context "when uncategorized post" do
+ it "shows up in the list" do
+ visit uncategorized_refinery_admin_blog_posts_path
+ page.should have_content(blog_post.title)
+ end
end
- end
- describe "view live" do
- it "redirects to blog post in the frontend" do
- visit refinery_admin_blog_posts_path
- click_link "View this blog post live"
+ context "when categorized post" do
+ it "won't show up in the list" do
+ blog_post.categories << blog_category
+ blog_post.save!
- current_path.should == blog_post_path(blog_post)
- page.should have_content(blog_post.title)
+ visit uncategorized_refinery_admin_blog_posts_path
+ page.should_not have_content(blog_post.title)
+ end
end
end
end