2013-02-05 14:16:51 -05:00
|
|
|
if ENV['COVERAGE']
|
|
|
|
require 'simplecov'
|
|
|
|
SimpleCov.start
|
|
|
|
end
|
|
|
|
|
|
|
|
require 'rubygems'
|
2014-02-11 21:32:56 -05:00
|
|
|
require 'rbtrace'
|
2017-08-09 17:50:59 -04:00
|
|
|
|
|
|
|
# Loading more in this block will cause your tests to run faster. However,
|
|
|
|
# if you change any configuration or code from libraries loaded here, you'll
|
|
|
|
# need to restart spork for it take effect.
|
|
|
|
require 'fabrication'
|
|
|
|
require 'mocha/api'
|
|
|
|
require 'certified'
|
|
|
|
require 'webmock/rspec'
|
|
|
|
|
|
|
|
ENV["RAILS_ENV"] ||= 'test'
|
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
|
|
|
require 'rspec/rails'
|
|
|
|
require 'shoulda'
|
|
|
|
require 'sidekiq/testing'
|
|
|
|
|
|
|
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
|
|
# in spec/support/ and its subdirectories.
|
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
|
|
|
Dir[Rails.root.join("spec/fabricators/*.rb")].each { |f| require f }
|
|
|
|
|
|
|
|
# Require plugin helpers at plugin/[plugin]/spec/plugin_helper.rb (includes symlinked plugins).
|
|
|
|
if ENV['LOAD_PLUGINS'] == "1"
|
|
|
|
Dir[Rails.root.join("plugins/*/spec/plugin_helper.rb")].each do |f|
|
|
|
|
require f
|
2017-05-18 22:38:36 -04:00
|
|
|
end
|
2017-08-09 17:50:59 -04:00
|
|
|
end
|
2017-05-18 22:38:36 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
# let's not run seed_fu every test
|
|
|
|
SeedFu.quiet = true if SeedFu.respond_to? :quiet
|
2014-05-22 03:37:02 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
SiteSetting.automatically_download_gravatars = false
|
2014-12-15 16:10:27 -05:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
SeedFu.seed
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
RSpec.configure do |config|
|
|
|
|
config.fail_fast = ENV['RSPEC_FAIL_FAST'] == "1"
|
|
|
|
config.include Helpers
|
|
|
|
config.include MessageBus
|
|
|
|
config.include RSpecHtmlMatchers
|
|
|
|
config.include IntegrationHelpers, type: :request
|
|
|
|
config.mock_framework = :mocha
|
|
|
|
config.order = 'random'
|
|
|
|
config.infer_spec_type_from_file_location!
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
|
|
# examples within a transaction, remove the following line or assign false
|
|
|
|
# instead of true.
|
|
|
|
config.use_transactional_fixtures = true
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
# If true, the base class of anonymous controllers will be inferred
|
|
|
|
# automatically. This will be the default behavior in future versions of
|
|
|
|
# rspec-rails.
|
|
|
|
config.infer_base_class_for_anonymous_controllers = true
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
config.before(:suite) do
|
|
|
|
Sidekiq.error_handlers.clear
|
2014-07-31 04:46:02 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
# Ugly, but needed until we have a user creator
|
|
|
|
User.skip_callback(:create, :after, :ensure_in_trust_level_group)
|
2014-06-16 20:46:30 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
DiscoursePluginRegistry.clear if ENV['LOAD_PLUGINS'] != "1"
|
|
|
|
Discourse.current_user_provider = TestCurrentUserProvider
|
2014-03-28 01:34:20 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
SiteSetting.refresh!
|
2014-03-28 01:34:20 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
# Rebase defaults
|
|
|
|
#
|
|
|
|
# We nuke the DB storage provider from site settings, so need to yank out the existing settings
|
|
|
|
# and pretend they are default.
|
|
|
|
# There are a bunch of settings that are seeded, they must be loaded as defaults
|
|
|
|
SiteSetting.current.each do |k, v|
|
|
|
|
# skip setting defaults for settings that are in unloaded plugins
|
|
|
|
SiteSetting.defaults.set_regardless_of_locale(k, v) if SiteSetting.respond_to? k
|
|
|
|
end
|
2014-03-28 01:34:20 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
require_dependency 'site_settings/local_process_provider'
|
|
|
|
SiteSetting.provider = SiteSettings::LocalProcessProvider.new
|
2017-05-26 03:19:09 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
WebMock.disable_net_connect!
|
|
|
|
end
|
2014-03-28 01:34:20 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
class DiscourseMockRedis < MockRedis
|
|
|
|
def without_namespace
|
|
|
|
self
|
|
|
|
end
|
2015-03-08 22:14:02 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
def delete_prefixed(prefix)
|
|
|
|
keys("#{prefix}*").each { |k| del(k) }
|
2015-03-08 22:14:02 -04:00
|
|
|
end
|
2017-08-09 17:50:59 -04:00
|
|
|
end
|
2015-03-08 22:14:02 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
config.before :each do |x|
|
|
|
|
# TODO not sure about this, we could use a mock redis implementation here:
|
|
|
|
# this gives us really clean "flush" semantics, howere the side-effect is that
|
|
|
|
# we are no longer using a clean redis implementation, a preferable solution may
|
|
|
|
# be simply flushing before tests, trouble is that redis may be reused with dev
|
|
|
|
# so that would mean the dev would act weird
|
|
|
|
#
|
|
|
|
# perf benefit seems low (shaves 20 secs off a 4 minute test suite)
|
|
|
|
#
|
|
|
|
# $redis = DiscourseMockRedis.new
|
|
|
|
#
|
|
|
|
PostActionNotifier.disable
|
|
|
|
SearchIndexer.disable
|
|
|
|
UserActionCreator.disable
|
|
|
|
NotificationEmailer.disable
|
|
|
|
|
|
|
|
SiteSetting.provider.all.each do |setting|
|
|
|
|
SiteSetting.remove_override!(setting.name)
|
2013-05-13 21:59:55 -04:00
|
|
|
end
|
2017-08-09 17:50:59 -04:00
|
|
|
SiteSetting.defaults.site_locale = SiteSettings::DefaultsProvider::DEFAULT_LOCALE
|
2013-05-13 21:59:55 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
# very expensive IO operations
|
|
|
|
SiteSetting.automatically_download_gravatars = false
|
2013-10-09 00:10:37 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
Discourse.clear_readonly!
|
2017-08-31 00:06:56 -04:00
|
|
|
Sidekiq::Worker.clear_all
|
2013-10-09 00:10:37 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
I18n.locale = :en
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
class TestCurrentUserProvider < Auth::DefaultCurrentUserProvider
|
|
|
|
def log_on_user(user, session, cookies)
|
|
|
|
session[:current_user_id] = user.id
|
|
|
|
super
|
2017-07-24 09:17:42 -04:00
|
|
|
end
|
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
def log_off_user(session, cookies)
|
|
|
|
session[:current_user_id] = nil
|
|
|
|
super
|
2017-02-15 10:58:18 -05:00
|
|
|
end
|
2017-08-09 17:50:59 -04:00
|
|
|
end
|
2017-02-15 10:58:18 -05:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class TrackTimeStub
|
|
|
|
def self.stubbed
|
|
|
|
false
|
2017-07-24 09:17:42 -04:00
|
|
|
end
|
2017-08-09 17:50:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def freeze_time(now = Time.now)
|
|
|
|
datetime = DateTime.parse(now.to_s)
|
|
|
|
time = Time.parse(now.to_s)
|
2017-07-24 09:17:42 -04:00
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
if block_given?
|
|
|
|
raise "nested freeze time not supported" if TrackTimeStub.stubbed
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
DateTime.stubs(:now).returns(datetime)
|
|
|
|
Time.stubs(:now).returns(time)
|
|
|
|
Date.stubs(:today).returns(datetime.to_date)
|
|
|
|
TrackTimeStub.stubs(:stubbed).returns(true)
|
|
|
|
|
|
|
|
if block_given?
|
|
|
|
begin
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
unfreeze_time
|
|
|
|
end
|
2014-07-14 11:34:23 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
def unfreeze_time
|
|
|
|
DateTime.unstub(:now)
|
|
|
|
Time.unstub(:now)
|
|
|
|
Date.unstub(:today)
|
|
|
|
TrackTimeStub.unstub(:stubbed)
|
2013-05-16 01:03:03 -04:00
|
|
|
end
|
|
|
|
|
2017-08-09 17:50:59 -04:00
|
|
|
def file_from_fixtures(filename, directory = "images")
|
|
|
|
FileUtils.mkdir_p("#{Rails.root}/tmp/spec") unless Dir.exists?("#{Rails.root}/tmp/spec")
|
|
|
|
FileUtils.cp("#{Rails.root}/spec/fixtures/#{directory}/#{filename}", "#{Rails.root}/tmp/spec/#{filename}")
|
|
|
|
File.new("#{Rails.root}/tmp/spec/#{filename}")
|
|
|
|
end
|