dawarich/spec/requests/notifications_spec.rb
2025-11-19 21:40:43 +01:00

71 lines
1.7 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe '/notifications', type: :request do
context 'when user is not logged in' do
it 'redirects to the login page' do
get notifications_url
expect(response).to redirect_to(new_user_session_url)
end
end
context 'when user is logged in' do
let(:user) { create(:user) }
before do
sign_in user
end
describe 'GET /index' do
it 'renders a successful response' do
get notifications_url
expect(response).to be_successful
end
end
describe 'GET /show' do
let(:notification) { create(:notification, user:) }
it 'renders a successful response' do
get notification_url(notification)
expect(response).to be_successful
end
end
describe 'DELETE /destroy' do
let!(:notification) { create(:notification, user:) }
it 'destroys the requested notification' do
expect do
delete notification_url(notification)
end.to change(Notification, :count).by(-1)
end
it 'redirects to the notifications list' do
delete notification_url(notification)
expect(response).to redirect_to(notifications_url)
end
end
describe 'POST /mark_as_read' do
let!(:notification) { create(:notification, user:, read_at: nil) }
it 'marks all notifications as read' do
post mark_notifications_as_read_url
expect(notification.reload.read_at).to be_present
end
it 'redirects to the notifications list' do
post mark_notifications_as_read_url
expect(response).to redirect_to(notifications_url)
end
end
end
end