-
-
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 #1402 from ydah/feature/1326
Add new `RSpec/Capybara/SpecificActions` cop
- Loading branch information
Showing
12 changed files
with
499 additions
and
82 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module RSpec | ||
module Capybara | ||
# Checks for there is a more specific actions offered by Capybara. | ||
# | ||
# @example | ||
# | ||
# # bad | ||
# find('a').click | ||
# find('button.cls').click | ||
# find('a', exact_text: 'foo').click | ||
# find('div button').click | ||
# | ||
# # good | ||
# click_link | ||
# click_button(class: 'cls') | ||
# click_link(exact_text: 'foo') | ||
# find('div').click_button | ||
# | ||
class SpecificActions < Base | ||
MSG = "Prefer `%<good_action>s` over `find('%<selector>s').click`." | ||
RESTRICT_ON_SEND = %i[click].freeze | ||
SPECIFIC_ACTION = { | ||
'button' => 'button', | ||
'a' => 'link' | ||
}.freeze | ||
|
||
# @!method click_on_selector(node) | ||
def_node_matcher :click_on_selector, <<-PATTERN | ||
(send _ :find (str $_) ...) | ||
PATTERN | ||
|
||
def on_send(node) | ||
click_on_selector(node.receiver) do |arg| | ||
next unless supported_selector?(arg) | ||
# Always check the last selector in the case of multiple selectors | ||
# separated by whitespace. | ||
# because the `.click` is executed on the element to | ||
# which the last selector points. | ||
next unless (selector = last_selector(arg)) | ||
next unless (action = specific_action(selector)) | ||
next unless CapybaraHelp.specific_option?(node.receiver, arg, | ||
action) | ||
next unless CapybaraHelp.specific_pseudo_classes?(arg) | ||
|
||
range = offense_range(node, node.receiver) | ||
add_offense(range, message: message(action, selector)) | ||
end | ||
end | ||
|
||
private | ||
|
||
def specific_action(selector) | ||
SPECIFIC_ACTION[last_selector(selector)] | ||
end | ||
|
||
def supported_selector?(selector) | ||
!selector.match?(/[>,+~]/) | ||
end | ||
|
||
def last_selector(arg) | ||
arg.split.last[/^\w+/, 0] | ||
end | ||
|
||
def offense_range(node, receiver) | ||
receiver.loc.selector.with(end_pos: node.loc.expression.end_pos) | ||
end | ||
|
||
def message(action, selector) | ||
format(MSG, | ||
good_action: good_action(action), | ||
selector: selector) | ||
end | ||
|
||
def good_action(action) | ||
"click_#{action}" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
module RSpec | ||
# Help methods for capybara. | ||
module CapybaraHelp | ||
module_function | ||
|
||
# @param node [RuboCop::AST::SendNode] | ||
# @param locator [String] | ||
# @param element [String] | ||
# @return [Boolean] | ||
def specific_option?(node, locator, element) | ||
attrs = CssSelector.attributes(locator).keys | ||
return false unless replaceable_element?(node, element, attrs) | ||
|
||
attrs.all? do |attr| | ||
CssSelector.specific_options?(element, attr) | ||
end | ||
end | ||
|
||
# @param locator [String] | ||
# @return [Boolean] | ||
def specific_pseudo_classes?(locator) | ||
CssSelector.pseudo_classes(locator).all? do |pseudo_class| | ||
replaceable_pseudo_class?(pseudo_class, locator) | ||
end | ||
end | ||
|
||
# @param pseudo_class [String] | ||
# @param locator [String] | ||
# @return [Boolean] | ||
def replaceable_pseudo_class?(pseudo_class, locator) | ||
return false unless CssSelector.specific_pesudo_classes?(pseudo_class) | ||
|
||
case pseudo_class | ||
when 'not()' then replaceable_pseudo_class_not?(locator) | ||
else true | ||
end | ||
end | ||
|
||
# @param locator [String] | ||
# @return [Boolean] | ||
def replaceable_pseudo_class_not?(locator) | ||
locator.scan(/not\(.*?\)/).all? do |negation| | ||
CssSelector.attributes(negation).values.all? do |v| | ||
v.is_a?(TrueClass) || v.is_a?(FalseClass) | ||
end | ||
end | ||
end | ||
|
||
# @param node [RuboCop::AST::SendNode] | ||
# @param element [String] | ||
# @param attrs [Array<String>] | ||
# @return [Boolean] | ||
def replaceable_element?(node, element, attrs) | ||
case element | ||
when 'link' then replaceable_to_link?(node, attrs) | ||
else true | ||
end | ||
end | ||
|
||
# @param node [RuboCop::AST::SendNode] | ||
# @param attrs [Array<String>] | ||
# @return [Boolean] | ||
def replaceable_to_link?(node, attrs) | ||
include_option?(node, :href) || attrs.include?('href') | ||
end | ||
|
||
# @param node [RuboCop::AST::SendNode] | ||
# @param option [Symbol] | ||
# @return [Boolean] | ||
def include_option?(node, option) | ||
node.each_descendant(:sym).find { |opt| opt.value == option } | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.