2019-10-06 23:07:19 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-11-02 10:08:52 -05:00
|
|
|
# $" is $LOADED_FEATURES, but RuboCop didn't like it
|
|
|
|
if $".include?(File.expand_path('fast_spec_helper.rb', __dir__))
|
|
|
|
warn 'Detected fast_spec_helper is loaded first than spec_helper.'
|
|
|
|
warn 'If running test files using both spec_helper and fast_spec_helper,'
|
|
|
|
warn 'make sure test file with spec_helper is loaded first.'
|
|
|
|
abort 'Aborting...'
|
|
|
|
end
|
|
|
|
|
2020-12-02 16:09:44 -05:00
|
|
|
# Enable deprecation warnings by default and make them more visible
|
|
|
|
# to developers to ease upgrading to newer Ruby versions.
|
|
|
|
Warning[:deprecated] = true unless ENV.key?('SILENCE_DEPRECATIONS')
|
|
|
|
|
2020-11-23 07:09:11 -05:00
|
|
|
require './spec/deprecation_toolkit_env'
|
|
|
|
|
2016-07-21 04:44:18 -04:00
|
|
|
require './spec/simplecov_env'
|
|
|
|
SimpleCovEnv.start!
|
2015-07-13 22:41:47 -04:00
|
|
|
|
2020-10-28 11:08:49 -04:00
|
|
|
require './spec/crystalball_env'
|
|
|
|
CrystalballEnv.start!
|
|
|
|
|
2017-09-14 11:22:49 -04:00
|
|
|
ENV["RAILS_ENV"] = 'test'
|
2017-01-21 19:11:19 -05:00
|
|
|
ENV["IN_MEMORY_APPLICATION_SETTINGS"] = 'true'
|
2019-07-02 12:38:23 -04:00
|
|
|
ENV["RSPEC_ALLOW_INVALID_URLS"] = 'true'
|
2015-07-13 22:41:47 -04:00
|
|
|
|
2018-07-02 06:43:06 -04:00
|
|
|
require File.expand_path('../config/environment', __dir__)
|
2020-05-14 11:08:14 -04:00
|
|
|
|
|
|
|
require 'rspec/mocks'
|
2014-03-13 18:34:12 -04:00
|
|
|
require 'rspec/rails'
|
2015-11-12 04:52:20 -05:00
|
|
|
require 'rspec/retry'
|
2017-08-10 13:23:56 -04:00
|
|
|
require 'rspec-parameterized'
|
2020-05-14 11:08:14 -04:00
|
|
|
require 'shoulda/matchers'
|
2019-10-06 05:06:13 -04:00
|
|
|
require 'test_prof/recipes/rspec/let_it_be'
|
2020-08-25 08:04:30 -04:00
|
|
|
require 'test_prof/factory_default'
|
2016-05-21 21:17:15 -04:00
|
|
|
|
2017-04-13 08:24:35 -04:00
|
|
|
rspec_profiling_is_configured =
|
2017-05-19 06:15:49 -04:00
|
|
|
ENV['RSPEC_PROFILING_POSTGRES_URL'].present? ||
|
2017-04-13 08:24:35 -04:00
|
|
|
ENV['RSPEC_PROFILING']
|
|
|
|
branch_can_be_profiled =
|
2017-04-28 14:05:39 -04:00
|
|
|
(ENV['CI_COMMIT_REF_NAME'] == 'master' ||
|
|
|
|
ENV['CI_COMMIT_REF_NAME'] =~ /rspec-profile/)
|
2017-04-13 08:24:35 -04:00
|
|
|
|
|
|
|
if rspec_profiling_is_configured && (!ENV.key?('CI') || branch_can_be_profiled)
|
2017-01-26 16:31:43 -05:00
|
|
|
require 'rspec_profiling/rspec'
|
|
|
|
end
|
|
|
|
|
2019-01-14 13:22:54 -05:00
|
|
|
if ENV['CI'] && ENV['KNAPSACK_GENERATE_REPORT'] && !ENV['NO_KNAPSACK']
|
2016-06-08 05:43:13 -04:00
|
|
|
require 'knapsack'
|
|
|
|
Knapsack::Adapters::RSpecAdapter.bind
|
|
|
|
end
|
2014-03-13 18:34:12 -04:00
|
|
|
|
2017-02-13 06:19:28 -05:00
|
|
|
# require rainbow gem String monkeypatch, so we can test SystemChecks
|
|
|
|
require 'rainbow/ext/string'
|
2018-08-14 19:39:59 -04:00
|
|
|
Rainbow.enabled = false
|
2017-02-13 06:19:28 -05:00
|
|
|
|
2019-09-13 09:26:31 -04:00
|
|
|
require_relative('../ee/spec/spec_helper') if Gitlab.ee?
|
|
|
|
|
2014-03-13 18:34:12 -04:00
|
|
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
|
|
# in spec/support/ and its subdirectories.
|
2018-03-29 05:47:54 -04:00
|
|
|
# Requires helpers, and shared contexts/examples first since they're used in other support files
|
2018-10-04 20:40:07 -04:00
|
|
|
|
|
|
|
# Load these first since they may be required by other helpers
|
|
|
|
require Rails.root.join("spec/support/helpers/git_helpers.rb")
|
2020-11-13 16:09:31 -05:00
|
|
|
require Rails.root.join("spec/support/helpers/stub_requests.rb")
|
2018-10-04 20:40:07 -04:00
|
|
|
|
|
|
|
# Then the rest
|
2020-09-02 11:10:54 -04:00
|
|
|
Dir[Rails.root.join("spec/support/helpers/*.rb")].sort.each { |f| require f }
|
|
|
|
Dir[Rails.root.join("spec/support/shared_contexts/*.rb")].sort.each { |f| require f }
|
|
|
|
Dir[Rails.root.join("spec/support/shared_examples/*.rb")].sort.each { |f| require f }
|
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].sort.each { |f| require f }
|
2014-03-13 18:34:12 -04:00
|
|
|
|
2019-05-22 08:16:49 -04:00
|
|
|
quality_level = Quality::TestLevel.new
|
|
|
|
|
2014-03-13 18:34:12 -04:00
|
|
|
RSpec.configure do |config|
|
2019-08-01 03:55:42 -04:00
|
|
|
config.filter_run focus: true
|
|
|
|
config.run_all_when_everything_filtered = true
|
|
|
|
|
2019-04-26 11:49:19 -04:00
|
|
|
config.use_transactional_fixtures = true
|
2014-06-06 13:55:49 -04:00
|
|
|
config.use_instantiated_fixtures = false
|
2018-08-16 05:08:38 -04:00
|
|
|
config.fixture_path = Rails.root
|
2014-03-13 18:34:12 -04:00
|
|
|
|
2015-11-12 04:52:20 -05:00
|
|
|
config.verbose_retry = true
|
|
|
|
config.display_try_failure_messages = true
|
|
|
|
|
2015-02-12 10:48:53 -05:00
|
|
|
config.infer_spec_type_from_file_location!
|
2020-09-22 11:09:37 -04:00
|
|
|
|
|
|
|
# Add :full_backtrace tag to an example if full_backtrace output is desired
|
|
|
|
config.before(:each, full_backtrace: true) do |example|
|
|
|
|
config.full_backtrace = true
|
|
|
|
end
|
2017-03-08 18:41:02 -05:00
|
|
|
|
2019-11-18 07:06:03 -05:00
|
|
|
unless ENV['CI']
|
|
|
|
# Re-run failures locally with `--only-failures`
|
|
|
|
config.example_status_persistence_file_path = './spec/examples.txt'
|
|
|
|
end
|
|
|
|
|
2019-05-22 08:16:49 -04:00
|
|
|
config.define_derived_metadata(file_path: %r{(ee)?/spec/.+_spec\.rb\z}) do |metadata|
|
2017-09-19 10:50:26 -04:00
|
|
|
location = metadata[:location]
|
|
|
|
|
2019-05-22 08:16:49 -04:00
|
|
|
metadata[:level] = quality_level.level_for(location)
|
2017-09-19 10:50:26 -04:00
|
|
|
metadata[:api] = true if location =~ %r{/spec/requests/api/}
|
|
|
|
|
2020-03-11 17:09:19 -04:00
|
|
|
# Do not overwrite migration if it's already set
|
|
|
|
unless metadata.key?(:migration)
|
|
|
|
metadata[:migration] = true if metadata[:level] == :migration
|
|
|
|
end
|
|
|
|
|
2020-03-17 17:09:16 -04:00
|
|
|
# Do not overwrite schema if it's already set
|
|
|
|
unless metadata.key?(:schema)
|
|
|
|
metadata[:schema] = :latest if quality_level.background_migration?(location)
|
|
|
|
end
|
|
|
|
|
2020-03-11 17:09:19 -04:00
|
|
|
# Do not overwrite type if it's already set
|
|
|
|
unless metadata.key?(:type)
|
|
|
|
match = location.match(%r{/spec/([^/]+)/})
|
|
|
|
metadata[:type] = match[1].singularize.to_sym if match
|
|
|
|
end
|
2020-04-14 14:09:54 -04:00
|
|
|
|
|
|
|
# Admin controller specs get auto admin mode enabled since they are
|
|
|
|
# protected by the 'EnforcesAdminAuthentication' concern
|
|
|
|
metadata[:enable_admin_mode] = true if location =~ %r{(ee)?/spec/controllers/admin/}
|
2017-03-08 18:41:02 -05:00
|
|
|
end
|
|
|
|
|
2020-08-31 11:10:41 -04:00
|
|
|
config.define_derived_metadata(file_path: %r{(ee)?/spec/.+_docs\.rb\z}) do |metadata|
|
|
|
|
metadata[:type] = :feature
|
|
|
|
end
|
|
|
|
|
2019-03-28 09:18:50 -04:00
|
|
|
config.include LicenseHelpers
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include ActiveJob::TestHelper
|
|
|
|
config.include ActiveSupport::Testing::TimeHelpers
|
|
|
|
config.include CycleAnalyticsHelpers
|
|
|
|
config.include FactoryBot::Syntax::Methods
|
|
|
|
config.include FixtureHelpers
|
2020-04-01 11:07:45 -04:00
|
|
|
config.include NonExistingRecordsHelpers
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include GitlabRoutingHelper
|
2019-10-18 17:06:37 -04:00
|
|
|
config.include StubExperiments
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include StubGitlabCalls
|
|
|
|
config.include StubGitlabData
|
2020-09-01 05:10:28 -04:00
|
|
|
config.include NextFoundInstanceOf
|
2019-10-11 17:05:59 -04:00
|
|
|
config.include NextInstanceOf
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include TestEnv
|
2020-11-19 16:09:07 -05:00
|
|
|
config.include FileReadHelpers
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include Devise::Test::ControllerHelpers, type: :controller
|
2020-12-16 10:10:18 -05:00
|
|
|
config.include Devise::Test::ControllerHelpers, type: :view
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include Devise::Test::IntegrationHelpers, type: :feature
|
2020-12-16 10:10:18 -05:00
|
|
|
config.include Devise::Test::IntegrationHelpers, type: :request
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include LoginHelpers, type: :feature
|
|
|
|
config.include SearchHelpers, type: :feature
|
2019-04-18 06:23:12 -04:00
|
|
|
config.include WaitHelpers, type: :feature
|
2020-09-18 14:10:26 -04:00
|
|
|
config.include WaitForRequests, type: :feature
|
2018-03-29 05:47:54 -04:00
|
|
|
config.include EmailHelpers, :mailer, type: :mailer
|
|
|
|
config.include Warden::Test::Helpers, type: :request
|
|
|
|
config.include Gitlab::Routing, type: :routing
|
|
|
|
config.include ApiHelpers, :api
|
|
|
|
config.include CookieHelper, :js
|
|
|
|
config.include InputHelper, :js
|
|
|
|
config.include SelectionHelper, :js
|
|
|
|
config.include InspectRequests, :js
|
|
|
|
config.include LiveDebugger, :js
|
|
|
|
config.include MigrationsHelpers, :migration
|
2018-05-04 04:02:08 -04:00
|
|
|
config.include RedisHelpers
|
2018-06-14 09:33:35 -04:00
|
|
|
config.include Rails.application.routes.url_helpers, type: :routing
|
2019-03-27 08:45:00 -04:00
|
|
|
config.include PolicyHelpers, type: :policy
|
2019-07-12 06:44:17 -04:00
|
|
|
config.include MemoryUsageHelper
|
2019-06-13 06:44:41 -04:00
|
|
|
config.include ExpectRequestWithStatus, type: :request
|
2020-02-19 13:09:10 -05:00
|
|
|
config.include IdempotentWorkerHelper, type: :worker
|
2019-09-03 21:57:25 -04:00
|
|
|
config.include RailsHelpers
|
2020-04-21 11:21:10 -04:00
|
|
|
config.include SidekiqMiddleware
|
2020-06-01 14:08:07 -04:00
|
|
|
config.include StubActionCableConnection, type: :channel
|
2014-03-13 18:34:12 -04:00
|
|
|
|
2020-08-11 11:10:08 -04:00
|
|
|
include StubFeatureFlags
|
|
|
|
|
2020-02-05 16:09:02 -05:00
|
|
|
if ENV['CI'] || ENV['RETRIES']
|
2019-04-10 05:19:42 -04:00
|
|
|
# This includes the first try, i.e. tests will be run 4 times before failing.
|
2020-02-05 16:09:02 -05:00
|
|
|
config.default_retry_count = ENV.fetch('RETRIES', 3).to_i + 1
|
2020-02-07 04:08:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
if ENV['FLAKY_RSPEC_GENERATE_REPORT']
|
2017-10-04 07:24:51 -04:00
|
|
|
config.reporter.register_listener(
|
|
|
|
RspecFlaky::Listener.new,
|
|
|
|
:example_passed,
|
|
|
|
:dump_summary)
|
2017-07-19 13:51:59 -04:00
|
|
|
end
|
|
|
|
|
2014-03-13 18:34:12 -04:00
|
|
|
config.before(:suite) do
|
2017-08-11 06:36:03 -04:00
|
|
|
Timecop.safe_mode = true
|
2014-07-31 12:24:53 -04:00
|
|
|
TestEnv.init
|
2020-07-02 05:09:00 -04:00
|
|
|
|
|
|
|
# Reload all feature flags definitions
|
|
|
|
Feature.register_definitions
|
2020-08-11 11:10:08 -04:00
|
|
|
|
|
|
|
# Enable all features by default for testing
|
|
|
|
# Reset any changes in after hook.
|
|
|
|
stub_all_feature_flags
|
2014-03-13 18:34:12 -04:00
|
|
|
end
|
2016-08-09 17:08:33 -04:00
|
|
|
|
2018-03-27 22:04:57 -04:00
|
|
|
config.after(:all) do
|
|
|
|
TestEnv.clean_test_path
|
|
|
|
end
|
|
|
|
|
2020-02-05 16:09:02 -05:00
|
|
|
# We can't use an `around` hook here because the wrapping transaction
|
|
|
|
# is not yet opened at the time that is triggered
|
|
|
|
config.prepend_before do
|
|
|
|
Gitlab::Database.set_open_transactions_baseline
|
|
|
|
end
|
|
|
|
|
|
|
|
config.append_after do
|
|
|
|
Gitlab::Database.reset_open_transactions_baseline
|
|
|
|
end
|
|
|
|
|
2019-02-21 16:07:26 -05:00
|
|
|
config.before do |example|
|
2020-05-29 14:08:26 -04:00
|
|
|
if example.metadata.fetch(:stub_feature_flags, true)
|
|
|
|
# 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)
|
2020-08-26 08:10:53 -04:00
|
|
|
|
2020-09-11 20:08:44 -04:00
|
|
|
# Merge request widget GraphQL requests are disabled in the tests
|
|
|
|
# for now whilst we migrate as much as we can over the GraphQL
|
|
|
|
stub_feature_flags(merge_request_widget_graphql: false)
|
2020-05-29 14:08:26 -04:00
|
|
|
|
2020-10-16 14:09:04 -04:00
|
|
|
# Using FortiAuthenticator as OTP provider is disabled by default in
|
|
|
|
# tests, until we introduce it in user settings
|
|
|
|
stub_feature_flags(forti_authenticator: false)
|
|
|
|
|
2020-12-10 07:09:43 -05:00
|
|
|
# Using FortiToken Cloud as OTP provider is disabled by default in
|
|
|
|
# tests, until we introduce it in user settings
|
|
|
|
stub_feature_flags(forti_token_cloud: false)
|
|
|
|
|
2020-05-29 14:08:26 -04:00
|
|
|
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
|
|
|
|
|
2020-06-01 11:08:16 -04:00
|
|
|
# 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)
|
|
|
|
|
2020-11-19 13:09:13 -05:00
|
|
|
stub_feature_flags(unified_diff_components: false)
|
|
|
|
|
2020-05-29 14:08:26 -04:00
|
|
|
allow(Gitlab::GitalyClient).to receive(:can_use_disk?).and_return(enable_rugged)
|
2020-08-11 11:10:08 -04:00
|
|
|
else
|
|
|
|
unstub_all_feature_flags
|
2019-02-21 16:07:26 -05:00
|
|
|
end
|
|
|
|
|
2019-12-13 16:07:41 -05:00
|
|
|
# Enable Marginalia feature for all specs in the test suite.
|
2020-10-14 08:08:58 -04:00
|
|
|
Gitlab::Marginalia.enabled = true
|
2019-12-13 16:07:41 -05:00
|
|
|
|
2019-09-18 10:02:45 -04:00
|
|
|
# Stub these calls due to being expensive operations
|
2019-09-03 02:19:21 -04:00
|
|
|
# It can be reenabled for specific tests via:
|
|
|
|
#
|
2020-02-05 16:09:02 -05:00
|
|
|
# expect(Gitlab::Git::KeepAround).to receive(:execute).and_call_original
|
2019-09-18 10:02:45 -04:00
|
|
|
allow(Gitlab::Git::KeepAround).to receive(:execute)
|
2019-09-03 02:19:21 -04:00
|
|
|
|
2020-09-21 08:09:34 -04:00
|
|
|
# Stub these calls due to being expensive operations
|
|
|
|
# It can be reenabled for specific tests via:
|
|
|
|
#
|
|
|
|
# expect(Gitlab::JobWaiter).to receive(:wait).and_call_original
|
|
|
|
allow_any_instance_of(Gitlab::JobWaiter).to receive(:wait)
|
|
|
|
|
2020-05-06 17:10:00 -04:00
|
|
|
Gitlab::ProcessMemoryCache.cache_backend.clear
|
2020-03-11 14:09:23 -04:00
|
|
|
|
2020-02-05 16:09:02 -05:00
|
|
|
Sidekiq::Worker.clear_all
|
2019-09-26 08:06:00 -04:00
|
|
|
|
2020-04-01 08:08:00 -04:00
|
|
|
# Administrators have to re-authenticate in order to access administrative
|
|
|
|
# functionality when feature flag :user_mode_in_session is active. Any spec
|
|
|
|
# that requires administrative access can use the tag :enable_admin_mode
|
|
|
|
# to avoid the second auth step (provided the user is already an admin):
|
|
|
|
#
|
|
|
|
# context 'some test that requires admin mode', :enable_admin_mode do ... end
|
|
|
|
#
|
2021-01-08 10:10:26 -05:00
|
|
|
# Some specs do get admin mode enabled automatically (e.g. `spec/controllers/admin`).
|
|
|
|
# In this case, specs that need to test both admin mode states can use the
|
|
|
|
# :do_not_mock_admin_mode tag to disable auto admin mode.
|
|
|
|
#
|
2020-04-01 08:08:00 -04:00
|
|
|
# See also spec/support/helpers/admin_mode_helpers.rb
|
2020-04-14 14:09:54 -04:00
|
|
|
if example.metadata[:enable_admin_mode] && !example.metadata[:do_not_mock_admin_mode]
|
2019-09-26 08:06:00 -04:00
|
|
|
allow_any_instance_of(Gitlab::Auth::CurrentUserMode).to receive(:admin_mode?) do |current_user_mode|
|
|
|
|
current_user_mode.send(:user)&.admin?
|
|
|
|
end
|
|
|
|
end
|
2017-07-12 08:45:42 -04:00
|
|
|
end
|
|
|
|
|
2019-08-02 05:54:40 -04:00
|
|
|
config.around(:example, :quarantine) do |example|
|
2019-01-14 13:06:32 -05:00
|
|
|
# Skip tests in quarantine unless we explicitly focus on them.
|
2019-08-02 05:54:40 -04:00
|
|
|
example.run if config.inclusion_filter[:quarantine]
|
2019-01-14 13:06:32 -05:00
|
|
|
end
|
|
|
|
|
2020-02-03 07:09:07 -05:00
|
|
|
config.around(:example, :request_store) do |example|
|
2020-04-24 08:10:16 -04:00
|
|
|
Gitlab::WithRequestStore.with_request_store { example.run }
|
2017-06-09 13:12:51 -04:00
|
|
|
end
|
|
|
|
|
2020-12-03 10:09:46 -05:00
|
|
|
config.before(:example, :request_store) do
|
|
|
|
# Clear request store before actually starting the spec (the
|
|
|
|
# `around` above will have the request store enabled for all
|
|
|
|
# `before` blocks)
|
|
|
|
RequestStore.clear!
|
|
|
|
end
|
|
|
|
|
2020-02-05 16:09:02 -05:00
|
|
|
config.around do |example|
|
|
|
|
# Wrap each example in it's own context to make sure the contexts don't
|
|
|
|
# leak
|
|
|
|
Labkit::Context.with_context { example.run }
|
2018-06-05 10:17:04 -04:00
|
|
|
end
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
config.around do |example|
|
|
|
|
with_sidekiq_server_middleware do |chain|
|
|
|
|
Gitlab::SidekiqMiddleware.server_configurator(
|
|
|
|
metrics: false, # The metrics don't go anywhere in tests
|
|
|
|
arguments_logger: false, # We're not logging the regular messages for inline jobs
|
2020-04-24 08:10:16 -04:00
|
|
|
memory_killer: false # This is not a thing we want to do inline in tests
|
2020-04-21 11:21:10 -04:00
|
|
|
).call(chain)
|
|
|
|
chain.add DisableQueryLimit
|
2020-04-24 08:10:16 -04:00
|
|
|
chain.insert_after ::Gitlab::SidekiqMiddleware::RequestStoreMiddleware, IsolatedRequestStore
|
2020-04-21 11:21:10 -04:00
|
|
|
|
|
|
|
example.run
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-11 01:29:58 -05:00
|
|
|
config.after do
|
2020-02-05 16:09:02 -05:00
|
|
|
Fog.unmock! if Fog.mock?
|
2018-09-10 05:48:09 -04:00
|
|
|
Gitlab::CurrentSettings.clear_in_memory_application_settings!
|
2020-08-11 11:10:08 -04:00
|
|
|
|
|
|
|
# Reset all feature flag stubs to default for testing
|
|
|
|
stub_all_feature_flags
|
2018-09-10 05:48:09 -04:00
|
|
|
end
|
|
|
|
|
2017-08-02 11:13:27 -04:00
|
|
|
config.before(:example, :mailer) do
|
|
|
|
reset_delivered_emails!
|
|
|
|
end
|
|
|
|
|
2018-05-09 01:29:30 -04:00
|
|
|
config.before(:example, :prometheus) do
|
2020-11-13 13:09:11 -05:00
|
|
|
matching_files = File.join(::Prometheus::Client.configuration.multiprocess_files_dir, "**/*.db")
|
2018-05-09 01:29:30 -04:00
|
|
|
Dir[matching_files].map { |filename| File.delete(filename) if File.file?(filename) }
|
|
|
|
|
|
|
|
Gitlab::Metrics.reset_registry!
|
|
|
|
end
|
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
# This makes sure the `ApplicationController#can?` method is stubbed with the
|
|
|
|
# original implementation for all view specs.
|
|
|
|
config.before(:each, type: :view) do
|
|
|
|
allow(view).to receive(:can?) do |*args|
|
|
|
|
Ability.allowed?(*args)
|
|
|
|
end
|
|
|
|
end
|
2020-06-26 05:08:59 -04:00
|
|
|
|
|
|
|
config.disable_monkey_patching!
|
2013-03-26 05:13:30 -04:00
|
|
|
end
|
2015-03-27 15:31:16 -04:00
|
|
|
|
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|
2017-07-24 07:19:09 -04:00
|
|
|
|
|
|
|
Shoulda::Matchers.configure do |config|
|
|
|
|
config.integrate do |with|
|
|
|
|
with.test_framework :rspec
|
|
|
|
with.library :rails
|
|
|
|
end
|
|
|
|
end
|
2017-11-30 07:58:51 -05:00
|
|
|
|
|
|
|
# Prevent Rugged from picking up local developer gitconfig.
|
|
|
|
Rugged::Settings['search_path_global'] = Rails.root.join('tmp/tests').to_s
|
2019-10-18 17:06:37 -04:00
|
|
|
|
2020-08-25 08:04:30 -04:00
|
|
|
# Initialize FactoryDefault to use create_default helper
|
|
|
|
TestProf::FactoryDefault.init
|