Add --only-cops,--except-cops options for brew audit

Also refactor audit cops into two "departments"
 - FormulaAudit
 - FormulaAuditStrict
This commit is contained in:
Gautham Goli 2017-04-23 04:09:13 +05:30
parent a4568a8697
commit c3330c289d
10 changed files with 220 additions and 192 deletions

View File

@ -8,10 +8,10 @@ AllCops:
require: ./Homebrew/rubocops.rb require: ./Homebrew/rubocops.rb
Homebrew/CorrectBottleBlock: FormulaAuditStrict/CorrectBottleBlock:
Enabled: true Enabled: true
Homebrew/FormulaDesc: FormulaAuditStrict/FormulaDesc:
Enabled: true Enabled: true
Homebrew/FormulaComponentsOrder: Homebrew/FormulaComponentsOrder:

View File

@ -56,8 +56,18 @@ module Homebrew
] ]
args << "--auto-correct" if fix args << "--auto-correct" if fix
if options[:exclude].eql?(:FormulaAuditStrict) && !(options.key?(:except) || options.key?(:only))
args << "--except" << :FormulaAuditStrict
end
if options[:except]
cops_to_exclude = options[:except].select { |cop| RuboCop::Cop::Cop.registry.names.include?(cop) }
args << "--except" << cops_to_exclude.join(" ") unless cops_to_exclude.empty?
end
if options[:only] if options[:only]
args << "--only" << RuboCop::Cop::Cop.registry.with_department(options[:only]).names.join(" ") cops_to_include = options[:only].select { |cop| RuboCop::Cop::Cop.registry.names.include?(cop) }
args << "--only" << cops_to_include.join(" ") unless cops_to_include.empty?
end end
if files.nil? if files.nil?

View File

@ -27,6 +27,10 @@
#: #:
#: If `--except` is passed, the methods named `audit_<method>` will not be run. #: If `--except` is passed, the methods named `audit_<method>` will not be run.
#: #:
#: If `--only-cops` is passed, only the mentioned cops' violations would be checked.
#:
#: If `--except-cops` is passed, the mentioned cops' checks would be skipped.
#:
#: `audit` exits with a non-zero status if any errors are found. This is useful, #: `audit` exits with a non-zero status if any errors are found. This is useful,
#: for instance, for implementing pre-commit hooks. #: for instance, for implementing pre-commit hooks.
@ -69,17 +73,23 @@ module Homebrew
files = ARGV.resolved_formulae.map(&:path) files = ARGV.resolved_formulae.map(&:path)
end end
if strict only_cops = ARGV.value("only-cops").to_s.split(",")
options = { fix: ARGV.flag?("--fix"), realpath: true } except_cops = ARGV.value("except-cops").to_s.split(",")
# Check style in a single batch run up front for performance if !only_cops.empty? && !except_cops.empty?
style_results = check_style_json(files, options) odie "--only-cops and --except-cops cannot be used simulataneously!"
end end
if !strict if strict
options = { fix: ARGV.flag?("--fix"), realpath: true, only: :Homebrew } options = { fix: ARGV.flag?("--fix"), realpath: true }
style_results = check_style_json(files, options) else
options = { fix: ARGV.flag?("--fix"), realpath: true, exclude: :FormulaAuditStrict }
end end
options[:only] = only_cops unless only_cops.empty?
options[:except] = except_cops unless except_cops.empty?
# Check style in a single batch run up front for performance
style_results = check_style_json(files, options)
ff.each do |f| ff.each do |f|
options = { new_formula: new_formula, strict: strict, online: online } options = { new_formula: new_formula, strict: strict, online: online }
options[:style_offenses] = style_results.file_offenses(f.path) options[:style_offenses] = style_results.file_offenses(f.path)

View File

@ -2,7 +2,7 @@ require_relative "./extend/formula_cop"
module RuboCop module RuboCop
module Cop module Cop
module Homebrew module FormulaAuditStrict
# This cop audits `bottle` block in Formulae # This cop audits `bottle` block in Formulae
# #
# - `rebuild` should be used instead of `revision` in `bottle` block # - `rebuild` should be used instead of `revision` in `bottle` block

View File

