summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
commit8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781 (patch)
treea77e7fe7a93de11213032ed4ab1f33a3db51b738 /spec/spec_helper.rb
parent00b35af3db1abfe813a778f643dad221aad51fca (diff)
downloadgitlab-ce-8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781.tar.gz
Add latest changes from gitlab-org/gitlab@13-1-stable-ee
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb51
1 files changed, 27 insertions, 24 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 80dfa20a2f1..84de5119505 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -139,6 +139,7 @@ RSpec.configure do |config|
config.include IdempotentWorkerHelper, type: :worker
config.include RailsHelpers
config.include SidekiqMiddleware
+ config.include StubActionCableConnection, type: :channel
if ENV['CI'] || ENV['RETRIES']
# This includes the first try, i.e. tests will be run 4 times before failing.
@@ -172,37 +173,39 @@ RSpec.configure do |config|
end
config.before do |example|
- # Enable all features by default for testing
- allow(Feature).to receive(:enabled?) { true }
+ if example.metadata.fetch(:stub_feature_flags, true)
+ # Enable all features by default for testing
+ stub_all_feature_flags
+
+ # The following can be removed when we remove the staged rollout strategy
+ # and we can just enable it using instance wide settings
+ # (ie. ApplicationSetting#auto_devops_enabled)
+ stub_feature_flags(force_autodevops_on_by_default: false)
+
+ # The following can be removed once Vue Issuable Sidebar
+ # is feature-complete and can be made default in place
+ # of older sidebar.
+ # See https://gitlab.com/groups/gitlab-org/-/epics/1863
+ stub_feature_flags(vue_issuable_sidebar: false)
+ stub_feature_flags(vue_issuable_epic_sidebar: false)
+
+ enable_rugged = example.metadata[:enable_rugged].present?
+
+ # Disable Rugged features by default
+ Gitlab::Git::RuggedImpl::Repository::FEATURE_FLAGS.each do |flag|
+ stub_feature_flags(flag => enable_rugged)
+ end
- enable_rugged = example.metadata[:enable_rugged].present?
+ # Disable the usage of file_identifier_hash by default until it is ready
+ # See https://gitlab.com/gitlab-org/gitlab/-/issues/33867
+ stub_feature_flags(file_identifier_hash: false)
- # Disable Rugged features by default
- Gitlab::Git::RuggedImpl::Repository::FEATURE_FLAGS.each do |flag|
- stub_feature_flags(flag => enable_rugged)
+ allow(Gitlab::GitalyClient).to receive(:can_use_disk?).and_return(enable_rugged)
end
- allow(Gitlab::GitalyClient).to receive(:can_use_disk?).and_return(enable_rugged)
-
- # The following can be removed when we remove the staged rollout strategy
- # and we can just enable it using instance wide settings
- # (ie. ApplicationSetting#auto_devops_enabled)
- stub_feature_flags(force_autodevops_on_by_default: false)
-
# Enable Marginalia feature for all specs in the test suite.
allow(Gitlab::Marginalia).to receive(:cached_feature_enabled?).and_return(true)
- # The following can be removed once Vue Issuable Sidebar
- # is feature-complete and can be made default in place
- # of older sidebar.
- # See https://gitlab.com/groups/gitlab-org/-/epics/1863
- stub_feature_flags(vue_issuable_sidebar: false)
- stub_feature_flags(vue_issuable_epic_sidebar: false)
-
- allow(Feature).to receive(:enabled?)
- .with(/\Apromo_\w+\z/, default_enabled: false)
- .and_return(false)
-
# Stub these calls due to being expensive operations
# It can be reenabled for specific tests via:
#