-
-
Notifications
You must be signed in to change notification settings - Fork 514
/
Copy pathspec_helper.rb
79 lines (59 loc) · 2.04 KB
/
spec_helper.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# frozen_string_literal: true
require "bundler/setup"
begin
require "debug/prelude"
rescue LoadError
end
require "sentry-ruby"
require "sentry/test_helper"
require 'rspec/retry'
require 'simplecov'
SimpleCov.start do
project_name "sentry-rails"
root File.join(__FILE__, "../../../")
coverage_dir File.join(__FILE__, "../../coverage")
end
if ENV["CI"]
require 'simplecov-cobertura'
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
end
# this already requires the sdk
require "dummy/test_rails_app/app"
# need to be required after rails is loaded from the above
require "rspec/rails"
DUMMY_DSN = 'http://12345:[email protected]/sentry/42'
Dir["#{__dir__}/support/**/*.rb"].each { |file| require file }
RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
config.example_status_persistence_file_path = ".rspec_status"
# Disable RSpec exposing methods globally on `Module` and `main`
config.disable_monkey_patching!
config.expect_with :rspec do |c|
c.syntax = :expect
end
config.include(Sentry::TestHelper)
config.after :each do
Sentry::Rails::Tracing.unsubscribe_tracing_events
expect(Sentry::Rails::Tracing.subscribed_tracing_events).to be_empty
Sentry::Rails::Tracing.remove_active_support_notifications_patch
if defined?(Sentry::Rails::ActiveJobExtensions::SentryReporter)
Sentry::Rails::ActiveJobExtensions::SentryReporter.detach_retry_stopped_subscriber
end
reset_sentry_globals!
end
config.before :each do
# Make sure we reset the env in case something leaks in
ENV.delete('SENTRY_DSN')
ENV.delete('SENTRY_CURRENT_ENV')
ENV.delete('SENTRY_ENVIRONMENT')
ENV.delete('SENTRY_RELEASE')
ENV.delete('RAILS_ENV')
ENV.delete('RACK_ENV')
end
config.include ActiveJob::TestHelper, type: :job
end
def reload_send_event_job
Sentry.send(:remove_const, "SendEventJob") if defined?(Sentry::SendEventJob)
expect(defined?(Sentry::SendEventJob)).to eq(nil)
load File.join(Dir.pwd, "app", "jobs", "sentry", "send_event_job.rb")
end