-
-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1096 from Liberatys/feature/adding-a-parens-enfor…
…cer-for-factory-bot Cop for consistent usage of parens in FactoryBot calls
- Loading branch information
Showing
9 changed files
with
474 additions
and
19 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
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
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
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
99 changes: 99 additions & 0 deletions
99
lib/rubocop/cop/rspec/factory_bot/consistent_parentheses_style.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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module RSpec | ||
module FactoryBot | ||
# Use a consistent style for parentheses in factory bot calls. | ||
# | ||
# @example | ||
# | ||
# # bad | ||
# create :user | ||
# build(:user) | ||
# create(:login) | ||
# create :login | ||
# | ||
# @example `EnforcedStyle: require_parentheses` (default) | ||
# | ||
# # good | ||
# create(:user) | ||
# create(:user) | ||
# create(:login) | ||
# build(:login) | ||
# | ||
# @example `EnforcedStyle: omit_parentheses` | ||
# | ||
# # good | ||
# create :user | ||
# build :user | ||
# create :login | ||
# create :login | ||
# | ||
class ConsistentParenthesesStyle < Base | ||
extend AutoCorrector | ||
include ConfigurableEnforcedStyle | ||
include RuboCop::RSpec::FactoryBot::Language | ||
include RuboCop::Cop::Util | ||
|
||
def self.autocorrect_incompatible_with | ||
[Style::MethodCallWithArgsParentheses] | ||
end | ||
|
||
MSG_REQUIRE_PARENS = 'Prefer method call with parentheses' | ||
MSG_OMIT_PARENS = 'Prefer method call without parentheses' | ||
|
||
FACTORY_CALLS = RuboCop::RSpec::FactoryBot::Language::METHODS | ||
|
||
# @!method factory_call(node) | ||
def_node_matcher :factory_call, <<-PATTERN | ||
(send | ||
${#factory_bot? nil?} %FACTORY_CALLS | ||
$...) | ||
PATTERN | ||
|
||
def on_send(node) | ||
return if nested_call?(node) # prevent from nested matching | ||
|
||
factory_call(node) do | ||
if node.parenthesized? | ||
process_with_parentheses(node) | ||
else | ||
process_without_parentheses(node) | ||
end | ||
end | ||
end | ||
|
||
def process_with_parentheses(node) | ||
return unless style == :omit_parentheses | ||
|
||
add_offense(node.loc.selector, | ||
message: MSG_OMIT_PARENS) do |corrector| | ||
remove_parentheses(corrector, node) | ||
end | ||
end | ||
|
||
def process_without_parentheses(node) | ||
return unless style == :require_parentheses | ||
|
||
add_offense(node.loc.selector, | ||
message: MSG_REQUIRE_PARENS) do |corrector| | ||
add_parentheses(node, corrector) | ||
end | ||
end | ||
|
||
def nested_call?(node) | ||
node.parent&.send_type? | ||
end | ||
|
||
private | ||
|
||
def remove_parentheses(corrector, node) | ||
corrector.replace(node.location.begin, ' ') | ||
corrector.remove(node.location.end) | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
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
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
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
Oops, something went wrong.