2016-07-21 04:44:18 -04:00
|
|
|
require './spec/simplecov_env'
|
|
|
|
SimpleCovEnv.start!
|
2015-07-13 22:41:47 -04:00
|
|
|
|
2014-09-19 09:39:56 -04:00
|
|
|
ENV["RAILS_ENV"] ||= 'test'
|
2015-07-13 22:41:47 -04:00
|
|
|
|
2014-09-19 09:39:56 -04:00
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
2014-03-13 18:34:12 -04:00
|
|
|
require 'rspec/rails'
|
2015-06-10 01:38:36 -04:00
|
|
|
require 'shoulda/matchers'
|
2014-03-13 18:34:12 -04:00
|
|
|
require 'sidekiq/testing/inline'
|
2015-11-12 04:52:20 -05:00
|
|
|
require 'rspec/retry'
|
2016-05-21 21:17:15 -04:00
|
|
|
|
2016-08-29 12:18:59 -04:00
|
|
|
if ENV['CI'] && !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
|
|
|
|
|
|
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
|
|
# in spec/support/ and its subdirectories.
|
2015-04-25 14:33:04 -04:00
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
2014-03-13 18:34:12 -04:00
|
|
|
|
|
|
|
RSpec.configure do |config|
|
2014-06-06 13:55:49 -04:00
|
|
|
config.use_transactional_fixtures = false
|
|
|
|
config.use_instantiated_fixtures = false
|
2014-03-13 18:34:12 -04:00
|
|
|
config.mock_with :rspec
|
|
|
|
|
2015-11-12 04:52:20 -05:00
|
|
|
config.verbose_retry = true
|
|
|
|
config.display_try_failure_messages = true
|
|
|
|
|
2016-11-09 13:40:25 -05:00
|
|
|
config.include Devise::Test::ControllerHelpers, type: :controller
|
|
|
|
config.include Devise::Test::ControllerHelpers, type: :view
|
2016-07-12 11:15:08 -04:00
|
|
|
config.include Warden::Test::Helpers, type: :request
|
2016-11-09 13:40:25 -05:00
|
|
|
config.include LoginHelpers, type: :feature
|
|
|
|
config.include SearchHelpers, type: :feature
|
2015-06-29 15:04:57 -04:00
|
|
|
config.include StubConfiguration
|
2016-11-30 03:29:27 -05:00
|
|
|
config.include EmailHelpers, type: :mailer
|
2014-03-13 18:34:12 -04:00
|
|
|
config.include TestEnv
|
2015-11-30 04:21:10 -05:00
|
|
|
config.include ActiveJob::TestHelper
|
2016-08-19 04:57:25 -04:00
|
|
|
config.include ActiveSupport::Testing::TimeHelpers
|
2015-09-09 07:37:50 -04:00
|
|
|
config.include StubGitlabCalls
|
|
|
|
config.include StubGitlabData
|
2015-06-28 20:16:10 -04:00
|
|
|
|
2015-02-12 10:48:53 -05:00
|
|
|
config.infer_spec_type_from_file_location!
|
2015-02-12 13:17:35 -05:00
|
|
|
config.raise_errors_for_deprecations!
|
2014-03-13 18:34:12 -04:00
|
|
|
|
|
|
|
config.before(:suite) do
|
2014-07-31 12:24:53 -04:00
|
|
|
TestEnv.init
|
2014-03-13 18:34:12 -04:00
|
|
|
end
|
2016-08-09 17:08:33 -04:00
|
|
|
|
|
|
|
config.around(:each, :caching) do |example|
|
|
|
|
caching_store = Rails.cache
|
|
|
|
Rails.cache = ActiveSupport::Cache::MemoryStore.new if example.metadata[:caching]
|
|
|
|
example.run
|
|
|
|
Rails.cache = caching_store
|
|
|
|
end
|
2016-10-25 10:01:24 -04:00
|
|
|
|
|
|
|
config.around(:each, :redis) do |example|
|
|
|
|
Gitlab::Redis.with(&:flushall)
|
2016-11-24 09:07:44 -05:00
|
|
|
Sidekiq.redis(&:flushall)
|
|
|
|
|
2016-10-25 10:01:24 -04:00
|
|
|
example.run
|
2016-11-24 09:07:44 -05:00
|
|
|
|
2016-10-25 10:01:24 -04:00
|
|
|
Gitlab::Redis.with(&:flushall)
|
2016-11-24 09:07:44 -05:00
|
|
|
Sidekiq.redis(&:flushall)
|
2016-10-25 10:01:24 -04:00
|
|
|
end
|
2013-03-26 05:13:30 -04:00
|
|
|
end
|
2015-03-27 15:31:16 -04:00
|
|
|
|
2015-10-05 06:02:26 -04:00
|
|
|
FactoryGirl::SyntaxRunner.class_eval do
|
|
|
|
include RSpec::Mocks::ExampleMethods
|
|
|
|
end
|
|
|
|
|
2015-03-27 15:31:16 -04:00
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|