2015-12-09 05:59:25 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe SentNotificationsController, type: :controller do
|
2016-07-13 19:56:54 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:project) { create(:empty_project) }
|
2016-11-04 14:19:08 -04:00
|
|
|
let(:sent_notification) { create(:sent_notification, project: project, noteable: issue, recipient: user) }
|
2015-12-09 05:59:25 -05:00
|
|
|
|
2016-07-13 19:56:54 -04:00
|
|
|
let(:issue) do
|
|
|
|
create(:issue, project: project, author: user) do |issue|
|
2016-10-31 22:14:53 -04:00
|
|
|
issue.subscriptions.create(user: user, project: project, subscribed: true)
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET unsubscribe' do
|
|
|
|
context 'when the user is not logged in' do
|
|
|
|
context 'when the force param is passed' do
|
|
|
|
before { get(:unsubscribe, id: sent_notification.reply_key, force: true) }
|
|
|
|
|
|
|
|
it 'unsubscribes the user' do
|
2016-11-04 14:19:08 -04:00
|
|
|
expect(issue.subscribed?(user, project)).to be_falsey
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets the flash message' do
|
|
|
|
expect(controller).to set_flash[:notice].to(/unsubscribed/).now
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to the login page' do
|
|
|
|
expect(response).to redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the force param is not passed' do
|
|
|
|
before { get(:unsubscribe, id: sent_notification.reply_key) }
|
|
|
|
|
|
|
|
it 'does not unsubscribe the user' do
|
2016-11-04 14:19:08 -04:00
|
|
|
expect(issue.subscribed?(user, project)).to be_truthy
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
2015-12-09 05:59:25 -05:00
|
|
|
|
2016-07-13 19:56:54 -04:00
|
|
|
it 'does not set the flash message' do
|
|
|
|
expect(controller).not_to set_flash[:notice]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to the login page' do
|
2016-09-16 11:08:09 -04:00
|
|
|
expect(response).to render_template :unsubscribe
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
|
|
|
end
|
2015-12-09 05:59:25 -05:00
|
|
|
end
|
|
|
|
|
2016-07-13 19:56:54 -04:00
|
|
|
context 'when the user is logged in' do
|
|
|
|
before { sign_in(user) }
|
|
|
|
|
|
|
|
context 'when the ID passed does not exist' do
|
|
|
|
before { get(:unsubscribe, id: sent_notification.reply_key.reverse) }
|
|
|
|
|
|
|
|
it 'does not unsubscribe the user' do
|
2016-11-04 14:19:08 -04:00
|
|
|
expect(issue.subscribed?(user, project)).to be_truthy
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not set the flash message' do
|
|
|
|
expect(controller).not_to set_flash[:notice]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a 404' do
|
|
|
|
expect(response).to have_http_status(:not_found)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the force param is passed' do
|
|
|
|
before { get(:unsubscribe, id: sent_notification.reply_key, force: true) }
|
|
|
|
|
|
|
|
it 'unsubscribes the user' do
|
2016-11-04 14:19:08 -04:00
|
|
|
expect(issue.subscribed?(user, project)).to be_falsey
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets the flash message' do
|
|
|
|
expect(controller).to set_flash[:notice].to(/unsubscribed/).now
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to the issue page' do
|
|
|
|
expect(response).
|
|
|
|
to redirect_to(namespace_project_issue_path(project.namespace, project, issue))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the force param is not passed' do
|
2016-09-16 11:08:09 -04:00
|
|
|
let(:merge_request) do
|
|
|
|
create(:merge_request, source_project: project, author: user) do |merge_request|
|
2016-10-31 22:14:53 -04:00
|
|
|
merge_request.subscriptions.create(user: user, project: project, subscribed: true)
|
2016-09-16 11:08:09 -04:00
|
|
|
end
|
|
|
|
end
|
2016-11-04 14:19:08 -04:00
|
|
|
let(:sent_notification) { create(:sent_notification, project: project, noteable: merge_request, recipient: user) }
|
2016-07-13 19:56:54 -04:00
|
|
|
before { get(:unsubscribe, id: sent_notification.reply_key) }
|
|
|
|
|
|
|
|
it 'unsubscribes the user' do
|
2016-11-04 14:19:08 -04:00
|
|
|
expect(merge_request.subscribed?(user, project)).to be_falsey
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
2015-12-09 05:59:25 -05:00
|
|
|
|
2016-07-13 19:56:54 -04:00
|
|
|
it 'sets the flash message' do
|
|
|
|
expect(controller).to set_flash[:notice].to(/unsubscribed/).now
|
|
|
|
end
|
2015-12-09 05:59:25 -05:00
|
|
|
|
2016-09-16 11:08:09 -04:00
|
|
|
it 'redirects to the merge request page' do
|
2016-07-13 19:56:54 -04:00
|
|
|
expect(response).
|
2016-09-16 11:08:09 -04:00
|
|
|
to redirect_to(namespace_project_merge_request_path(project.namespace, project, merge_request))
|
2016-07-13 19:56:54 -04:00
|
|
|
end
|
2015-12-09 05:59:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|