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

rescue_query_canceled_spec.rb « database « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2418b45e3bb73da97b4d23a30ce5cc38c51f8934 (plain)
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
# frozen_string_literal: true

require 'rubocop_spec_helper'
require_relative '../../../../rubocop/cop/database/rescue_query_canceled'

RSpec.describe RuboCop::Cop::Database::RescueQueryCanceled do
  it 'flags the use of ActiveRecord::QueryCanceled' do
    expect_offense(<<~CODE)
      begin
        do_something
      rescue ActiveRecord::QueryCanceled => e
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Avoid rescuing the `ActiveRecord::QueryCanceled` [...]
        try_something_else
      end
    CODE
  end

  it 'does not flag a different exception' do
    expect_no_offenses(<<~CODE)
      begin
        do_something
      rescue ActiveRecord::RecordNotFound => e
        try_something_else
      end
    CODE
  end
end