-
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix #454] Fix false positives for `Performance/BigDecimalWithNumeric…
…Argument` Fixes #454. This PR fixes false positives for `Performance/BigDecimalWithNumericArgument` when using BigDecimal 3.1+. The bad and good examples for this cop are reversed between BigDecimal 3.0 and 3.1. Since BigDecimal 3.1 is the default gem in Ruby 3.1, this PR reverses the bad and good examples when targeting Ruby 3.1+. So, the goal of this PR is to address many cases where the meaning was entirely reversed. To avoid introducing excessive complexity related to version dependencies, detection is disabled for Ruby 3.0 and below. Ideally, a solution that prioritizes the BigDecimal version would be best in the future, but this PR does not take that into account.
- Loading branch information
Showing
2 changed files
with
153 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
254 changes: 132 additions & 122 deletions
254
spec/rubocop/cop/performance/big_decimal_with_numeric_argument_spec.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,139 @@ | ||
# frozen_string_literal: true | ||
|
||
RSpec.describe RuboCop::Cop::Performance::BigDecimalWithNumericArgument, :config do | ||
it 'registers an offense and corrects when using `BigDecimal` with integer' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal(1) | ||
^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('1') | ||
RUBY | ||
context 'when Ruby >= 3.1', :ruby31 do | ||
it 'registers an offense and corrects when using `BigDecimal` with string' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal('1') | ||
^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(1) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense and corrects when using `String#to_d`' do | ||
expect_offense(<<~RUBY) | ||
'1'.to_d | ||
^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(1) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense and corrects when using `BigDecimal` with float string' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal('1.5', exception: true) | ||
^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(1.5, exception: true) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense and corrects when using float `String#to_d`' do | ||
expect_offense(<<~RUBY) | ||
'1.5'.to_d(exception: true) | ||
^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(1.5, exception: true) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `BigDecimal` with float string and precision' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal('3.14', 1) | ||
^^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(3.14, 1) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using float `String#to_d` with precision' do | ||
expect_offense(<<~RUBY) | ||
'3.14'.to_d(1) | ||
^^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(3.14, 1) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `BigDecimal` with float string and non-literal precision' do | ||
expect_offense(<<~RUBY) | ||
precision = 1 | ||
BigDecimal('3.14', precision) | ||
^^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
precision = 1 | ||
BigDecimal(3.14, precision) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using float `String#to_d` with non-literal precision' do | ||
expect_offense(<<~RUBY) | ||
precision = 1 | ||
'3.14'.to_d(precision) | ||
^^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
precision = 1 | ||
BigDecimal(3.14, precision) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `BigDecimal` with float string, precision, and a keyword argument' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal('3.14', 1, exception: true) | ||
^^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(3.14, 1, exception: true) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using float `String#to_d` with precision and a keyword argument' do | ||
expect_offense(<<~RUBY) | ||
'3.14'.to_d(1, exception: true) | ||
^^^^^^ Convert string literal to numeric and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal(3.14, 1, exception: true) | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense when using `BigDecimal` with integer' do | ||
expect_no_offenses(<<~RUBY) | ||
BigDecimal(1) | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense when using `Integer#to_d`' do | ||
expect_no_offenses(<<~RUBY) | ||
1.to_d | ||
RUBY | ||
end | ||
end | ||
|
||
it 'registers an offense and corrects when using `Integer#to_d`' do | ||
expect_offense(<<~RUBY) | ||
1.to_d | ||
^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('1') | ||
RUBY | ||
end | ||
|
||
it 'registers an offense and corrects when using `BigDecimal` with float' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal(1.5, exception: true) | ||
^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('1.5', exception: true) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense and corrects when using `Float#to_d`' do | ||
expect_offense(<<~RUBY) | ||
1.5.to_d(exception: true) | ||
^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('1.5', exception: true) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `BigDecimal` with float and precision' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal(3.14, 1) | ||
^^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('3.14', 1) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `Float#to_d` with precision' do | ||
expect_offense(<<~RUBY) | ||
3.14.to_d(1) | ||
^^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('3.14', 1) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `BigDecimal` with float and non-literal precision' do | ||
expect_offense(<<~RUBY) | ||
precision = 1 | ||
BigDecimal(3.14, precision) | ||
^^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
precision = 1 | ||
BigDecimal('3.14', precision) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `Float#to_d` with non-literal precision' do | ||
expect_offense(<<~RUBY) | ||
precision = 1 | ||
3.14.to_d(precision) | ||
^^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
precision = 1 | ||
BigDecimal('3.14', precision) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `BigDecimal` with float, precision, and a keyword argument' do | ||
expect_offense(<<~RUBY) | ||
BigDecimal(3.14, 1, exception: true) | ||
^^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('3.14', 1, exception: true) | ||
RUBY | ||
end | ||
|
||
it 'registers an offense when using `Float#to_d` with precision and a keyword argument' do | ||
expect_offense(<<~RUBY) | ||
3.14.to_d(1, exception: true) | ||
^^^^ Convert numeric literal to string and pass it to `BigDecimal`. | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
BigDecimal('3.14', 1, exception: true) | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense when using `BigDecimal` with string' do | ||
expect_no_offenses(<<~RUBY) | ||
BigDecimal('1') | ||
RUBY | ||
end | ||
|
||
it 'does not register an offense when using `String#to_d`' do | ||
expect_no_offenses(<<~RUBY) | ||
'1'.to_d | ||
RUBY | ||
context 'when Ruby <= 3.0', :ruby30, unsupported_on: :prism do | ||
it 'does not register an offense and corrects when using `BigDecimal` with string' do | ||
expect_no_offenses(<<~RUBY) | ||
BigDecimal('1') | ||
RUBY | ||
end | ||
end | ||
end |