docbrown/spec/requests/feedback_messages_create_spec.rb

88 lines
2.6 KiB
Ruby

require "rails_helper"
RSpec.describe "feedback_messages", type: :request do
describe "POST /feedback_messages" do
# rubocop:disable RSpec/AnyInstance
def verify_captcha_and_slack_ping
allow_any_instance_of(FeedbackMessagesController).
to receive(:recaptcha_verified?).and_return(true)
allow(SlackBot).to receive(:ping).and_return(true)
end
# rubocop:enable RSpec/AnyInstance
valid_abuse_report_params = {
feedback_message: {
feedback_type: "abuse-reports",
category: "rude or vulgar",
reported_url: "https://dev.to",
message: "this was vulgar"
}
}
context "with valid params" do
before do
verify_captcha_and_slack_ping
post "/feedback_messages", params: valid_abuse_report_params
end
it "creates feedback message with filled form" do
expect(FeedbackMessage.last.message).to eq(
valid_abuse_report_params[:feedback_message][:message],
)
end
it "send a Slack message when completed" do
expect(SlackBot).to have_received(:ping)
end
end
context "with invalid recaptcha" do
it "rerenders page" do
post "/feedback_messages", params: valid_abuse_report_params
expect(response.body).to include("Make sure the forms are filled")
end
end
context "when a logged in user submits a report" do
let(:user) { create(:user) }
before do
verify_captcha_and_slack_ping
sign_in(user)
post "/feedback_messages", params: valid_abuse_report_params
end
it "adds the logged in user as the reporter" do
expect(FeedbackMessage.find_by(reporter_id: user.id)).not_to eq(nil)
end
it "send a Slack message when completed" do
expect(SlackBot).to have_received(:ping)
end
end
context "when a signed out users submits a report" do
before do
verify_captcha_and_slack_ping
post "/feedback_messages", params: valid_abuse_report_params
end
it "does not add any user as the reporter" do
expect(FeedbackMessage.last.reporter_id).to eq(nil)
end
it "send a Slack message when completed" do
expect(SlackBot).to have_received(:ping)
end
it "redirects to /feedback_message and continues to the index page" do
expect(response).to redirect_to "/feedback_messages"
end
it "redirects and continues to the index page with the correct message" do
follow_redirect!
expect(response.body).to include "Thank you for your report."
end
end
end
end