Files
grecia/spec/system/notifications_spec.rb
Javi Martín fb639a376d Move notification model tests to the right files
These tests were testing model methods, but were inside files for system
tests.

We're moving them now because these tests use the `open_last_email`
method, and we're looking for places where using this method might
result in a flaky test when used inside a system test.
2025-03-26 16:27:08 +01:00

189 lines
5.3 KiB
Ruby

require "rails_helper"
describe "Notifications" do
let(:user) { create(:user) }
before { login_as(user) }
scenario "View all" do
read1 = create(:notification, :read, user: user)
read2 = create(:notification, :read, user: user)
unread = create(:notification, user: user)
visit root_path
click_notifications_icon
click_link "Read"
expect(page).to have_css(".notification", count: 2)
expect(page).to have_content(read1.notifiable_title)
expect(page).to have_content(read2.notifiable_title)
expect(page).not_to have_content(unread.notifiable_title)
end
scenario "View unread" do
unread1 = create(:notification, user: user)
unread2 = create(:notification, user: user)
read = create(:notification, :read, user: user)
visit root_path
click_notifications_icon
click_link "Unread"
expect(page).to have_css(".notification", count: 2)
expect(page).to have_content(unread1.notifiable_title)
expect(page).to have_content(unread2.notifiable_title)
expect(page).not_to have_content(read.notifiable_title)
end
scenario "View single notification" do
proposal = create(:proposal)
create(:notification, user: user, notifiable: proposal)
visit root_path
click_notifications_icon
first(".notification a").click
expect(page).to have_current_path(proposal_path(proposal))
visit notifications_path
expect(page).to have_css ".notification", count: 0
visit read_notifications_path
expect(page).to have_css ".notification", count: 1
end
scenario "Mark as read" do
notification1 = create(:notification, user: user)
notification2 = create(:notification, user: user)
visit root_path
click_notifications_icon
within("#notification_#{notification1.id}") do
click_link "Mark as read"
end
expect(page).to have_css(".notification", count: 1)
expect(page).to have_content(notification2.notifiable_title)
expect(page).not_to have_content(notification1.notifiable_title)
end
scenario "Mark all as read" do
2.times { create(:notification, user: user) }
visit root_path
click_notifications_icon
expect(page).to have_css(".notification", count: 2)
click_link "Mark all as read"
expect(page).to have_css(".notification", count: 0)
end
scenario "Mark as unread" do
notification1 = create(:notification, :read, user: user)
notification2 = create(:notification, user: user)
visit root_path
click_notifications_icon
click_link "Read"
expect(page).to have_css(".notification", count: 1)
within("#notification_#{notification1.id}") do
click_link "Mark as unread"
end
expect(page).to have_css(".notification", count: 0)
visit notifications_path
expect(page).to have_css(".notification", count: 2)
expect(page).to have_content(notification1.notifiable_title)
expect(page).to have_content(notification2.notifiable_title)
end
scenario "Bell" do
create(:notification, user: user)
visit root_path
within("#notifications") do
expect(page).to have_css(".unread-notifications")
end
click_notifications_icon
first(".notification a").click
within("#notifications") do
expect(page).not_to have_css(".unread-notifications")
end
end
scenario "No notifications" do
visit root_path
click_notifications_icon
expect(page).to have_content "You don't have new notifications."
end
scenario "User not logged in" do
logout
visit root_path
expect(page).not_to have_css("#notifications")
end
scenario "Notification's notifiable model no longer includes Notifiable module" do
create(:notification, :for_poll_question, user: user)
visit root_path
click_notifications_icon
expect(page).to have_content("This resource is not available anymore.", count: 1)
end
context "Admin Notifications" do
let(:admin_notification) do
create(:admin_notification, title: "Notification title",
body: "Notification body",
link: "https://www.external.link.dev/",
segment_recipient: "all_users")
end
let!(:notification) do
create(:notification, user: user, notifiable: admin_notification)
end
before do
login_as user
end
scenario "With external link" do
visit notifications_path
expect(page).to have_content("Notification title")
expect(page).to have_content("Notification body")
first("#notification_#{notification.id} a").click
expect(page).to have_current_path "https://www.external.link.dev/", url: true
end
scenario "With internal link" do
admin_notification.update!(link: "/debates")
visit notifications_path
expect(page).to have_content("Notification title")
expect(page).to have_content("Notification body")
first("#notification_#{notification.id} a").click
expect(page).to have_current_path "/debates"
end
scenario "Without a link" do
admin_notification.update!(link: nil)
visit notifications_path
expect(page).to have_content "Notification title"
expect(page).to have_content "Notification body"
expect(page).not_to have_link href: notification_path(notification), visible: :all
end
end
end