Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix #669] Fix a false positive for Rails/TransactionExitStatement #674

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1 @@
* [#669](https://github.com/rubocop/rubocop-rails/issues/669): Fix a false positive for `Rails/TransactionExitStatement` when `return` is used in `rescue`. ([@koic][])
8 changes: 7 additions & 1 deletion lib/rubocop/cop/rails/transaction_exit_statement.rb
Expand Up @@ -58,7 +58,7 @@ def on_send(node)
return unless parent.block_type? && parent.body

exit_statements(parent.body).each do |statement_node|
next if statement_node.break_type? && nested_block?(statement_node)
next if in_rescue?(statement_node) || nested_block?(statement_node)

statement = statement(statement_node)
message = format(MSG, statement: statement)
Expand All @@ -79,7 +79,13 @@ def statement(statement_node)
end
end

def in_rescue?(statement_node)
statement_node.ancestors.find(&:rescue_type?)
end

def nested_block?(statement_node)
return false unless statement_node.break_type?

!statement_node.ancestors.find(&:block_type?).method?(:transaction)
end
end
Expand Down
9 changes: 9 additions & 0 deletions spec/rubocop/cop/rails/transaction_exit_statement_spec.rb
Expand Up @@ -76,6 +76,15 @@
RUBY
end

it 'does not register an offense when `return` is used in `rescue`' do
expect_no_offenses(<<~RUBY)
ApplicationRecord.transaction do
rescue
return do_something
end
RUBY
end

it 'does not register an offense when transaction block is empty' do
expect_no_offenses(<<~RUBY)
ApplicationRecord.transaction do
Expand Down