Retrospring/spec/controllers/ajax/inbox_controller_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

205 lines
5.6 KiB
Ruby
Raw Normal View History

2020-04-30 10:57:39 -07:00
# coding: utf-8
# frozen_string_literal: true
require "rails_helper"
describe Ajax::InboxController, :ajax_controller, type: :controller do
describe "#remove" do
let(:params) do
{
2024-01-27 04:31:36 -08:00
id: inbox_entry_id,
2020-04-30 10:57:39 -07:00
}
end
2024-01-27 04:31:36 -08:00
subject { delete(:remove, params:) }
2020-04-30 10:57:39 -07:00
context "when user is signed in" do
before(:each) { sign_in(user) }
context "when inbox entry exists" do
let(:inbox_entry) { FactoryBot.create(:inbox_entry, user: inbox_user) }
2020-04-30 10:57:39 -07:00
let(:inbox_entry_id) { inbox_entry.id }
# ensure the inbox entry exists
before(:each) { inbox_entry }
context "when inbox entry belongs to the current user" do
let(:inbox_user) { user }
let(:expected_response) do
{
"success" => true,
2024-01-27 04:31:36 -08:00
"status" => "okay",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
it "removes the inbox entry" do
expect { subject }.to(change { user.inbox_entries.count }.by(-1))
expect { InboxEntry.find(inbox_entry.id) }.to raise_error(ActiveRecord::RecordNotFound)
2020-04-30 10:57:39 -07:00
end
include_examples "returns the expected response"
end
context "when inbox entry does not belong to the current user" do
let(:inbox_user) { FactoryBot.create(:user) }
let(:expected_response) do
{
"success" => false,
2024-01-27 04:31:36 -08:00
"status" => "fail",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
it "does not remove the inbox entry" do
expect { subject }.not_to(change { InboxEntry.count })
expect { InboxEntry.find(inbox_entry.id) }.not_to raise_error
2020-04-30 10:57:39 -07:00
end
include_examples "returns the expected response"
end
end
context "when inbox entry does not exist" do
let(:inbox_entry_id) { "Nein!" }
let(:expected_response) do
{
"success" => false,
2024-01-27 04:31:36 -08:00
"status" => "not_found",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
include_examples "returns the expected response"
end
end
context "when user is not signed in" do
let(:inbox_entry_id) { "HACKED" }
let(:expected_response) do
{
"success" => false,
2024-01-27 04:31:36 -08:00
"status" => "not_found",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
include_examples "returns the expected response"
end
end
describe "#remove_all" do
subject { delete(:remove_all) }
context "when user is signed in" do
before(:each) { sign_in(user) }
let(:expected_response) do
{
"success" => true,
2024-01-27 04:31:36 -08:00
"status" => "okay",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
include_examples "returns the expected response"
context "when user has some inbox entries" do
let(:some_other_user) { FactoryBot.create(:user) }
before do
2024-01-27 04:31:36 -08:00
10.times { FactoryBot.create(:inbox_entry, user:) }
10.times { FactoryBot.create(:inbox_entry, user: some_other_user) }
2020-04-30 10:57:39 -07:00
end
it "deletes all the entries from the user's inbox" do
expect { subject }.to(change { [InboxEntry.count, user.inbox_entries.count] }.from([20, 10]).to([10, 0]))
2020-04-30 10:57:39 -07:00
end
include_examples "returns the expected response"
end
end
context "when user is not signed in" do
let(:expected_response) do
{
"success" => false,
2024-01-27 04:31:36 -08:00
"status" => "err",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
include_examples "returns the expected response"
end
end
describe "#remove_all_author" do
let(:params) do
{
2024-01-27 04:31:36 -08:00
author:,
2020-04-30 10:57:39 -07:00
}
end
2024-01-27 04:31:36 -08:00
subject { delete(:remove_all_author, params:) }
2020-04-30 10:57:39 -07:00
context "when user is signed in" do
before(:each) { sign_in(user) }
let(:author) { user.screen_name }
let(:expected_response) do
{
"success" => true,
2024-01-27 04:31:36 -08:00
"status" => "okay",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
include_examples "returns the expected response"
context "when user has some inbox entries" do
let(:some_other_user) { FactoryBot.create(:user) }
let(:author) { some_other_user.screen_name }
before do
normal_question = FactoryBot.create(:question, user: some_other_user, author_is_anonymous: false)
anon_question = FactoryBot.create(:question, user: some_other_user, author_is_anonymous: true)
2024-01-27 04:31:36 -08:00
10.times { FactoryBot.create(:inbox_entry, user:) }
3.times { FactoryBot.create(:inbox_entry, user:, question: normal_question) }
2.times { FactoryBot.create(:inbox_entry, user:, question: anon_question) }
2020-04-30 10:57:39 -07:00
end
it "deletes all the entries asked by some other user which are not anonymous from the user's inbox" do
expect { subject }.to(change { user.inbox_entries.count }.from(15).to(12))
2020-04-30 10:57:39 -07:00
end
include_examples "returns the expected response"
end
context "when author is unknown" do
let(:author) { "schmarrn" }
let(:expected_response) do
{
"success" => false,
2024-01-27 04:31:36 -08:00
"status" => "err",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
include_examples "returns the expected response"
end
end
context "when user is not signed in" do
let(:author) { "hackerman1337" }
let(:expected_response) do
{
"success" => false,
2024-01-27 04:31:36 -08:00
"status" => "err",
"message" => anything,
2020-04-30 10:57:39 -07:00
}
end
include_examples "returns the expected response"
end
end
end