debian-mirror-gitlab/spec/features/unsubscribe_links_spec.rb

80 lines
2.7 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Unsubscribe links', :sidekiq_might_not_need_inline do
2016-09-29 09:46:39 +05:30
include Warden::Test::Helpers
let(:recipient) { create(:user) }
let(:author) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, :public) }
2017-08-17 22:00:37 +05:30
let(:params) { { title: 'A bug!', description: 'Fix it!', assignees: [recipient] } }
2016-09-29 09:46:39 +05:30
let(:issue) { Issues::CreateService.new(project, author, params).execute }
let(:mail) { ActionMailer::Base.deliveries.last }
let(:body) { Capybara::Node::Simple.new(mail.default_part_body.to_s) }
2016-10-01 15:18:49 +05:30
let(:header_link) { mail.header['List-Unsubscribe'].to_s[1..-2] } # Strip angle brackets
2016-09-29 09:46:39 +05:30
let(:body_link) { body.find_link('unsubscribe')['href'] }
before do
perform_enqueued_jobs { issue }
end
context 'when logged out' do
context 'when visiting the link from the body' do
it 'shows the unsubscribe confirmation page and redirects to root path when confirming' do
visit body_link
expect(current_path).to eq unsubscribe_sent_notification_path(SentNotification.last)
2017-09-10 17:25:29 +05:30
expect(page).to have_text(%(Unsubscribe from issue))
expect(page).to have_text(%(Are you sure you want to unsubscribe from the issue: #{issue.title} (#{issue.to_reference})?))
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(recipient, project)).to be_truthy
2016-09-29 09:46:39 +05:30
click_link 'Unsubscribe'
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(recipient, project)).to be_falsey
2016-09-29 09:46:39 +05:30
expect(current_path).to eq new_user_session_path
end
it 'shows the unsubscribe confirmation page and redirects to root path when canceling' do
visit body_link
expect(current_path).to eq unsubscribe_sent_notification_path(SentNotification.last)
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(recipient, project)).to be_truthy
2016-09-29 09:46:39 +05:30
click_link 'Cancel'
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(recipient, project)).to be_truthy
2016-09-29 09:46:39 +05:30
expect(current_path).to eq new_user_session_path
end
end
it 'unsubscribes from the issue when visiting the link from the header' do
visit header_link
expect(page).to have_text('unsubscribed')
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(recipient, project)).to be_falsey
2016-09-29 09:46:39 +05:30
end
end
context 'when logged in' do
2017-09-10 17:25:29 +05:30
before do
sign_in(recipient)
end
2016-09-29 09:46:39 +05:30
it 'unsubscribes from the issue when visiting the link from the email body' do
visit body_link
expect(page).to have_text('unsubscribed')
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(recipient, project)).to be_falsey
2016-09-29 09:46:39 +05:30
end
it 'unsubscribes from the issue when visiting the link from the header' do
visit header_link
expect(page).to have_text('unsubscribed')
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(recipient, project)).to be_falsey
2016-09-29 09:46:39 +05:30
end
end
end