Files
growstuff/spec/views/posts/_single.html.haml_spec.rb
Daniel O'Connor 4b4e0cf69a $ rubocop --only HashSyntax --auto-correct
483 files inspected, 2018 offenses detected, 2018 offenses corrected
2016-05-19 15:53:11 -04:00

137 lines
3.5 KiB
Ruby

## DEPRECATION NOTICE: Do not add new tests to this file!
##
## View and controller tests are deprecated in the Growstuff project.
## We no longer write new view and controller tests, but instead write
## feature tests (in spec/features) using Capybara (https://github.com/jnicklas/capybara).
## These test the full stack, behaving as a browser, and require less complicated setup
## to run. Please feel free to delete old view/controller tests as they are reimplemented
## in feature tests.
##
## If you submit a pull request containing new view or controller tests, it will not be
## merged.
require 'rails_helper'
describe "posts/_single" do
def render_post()
render partial: "single", locals: { post: @post }
end
before(:each) do
@post = FactoryGirl.create(:post)
controller.stub(:current_user) { nil }
end
context "when the number of comments doesn't matter" do
before(:each) do
render_post
end
it "contains a permanent link to post" do
assert_select "a[href=#{post_path @post}]", "Permalink"
end
it "doesn't contain a link to new comment" do
assert_select "a[href=#{new_comment_path(post_id: @post.id)}]", false
end
end
context "when logged in" do
before(:each) do
@member = FactoryGirl.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
render_post
end
it "contains link to new comment" do
assert_select "a[href=#{new_comment_path(post_id: @post.id)}]", "Reply"
end
it "does not contain an edit link" do
assert_select "a[href=#{edit_post_path(@post)}]", false
end
end
context "when logged in as post author" do
before(:each) do
@member = FactoryGirl.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@post = FactoryGirl.create(:post, author: @member)
render_post
end
it "contains an edit link" do
assert_select "a[href=#{edit_post_path(@post)}]", "Edit"
end
end
context "when there are no comments" do
before(:each) do
render_post
end
it "renders the number of comments" do
assert_select "a[href=#{post_path(@post)}\#comments]", "0 comments"
end
end
context "when there is 1 comment" do
before(:each) do
@comment = FactoryGirl.create(:comment, post: @post)
render_post
end
it "renders the number of comments" do
assert_select "a[href=#{post_path(@post)}\#comments]", "1 comment"
end
end
context "when there are 2 comments" do
before(:each) do
@comment = FactoryGirl.create(:comment, post: @post)
@comment2 = FactoryGirl.create(:comment, post: @post)
render_post
end
it "renders the number of comments" do
assert_select "a[href=#{post_path(@post)}\#comments]", "2 comments"
end
end
context "when comments should be hidden" do
before(:each) do
@member = FactoryGirl.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@comment = FactoryGirl.create(:comment, post: @post)
render partial: "single", locals: {
post: @post, hide_comments: true
}
end
it "renders no value of comments" do
rendered.should_not have_content "1 comment"
end
it "does not contain link to post" do
assert_select "a[href=#{post_path @post}]", false
end
it "does not contain link to new comment" do
assert_select "a[href=#{new_comment_path(post_id: @post.id)}]", false
end
end
end