2022-03-27 05:04:04 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "rails_helper"
|
|
|
|
|
|
|
|
describe NotificationsController do
|
2023-03-10 12:16:52 -08:00
|
|
|
describe "#index" do
|
|
|
|
subject { get :index, params: { type: :new } }
|
2022-03-27 05:04:04 -07:00
|
|
|
|
2023-03-10 12:16:52 -08:00
|
|
|
let(:user) { FactoryBot.create(:user) }
|
2022-03-27 05:04:04 -07:00
|
|
|
|
2023-03-10 12:16:52 -08:00
|
|
|
before do
|
|
|
|
sign_in(user)
|
2022-03-27 05:04:04 -07:00
|
|
|
end
|
|
|
|
|
2023-03-10 12:16:52 -08:00
|
|
|
context "user has no notifications" do
|
|
|
|
it "should show an empty list" do
|
|
|
|
subject
|
|
|
|
expect(response).to render_template(:index)
|
|
|
|
|
|
|
|
expect(controller.instance_variable_get(:@notifications)).to be_empty
|
|
|
|
end
|
2022-03-27 05:04:04 -07:00
|
|
|
end
|
2023-01-24 06:54:41 -08:00
|
|
|
|
2023-03-10 12:16:52 -08:00
|
|
|
context "user has notifications" do
|
|
|
|
let(:other_user) { FactoryBot.create(:user) }
|
|
|
|
let(:another_user) { FactoryBot.create(:user) }
|
|
|
|
let(:question) { FactoryBot.create(:question, user: user) }
|
|
|
|
let!(:answer) { FactoryBot.create(:answer, question: question, user: other_user) }
|
|
|
|
let!(:subscription) { Subscription.create(user: user, answer: answer) }
|
|
|
|
let!(:comment) { FactoryBot.create(:comment, answer: answer, user: other_user) }
|
|
|
|
|
|
|
|
it "should show a list of notifications" do
|
|
|
|
subject
|
|
|
|
expect(response).to render_template(:index)
|
|
|
|
expect(controller.instance_variable_get(:@notifications)).to have_attributes(size: 2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "marks notifications as read" do
|
|
|
|
expect { subject }.to change { Notification.for(user).where(new: true).count }.from(2).to(0)
|
|
|
|
end
|
2023-01-24 06:54:41 -08:00
|
|
|
end
|
2022-03-27 05:04:04 -07:00
|
|
|
end
|
2023-03-10 12:36:43 -08:00
|
|
|
|
|
|
|
describe "#read" do
|
|
|
|
subject { post :read, format: :turbo_stream }
|
|
|
|
|
|
|
|
let(:recipient) { FactoryBot.create(:user) }
|
|
|
|
let(:notification_count) { rand(8..20) }
|
|
|
|
|
|
|
|
context "user has some unread notifications" do
|
|
|
|
before do
|
|
|
|
notification_count.times do
|
|
|
|
FactoryBot.create(:user).follow(recipient)
|
|
|
|
end
|
|
|
|
|
|
|
|
sign_in(recipient)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "marks all notifications as read" do
|
|
|
|
expect { subject }.to change { Notification.where(recipient:, new: true).count }.from(notification_count).to(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-03-27 05:04:04 -07:00
|
|
|
end
|