Files
growstuff/spec/views/posts/_single.html.haml_spec.rb
Logan Gingerich 10a8df47a9 Factorygirl to factorybot - fixes #1413 (#1425)
* FactoryGirl Changed to FactoryBot

file fix

changes based on comments received

Bundle Update on 2017-10-29

style update to align hash literal

added package-lock

* indentation fixes with rubocop

* name added to contributors
2017-11-01 15:03:31 +00:00

197 lines
5.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 = FactoryBot.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 = FactoryBot.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 = FactoryBot.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@post = FactoryBot.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 = FactoryBot.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 = FactoryBot.create(:comment, post: @post)
@comment2 = FactoryBot.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 = FactoryBot.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@comment = FactoryBot.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
context "when post has been edited" do
before(:each) do
@member = FactoryBot.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@post = FactoryBot.create(:post, author: @member)
@post.update(body: "I am updated")
render_post
end
it "shows edited at" do
rendered.should have_content "edited at"
end
it "shows the updated time" do
rendered.should have_content @post.updated_at
end
end
context "when comment has been edited" do
before(:each) do
@member = FactoryBot.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@post = FactoryBot.create(:post, author: @member)
@comment = FactoryBot.create(:comment, post: @post)
@comment.update(body: "I've been updated")
render partial: "comments/single", locals: { comment: @comment }
end
it "shows edited at time" do
rendered.should have_content "edited at"
end
it "shows updated time" do
rendered.should have_content @comment.updated_at
end
end
context "when post has not been edited" do
before(:each) do
@member = FactoryBot.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@post = FactoryBot.create(:post, author: @member)
@post.update(updated_at: @post.created_at)
render_post
end
it "does not show edited at" do
rendered.should_not have_content "edited at #{@post.updated_at}"
end
end
context "when comment has not been edited" do
before(:each) do
@member = FactoryBot.create(:member)
sign_in @member
controller.stub(:current_user) { @member }
@post = FactoryBot.create(:post, author: @member)
@comment = FactoryBot.create(:comment, post: @post)
@comment.update(updated_at: @comment.created_at)
render partial: "comments/single", locals: { comment: @comment }
end
it "does not show edited at" do
rendered.should_not have_content "edited at #{@comment.updated_at}"
end
end
end