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:
Diffstat (limited to 'spec/requests/organizations/settings_controller_spec.rb')
-rw-r--r--spec/requests/organizations/settings_controller_spec.rb54
1 files changed, 54 insertions, 0 deletions
diff --git a/spec/requests/organizations/settings_controller_spec.rb b/spec/requests/organizations/settings_controller_spec.rb
new file mode 100644
index 00000000000..77048b04b0c
--- /dev/null
+++ b/spec/requests/organizations/settings_controller_spec.rb
@@ -0,0 +1,54 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Organizations::SettingsController, feature_category: :cell do
+ let_it_be(:organization) { create(:organization) }
+
+ describe 'GET #general' do
+ subject(:gitlab_request) { get general_settings_organization_path(organization) }
+
+ context 'when the user is not signed in' do
+ it_behaves_like 'organization - redirects to sign in page'
+
+ context 'when `ui_for_organizations` feature flag is disabled' do
+ before do
+ stub_feature_flags(ui_for_organizations: false)
+ end
+
+ it_behaves_like 'organization - redirects to sign in page'
+ end
+ end
+
+ context 'when the user is signed in' do
+ before do
+ sign_in(user)
+ end
+
+ context 'with no association to an organization' do
+ let_it_be(:user) { create(:user) }
+
+ it_behaves_like 'organization - not found response'
+ it_behaves_like 'organization - action disabled by `ui_for_organizations` feature flag'
+ end
+
+ context 'as as admin', :enable_admin_mode do
+ let_it_be(:user) { create(:admin) }
+
+ it_behaves_like 'organization - successful response'
+ it_behaves_like 'organization - action disabled by `ui_for_organizations` feature flag'
+ end
+
+ context 'as an organization user' do
+ let_it_be(:user) { create :user }
+
+ before do
+ create :organization_user, organization: organization, user: user
+ end
+
+ it_behaves_like 'organization - not found response'
+ it_behaves_like 'organization - action disabled by `ui_for_organizations` feature flag'
+ end
+ end
+ end
+end