Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gems/activerecord-gitlab/spec/active_record/gitlab_patches/rescue_from_spec.rb')
-rw-r--r--gems/activerecord-gitlab/spec/active_record/gitlab_patches/rescue_from_spec.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/gems/activerecord-gitlab/spec/active_record/gitlab_patches/rescue_from_spec.rb b/gems/activerecord-gitlab/spec/active_record/gitlab_patches/rescue_from_spec.rb
new file mode 100644
index 00000000000..c1537c3bd90
--- /dev/null
+++ b/gems/activerecord-gitlab/spec/active_record/gitlab_patches/rescue_from_spec.rb
@@ -0,0 +1,31 @@
+# frozen_string_literal: true
+
+RSpec.describe ActiveRecord::GitlabPatches::RescueFrom, :without_sqlite3 do
+ let(:model_with_rescue_from) do
+ Class.new(ActiveRecord::Base) do
+ rescue_from ActiveRecord::ConnectionNotEstablished, with: :handle_exception
+
+ class << self
+ def handle_exception(exception); end
+ end
+ end
+ end
+
+ let(:model_without_rescue_from) do
+ Class.new(ActiveRecord::Base)
+ end
+
+ it 'triggers rescue_from' do
+ stub_const('ModelWithRescueFrom', model_with_rescue_from)
+
+ expect(model_with_rescue_from).to receive(:handle_exception)
+
+ expect { model_with_rescue_from.all.load }.not_to raise_error
+ end
+
+ it 'does not trigger rescue_from' do
+ stub_const('ModelWithoutRescueFrom', model_without_rescue_from)
+
+ expect { model_without_rescue_from.all.load }.to raise_error(ActiveRecord::ConnectionNotEstablished)
+ end
+end