2023-05-05 06:58:19 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "rails_helper"
|
|
|
|
|
2023-10-29 13:24:52 -07:00
|
|
|
describe CommentsController, type: :controller do
|
2023-05-05 06:58:19 -07:00
|
|
|
describe "#index" do
|
|
|
|
shared_examples_for "succeeds" do
|
|
|
|
it "returns the correct response" do
|
|
|
|
subject
|
2023-10-29 13:34:13 -07:00
|
|
|
expect(response).to have_rendered :index
|
2023-05-05 06:58:19 -07:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
expect(assigns(:comments)).to eq(comments)
|
|
|
|
expect(assigns(:comments)).to_not include(unrelated_comment)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { get :index, params: { username: answer_author.screen_name, id: answer.id } }
|
|
|
|
|
|
|
|
let(:answer_author) { FactoryBot.create(:user) }
|
|
|
|
let(:answer) { FactoryBot.create(:answer, user: answer_author) }
|
|
|
|
let(:commenter) { FactoryBot.create(:user) }
|
|
|
|
let!(:comments) { FactoryBot.create_list(:comment, num_comments, answer:, user: commenter) }
|
|
|
|
let!(:unrelated_comment) do
|
|
|
|
FactoryBot.create(:comment,
|
|
|
|
answer: FactoryBot.create(:answer, user: FactoryBot.create(:user)),
|
|
|
|
user: commenter,)
|
|
|
|
end
|
|
|
|
|
|
|
|
[0, 1, 5, 30].each do |num_comments|
|
|
|
|
context "#{num_comments} comments" do
|
|
|
|
let(:num_comments) { num_comments }
|
|
|
|
|
|
|
|
include_examples "succeeds"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|