@ -1,213 +1,211 @@
module RuboCop module RuboCop
module Cop module Cop
module Homebrew class FormulaCop < Cop
class FormulaCop < Cop @registry = Cop.registry
@registry = Cop.registry
# This method is called by RuboCop and is the main entry point # This method is called by RuboCop and is the main entry point
def on_class(node) def on_class(node)
file_path = processed_source.buffer.name file_path = processed_source.buffer.name
return unless file_path_allowed?(file_path) return unless file_path_allowed?(file_path)
class_node, parent_class_node, body = *node class_node, parent_class_node, body = *node
return unless formula_class?(parent_class_node) return unless formula_class?(parent_class_node)
return unless respond_to?(:audit_formula) return unless respond_to?(:audit_formula)
@formula_name = class_name(class_node) @formula_name = class_name(class_node)
audit_formula(node, class_node, parent_class_node, body) audit_formula(node, class_node, parent_class_node, body)
end
# Checks for regex match of pattern in the node and
# Sets the appropriate instance variables to report the match
def regex_match_group(node, pattern)
string_repr = string_content(node)
match_object = string_repr.match(pattern)
return unless match_object
node_begin_pos = start_column(node)
line_begin_pos = line_start_column(node)
@column = node_begin_pos + match_object.begin(0) - line_begin_pos + 1
@length = match_object.to_s.length
@line_no = line_number(node)
@source_buf = source_buffer(node)
@offense_source_range = source_range(@source_buf, @line_no, @column, @length)
@offensive_node = node
match_object
end
# Returns method_node matching method_name
def find_node_method_by_name(node, method_name)
return if node.nil?
node.each_child_node(:send) do |method_node|
next unless method_node.method_name == method_name
@offensive_node = method_node
@offense_source_range = method_node.source_range
return method_node
end end
# If not found then, parent node becomes the offensive node
@offensive_node = node.parent
@offense_source_range = node.parent.source_range
nil
end
# Checks for regex match of pattern in the node and # Returns an array of method call nodes matching method_name inside node
# Sets the appropriate instance variables to report the match def find_method_calls_by_name(node, method_name)
def regex_match_group(node, pattern) return if node.nil?
string_repr = string_content(node) node.each_child_node(:send).select { |method_node| method_name == method_node.method_name }
match_object = string_repr.match(pattern) end
return unless match_object
node_begin_pos = start_column(node) # Returns a block named block_name inside node
line_begin_pos = line_start_column(node) def find_block(node, block_name)
@column = node_begin_pos + match_object.begin(0) - line_begin_pos + 1 return if node.nil?
@length = match_object.to_s.length node.each_child_node(:block) do |block_node|
@line_no = line_number(node) next if block_node.method_name != block_name
@source_buf = source_buffer(node) @offensive_node = block_node
@offense_source_range = source_range(@source_buf, @line_no, @column, @length) @offense_source_range = block_node.source_range
@offensive_node = node return block_node
match_object
end end
# If not found then, parent node becomes the offensive node
@offensive_node = node.parent
@offense_source_range = node.parent.source_range
nil
end
# Returns method_node matching method_name # Returns an array of block nodes named block_name inside node
def find_node_method_by_name(node, method_name) def find_blocks(node, block_name)
return if node.nil? return if node.nil?
node.each_child_node(:send) do |method_node| node.each_child_node(:block).select { |block_node| block_name == block_node.method_name }
next unless method_node.method_name == method_name end
@offensive_node = method_node
@offense_source_range = method_node.source_range # Returns a method definition node with method_name
return method_node def find_method_def(node, method_name)
end return if node.nil?
# If not found then, parent node becomes the offensive node node.each_child_node(:def) do |def_node|
@offensive_node = node.parent def_method_name = method_name(def_node)
@offense_source_range = node.parent.source_range next unless method_name == def_method_name
nil @offensive_node = def_node
@offense_source_range = def_node.source_range
return def_node
end end
# If not found then, parent node becomes the offensive node
@offensive_node = node.parent
@offense_source_range = node.parent.source_range
nil
end
# Returns an array of method call nodes matching method_name inside node # Check if a method is called inside a block
def find_method_calls_by_name(node, method_name) def method_called_in_block?(node, method_name)
return if node.nil? block_body = node.children[2]
node.each_child_node(:send).select { |method_node| method_name == method_node.method_name } block_body.each_child_node(:send) do |call_node|
next unless call_node.method_name == method_name
@offensive_node = call_node
@offense_source_range = call_node.source_range
return true
end end
false
end
# Returns a block named block_name inside node # Check if method_name is called among the direct children nodes in the given node
def find_block(node, block_name) def method_called?(node, method_name)
return if node.nil? node.each_child_node(:send) do |call_node|
node.each_child_node(:block) do |block_node| next unless call_node.method_name == method_name
next if block_node.method_name != block_name @offensive_node = call_node
@offensive_node = block_node @offense_source_range = call_node.source_range
@offense_source_range = block_node.source_range return true
return block_node
end
# If not found then, parent node becomes the offensive node
@offensive_node = node.parent
@offense_source_range = node.parent.source_range
nil
end end
false
end
# Returns an array of block nodes named block_name inside node # Checks for precedence, returns the first pair of precedence violating nodes
def find_blocks(node, block_name) def check_precedence(first_nodes, next_nodes)
return if node.nil? next_nodes.each do |each_next_node|
node.each_child_node(:block).select { |block_node| block_name == block_node.method_name } first_nodes.each do |each_first_node|
end if component_precedes?(each_first_node, each_next_node)
return [each_first_node, each_next_node]
# Returns a method definition node with method_name
def find_method_def(node, method_name)
return if node.nil?
node.each_child_node(:def) do |def_node|
def_method_name = method_name(def_node)
next unless method_name == def_method_name
@offensive_node = def_node
@offense_source_range = def_node.source_range
return def_node
end
# If not found then, parent node becomes the offensive node
@offensive_node = node.parent
@offense_source_range = node.parent.source_range
nil
end
# Check if a method is called inside a block
def method_called_in_block?(node, method_name)
block_body = node.children[2]
block_body.each_child_node(:send) do |call_node|
next unless call_node.method_name == method_name
@offensive_node = call_node
@offense_source_range = call_node.source_range
return true
end
false
end
# Check if method_name is called among the direct children nodes in the given node
def method_called?(node, method_name)
node.each_child_node(:send) do |call_node|
next unless call_node.method_name == method_name
@offensive_node = call_node
@offense_source_range = call_node.source_range
return true
end
false
end
# Checks for precedence, returns the first pair of precedence violating nodes
def check_precedence(first_nodes, next_nodes)
next_nodes.each do |each_next_node|
first_nodes.each do |each_first_node|
if component_precedes?(each_first_node, each_next_node)
return [each_first_node, each_next_node]
end
end end
end end
nil
end end
nil
end
# If first node does not precede next_node, sets appropriate instance variables for reporting # If first node does not precede next_node, sets appropriate instance variables for reporting
def component_precedes?(first_node, next_node) def component_precedes?(first_node, next_node)
return false if line_number(first_node) < line_number(next_node) return false if line_number(first_node) < line_number(next_node)
@offense_source_range = first_node.source_range @offense_source_range = first_node.source_range
@offensive_node = first_node @offensive_node = first_node
true true
end end
# Returns the array of arguments of the method_node # Returns the array of arguments of the method_node
def parameters(method_node) def parameters(method_node)
return unless method_node.send_type? return unless method_node.send_type?
method_node.method_args method_node.method_args
end end
# Returns the begin position of the node's line in source code # Returns the begin position of the node's line in source code
def line_start_column(node) def line_start_column(node)
node.source_range.source_buffer.line_range(node.loc.line).begin_pos node.source_range.source_buffer.line_range(node.loc.line).begin_pos
end end
# Returns the begin position of the node in source code # Returns the begin position of the node in source code
def start_column(node) def start_column(node)
node.source_range.begin_pos node.source_range.begin_pos
end end
# Returns the line number of the node # Returns the line number of the node
def line_number(node) def line_number(node)
node.loc.line node.loc.line
end end
# Returns the class node's name, nil if not a class node # Returns the class node's name, nil if not a class node
def class_name(node) def class_name(node)
@offensive_node = node @offensive_node = node
@offense_source_range = node.source_range @offense_source_range = node.source_range
node.const_name node.const_name
end end
# Returns the method name for a def node # Returns the method name for a def node
def method_name(node) def method_name(node)
node.children[0] if node.def_type? node.children[0] if node.def_type?
end end
# Returns the node size in the source code # Returns the node size in the source code
def size(node) def size(node)
node.source_range.size node.source_range.size
end end
# Returns the block length of the block node # Returns the block length of the block node
def block_size(block) def block_size(block)
block_length(block) block_length(block)
end end
# Source buffer is required as an argument to report style violations # Source buffer is required as an argument to report style violations
def source_buffer(node) def source_buffer(node)
node.source_range.source_buffer node.source_range.source_buffer
end end
# Returns the string representation if node is of type str # Returns the string representation if node is of type str
def string_content(node) def string_content(node)
node.str_content if node.type == :str node.str_content if node.type == :str
end end
# Returns printable component name # Returns printable component name
def format_component(component_node) def format_component(component_node)
return component_node.method_name if component_node.send_type? || component_node.block_type? return component_node.method_name if component_node.send_type? || component_node.block_type?
method_name(component_node) if component_node.def_type? method_name(component_node) if component_node.def_type?
end end
def problem(msg) def problem(msg)
add_offense(@offensive_node, @offense_source_range, msg) add_offense(@offensive_node, @offense_source_range, msg)
end end
private private
def formula_class?(parent_class_node) def formula_class?(parent_class_node)
parent_class_node && parent_class_node.const_name == "Formula" parent_class_node && parent_class_node.const_name == "Formula"
end end
def file_path_allowed?(file_path) def file_path_allowed?(file_path)
paths_to_exclude = [%r{/Library/Homebrew/compat/}, paths_to_exclude = [%r{/Library/Homebrew/compat/},
%r{/Library/Homebrew/test/}] %r{/Library/Homebrew/test/}]
return true if file_path.nil? # file_path is nil when source is directly passed to the cop eg., in specs return true if file_path.nil? # file_path is nil when source is directly passed to the cop eg., in specs
file_path !~ Regexp.union(paths_to_exclude) file_path !~ Regexp.union(paths_to_exclude)
end
end end
end end
end end

