Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-04-12 00:57:18 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-04-12 02:50:26 +0300
commitbee28e1785ad7844bd518c19106beee7d8a4c560 (patch)
tree8f5d96c3c79c6b560d97952ed6059bdc74080669 /spec/controllers
parent93a10f17e0c84074580eaf1b101af2a0fffd19ed (diff)
Requires user to be signed in when changing notification settings
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/groups/notification_settings_controller_spec.rb17
-rw-r--r--spec/controllers/projects/notification_settings_controller_spec.rb31
2 files changed, 48 insertions, 0 deletions
diff --git a/spec/controllers/groups/notification_settings_controller_spec.rb b/spec/controllers/groups/notification_settings_controller_spec.rb
new file mode 100644
index 00000000000..3572535d61c
--- /dev/null
+++ b/spec/controllers/groups/notification_settings_controller_spec.rb
@@ -0,0 +1,17 @@
+require 'spec_helper'
+
+describe Groups::NotificationSettingsController do
+ let(:group) { create(:group) }
+
+ describe '#update' do
+ context 'when not authorized' do
+ it 'redirects to sign in page' do
+ put :update,
+ group_id: group.to_param,
+ notification_setting: { level: NotificationSetting.levels[:participating] }
+
+ expect(response).to redirect_to(new_user_session_path)
+ end
+ end
+ end
+end
diff --git a/spec/controllers/projects/notification_settings_controller_spec.rb b/spec/controllers/projects/notification_settings_controller_spec.rb
new file mode 100644
index 00000000000..7e32a75b812
--- /dev/null
+++ b/spec/controllers/projects/notification_settings_controller_spec.rb
@@ -0,0 +1,31 @@
+require 'spec_helper'
+
+describe Projects::NotificationSettingsController do
+ let(:project) { create(:empty_project) }
+
+ describe '#create' do
+ context 'when not authorized' do
+ it 'redirects to sign in page' do
+ post :create,
+ namespace_id: project.namespace.to_param,
+ project_id: project.to_param,
+ notification_setting: { level: NotificationSetting.levels[:participating] }
+
+ expect(response).to redirect_to(new_user_session_path)
+ end
+ end
+ end
+
+ describe '#update' do
+ context 'when not authorized' do
+ it 'redirects to sign in page' do
+ put :update,
+ namespace_id: project.namespace.to_param,
+ project_id: project.to_param,
+ notification_setting: { level: NotificationSetting.levels[:participating] }
+
+ expect(response).to redirect_to(new_user_session_path)
+ end
+ end
+ end
+end