docbrown/spec/requests/feedback_messages_create_spec.rb
Andy Zhao 5814d0a263 Add slack notifications to notes for reports (#660)
* Remove extraneous string conversion

* Add slack message for new notes

* Move status and minimize buttons to the bottom

* Add note model spec

* Remove extraneous param for reported links
2018-09-25 14:36:54 -04:00

67 lines
1.9 KiB
Ruby

require "rails_helper"
RSpec.describe "feedback_messages", type: :request do
describe "POST /feedback_messages" do
# rubocop:disable RSpec/AnyInstance
before do
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
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 "when a logged in user submits a report" do
let(:user) { create(:user) }
before do
login_as(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 { post "/feedback_messages", params: valid_abuse_report_params }
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
end
end
end