View File

@ -3,7 +3,7 @@ require_relative "../extend/string"
module RuboCop module RuboCop
module Cop module Cop
module Homebrew module FormulaAuditStrict
# This cop audits `desc` in Formulae # This cop audits `desc` in Formulae
# #
# - Checks for existence of `desc` # - Checks for existence of `desc`

View File

@ -3,7 +3,7 @@ require "rubocop/rspec/support"
require_relative "../../extend/string" require_relative "../../extend/string"
require_relative "../../rubocops/bottle_block_cop" require_relative "../../rubocops/bottle_block_cop"
describe RuboCop::Cop::Homebrew::CorrectBottleBlock do describe RuboCop::Cop::FormulaAuditStrict::CorrectBottleBlock do
subject(:cop) { described_class.new } subject(:cop) { described_class.new }
context "When auditing Bottle Block" do context "When auditing Bottle Block" do

View File

@ -3,7 +3,7 @@ require "rubocop/rspec/support"
require_relative "../../extend/string" require_relative "../../extend/string"
require_relative "../../rubocops/formula_desc_cop" require_relative "../../rubocops/formula_desc_cop"
describe RuboCop::Cop::Homebrew::FormulaDesc do describe RuboCop::Cop::FormulaAuditStrict::FormulaDesc do
subject(:cop) { described_class.new } subject(:cop) { described_class.new }
context "When auditing formula desc" do context "When auditing formula desc" do

