debian-mirror-gitlab/spec/controllers/sent_notifications_controller_spec.rb

123 lines
3.6 KiB
Ruby
Raw Normal View History

require 'rails_helper'
2017-09-10 17:25:29 +05:30
describe SentNotificationsController do
2016-09-29 09:46:39 +05:30
let(:user) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project) }
2017-08-17 22:00:37 +05:30
let(:sent_notification) { create(:sent_notification, project: project, noteable: issue, recipient: user) }
2016-09-29 09:46:39 +05:30
let(:issue) do
create(:issue, project: project, author: user) do |issue|
2017-08-17 22:00:37 +05:30
issue.subscriptions.create(user: user, project: project, subscribed: true)
2016-09-29 09:46:39 +05:30
end
end
describe 'GET unsubscribe' do
context 'when the user is not logged in' do
context 'when the force param is passed' do
2017-09-10 17:25:29 +05:30
before do
2019-02-15 15:39:39 +05:30
get(:unsubscribe, params: { id: sent_notification.reply_key, force: true })
2017-09-10 17:25:29 +05:30
end
2016-09-29 09:46:39 +05:30
it 'unsubscribes the user' do
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(user, project)).to be_falsey
2016-09-29 09:46:39 +05:30
end
it 'sets the flash message' do
2017-09-10 17:25:29 +05:30
expect(controller).to set_flash[:notice].to(/unsubscribed/)
2016-09-29 09:46:39 +05:30
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
2017-09-10 17:25:29 +05:30
before do
2019-02-15 15:39:39 +05:30
get(:unsubscribe, params: { id: sent_notification.reply_key })
2017-09-10 17:25:29 +05:30
end
2016-09-29 09:46:39 +05:30
it 'does not unsubscribe the user' do
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(user, project)).to be_truthy
2016-09-29 09:46:39 +05:30
end
2016-09-29 09:46:39 +05:30
it 'does not set the flash message' do
expect(controller).not_to set_flash[:notice]
end
it 'redirects to the login page' do
expect(response).to render_template :unsubscribe
end
end
end
2016-09-29 09:46:39 +05:30
context 'when the user is logged in' do
2017-09-10 17:25:29 +05:30
before do
sign_in(user)
end
2016-09-29 09:46:39 +05:30
context 'when the ID passed does not exist' do
2017-09-10 17:25:29 +05:30
before do
2019-02-15 15:39:39 +05:30
get(:unsubscribe, params: { id: sent_notification.reply_key.reverse })
2017-09-10 17:25:29 +05:30
end
2016-09-29 09:46:39 +05:30
it 'does not unsubscribe the user' do
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(user, project)).to be_truthy
2016-09-29 09:46:39 +05:30
end
it 'does not set the flash message' do
expect(controller).not_to set_flash[:notice]
end
it 'returns a 404' do
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2016-09-29 09:46:39 +05:30
end
end
context 'when the force param is passed' do
2017-09-10 17:25:29 +05:30
before do
2019-02-15 15:39:39 +05:30
get(:unsubscribe, params: { id: sent_notification.reply_key, force: true })
2017-09-10 17:25:29 +05:30
end
2016-09-29 09:46:39 +05:30
it 'unsubscribes the user' do
2017-08-17 22:00:37 +05:30
expect(issue.subscribed?(user, project)).to be_falsey
2016-09-29 09:46:39 +05:30
end
it 'sets the flash message' do
2017-09-10 17:25:29 +05:30
expect(controller).to set_flash[:notice].to(/unsubscribed/)
2016-09-29 09:46:39 +05:30
end
it 'redirects to the issue page' do
2017-09-10 17:25:29 +05:30
expect(response)
.to redirect_to(project_issue_path(project, issue))
2016-09-29 09:46:39 +05:30
end
end
context 'when the force param is not passed' do
let(:merge_request) do
create(:merge_request, source_project: project, author: user) do |merge_request|
2017-08-17 22:00:37 +05:30
merge_request.subscriptions.create(user: user, project: project, subscribed: true)
2016-09-29 09:46:39 +05:30
end
end
2017-08-17 22:00:37 +05:30
let(:sent_notification) { create(:sent_notification, project: project, noteable: merge_request, recipient: user) }
2017-09-10 17:25:29 +05:30
before do
2019-02-15 15:39:39 +05:30
get(:unsubscribe, params: { id: sent_notification.reply_key })
2017-09-10 17:25:29 +05:30
end
2016-09-29 09:46:39 +05:30
it 'unsubscribes the user' do
2017-08-17 22:00:37 +05:30
expect(merge_request.subscribed?(user, project)).to be_falsey
2016-09-29 09:46:39 +05:30
end
2016-09-29 09:46:39 +05:30
it 'sets the flash message' do
2017-09-10 17:25:29 +05:30
expect(controller).to set_flash[:notice].to(/unsubscribed/)
2016-09-29 09:46:39 +05:30
end
2016-09-29 09:46:39 +05:30
it 'redirects to the merge request page' do
2017-09-10 17:25:29 +05:30
expect(response)
.to redirect_to(project_merge_request_path(project, merge_request))
2016-09-29 09:46:39 +05:30
end
end
end
end
end