View File

@ -635,6 +635,10 @@ With `--verbose` or `-v`, many commands print extra debugging information. Note
If `--except` is passed, the methods named `audit_`method`` will not be run. If `--except` is passed, the methods named `audit_`method`` will not be run.
If `--only-cops` is passed, only the mentioned cops' violations would be checked.
If `--except-cops` is passed, the mentioned cops' checks would be skipped.
`audit` exits with a non-zero status if any errors are found. This is useful, `audit` exits with a non-zero status if any errors are found. This is useful,
for instance, for implementing pre-commit hooks. for instance, for implementing pre-commit hooks.

View File

@ -662,6 +662,12 @@ If \fB\-\-only\fR is passed, only the methods named \fBaudit_<method>\fR will be
If \fB\-\-except\fR is passed, the methods named \fBaudit_<method>\fR will not be run\. If \fB\-\-except\fR is passed, the methods named \fBaudit_<method>\fR will not be run\.
. .
.IP .IP
If \fB\-\-only\-cops\fR is passed, only the mentioned cops\' violations would be checked\.
.
.IP
If \fB\-\-except\-cops\fR is passed, the mentioned cops\' checks would be skipped\.
.
.IP
\fBaudit\fR exits with a non\-zero status if any errors are found\. This is useful, for instance, for implementing pre\-commit hooks\. \fBaudit\fR exits with a non\-zero status if any errors are found\. This is useful, for instance, for implementing pre\-commit hooks\.
. .
.TP .TP