155 lines
5.9 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
require "rubocops/extend/formula"
module RuboCop
module Cop
module FormulaAudit
2020-08-26 02:59:09 +02:00
# This cop checks for various problems in a formula's source code.
#
# @api private
class Text < FormulaCop
2021-01-12 12:01:29 +11:00
extend AutoCorrector
2020-07-06 10:26:21 -04:00
def audit_formula(node, _class_node, _parent_class_node, body_node)
2021-01-12 12:01:29 +11:00
full_source_content = source_buffer(node).source
2020-07-06 10:26:21 -04:00
if (match = full_source_content.match(/^require ['"]formula['"]$/))
2021-01-12 12:01:29 +11:00
range = source_range(source_buffer(node), match.pre_match.count("\n") + 1, 0, match[0].length)
add_offense(range, message: "`#{match}` is now unnecessary") do |corrector|
corrector.remove(range_with_surrounding_space(range: range))
end
2020-07-06 10:26:21 -04:00
end
if !find_node_method_by_name(body_node, :plist_options) &&
find_method_def(body_node, :plist)
problem "Please set plist_options when using a formula-defined plist."
end
if (depends_on?("openssl") || depends_on?("openssl@1.1")) && depends_on?("libressl")
problem "Formulae should not depend on both OpenSSL and LibreSSL (even optionally)."
end
2019-06-07 09:31:24 +01:00
if formula_tap == "homebrew-core" && (depends_on?("veclibfort") || depends_on?("lapack"))
problem "Formulae in homebrew/core should use OpenBLAS as the default serial linear algebra library."
end
if method_called_ever?(body_node, :virtualenv_create) ||
method_called_ever?(body_node, :virtualenv_install_with_resources)
find_method_with_args(body_node, :resource, "setuptools") do
problem "Formulae using virtualenvs do not need a `setuptools` resource."
end
end
unless method_called_ever?(body_node, :go_resource)
# processed_source.ast is passed instead of body_node because `require` would be outside body_node
find_method_with_args(processed_source.ast, :require, "language/go") do
problem "require \"language/go\" is unnecessary unless using `go_resource`s"
end
end
find_instance_method_call(body_node, "Formula", :factory) do
problem "\"Formula.factory(name)\" is deprecated in favor of \"Formula[name]\""
end
find_method_with_args(body_node, :system, "xcodebuild") do
problem %q(use "xcodebuild *args" instead of "system 'xcodebuild', *args")
end
find_method_with_args(body_node, :system, "go", "get") do
problem "Do not use `go get`. Please ask upstream to implement Go vendoring"
end
find_method_with_args(body_node, :system, "dep", "ensure") do |d|
next if parameters_passed?(d, /vendor-only/)
2020-04-14 11:59:56 +01:00
next if @formula_name == "goose" # needed in 2.3.0
2018-09-17 02:45:00 +02:00
problem "use \"dep\", \"ensure\", \"-vendor-only\""
end
find_method_with_args(body_node, :system, "cargo", "build") do
2020-06-22 13:24:41 +02:00
problem "use \"cargo\", \"install\", *std_cargo_args"
end
2020-07-03 16:27:35 -04:00
find_every_method_call_by_name(body_node, :system).each do |m|
next unless parameters_passed?(m, /make && make/)
offending_node(m)
problem "Use separate `make` calls"
end
body_node.each_descendant(:dstr) do |dstr_node|
dstr_node.each_descendant(:begin) do |interpolation_node|
next unless interpolation_node.source.match?(/#\{\w+\s*\+\s*['"][^}]+\}/)
offending_node(interpolation_node)
problem "Do not concatenate paths in string interpolation"
end
end
2020-07-11 17:10:39 -04:00
prefix_path(body_node) do |prefix_node, path|
next unless (match = path.match(%r{^(bin|include|libexec|lib|sbin|share|Frameworks)(?:/| |$)}))
2020-07-11 17:10:39 -04:00
offending_node(prefix_node)
problem "Use `#{match[1].downcase}` instead of `prefix + \"#{match[1]}\"`"
2020-07-05 15:02:47 -04:00
end
end
2020-07-11 17:10:39 -04:00
# Find: prefix + "foo"
def_node_search :prefix_path, <<~EOS
$(send (send nil? :prefix) :+ (str $_))
EOS
end
end
module FormulaAuditStrict
2020-08-26 02:59:09 +02:00
# This cop contains stricter checks for various problems in a formula's source code.
#
# @api private
class Text < FormulaCop
2020-04-13 14:36:18 +01:00
def audit_formula(_node, _class_node, _parent_class_node, body_node)
find_method_with_args(body_node, :go_resource) do
problem "`go_resource`s are deprecated. Please ask upstream to implement Go vendoring"
end
2020-07-05 11:46:53 -04:00
find_method_with_args(body_node, :env, :userpaths) do
problem "`env :userpaths` in homebrew/core formulae is deprecated"
end
2020-07-12 16:06:50 -04:00
share_path_starts_with(body_node, @formula_name) do |share_node|
2020-07-11 18:07:06 -04:00
offending_node(share_node)
problem "Use `pkgshare` instead of `share/\"#{@formula_name}\"`"
end
2020-07-12 16:06:50 -04:00
interpolated_share_path_starts_with(body_node, "/#{@formula_name}") do |share_node|
2020-07-11 18:07:06 -04:00
offending_node(share_node)
problem "Use `\#{pkgshare}` instead of `\#{share}/#{@formula_name}`"
end
return unless formula_tap == "homebrew-core"
find_method_with_args(body_node, :env, :std) do
problem "`env :std` in homebrew/core formulae is deprecated"
end
2020-04-13 14:36:18 +01:00
end
2020-07-11 18:07:06 -04:00
# Check whether value starts with the formula name and then a "/", " " or EOS.
2020-07-12 16:06:50 -04:00
def path_starts_with?(path, starts_with)
path.match?(%r{^#{Regexp.escape(starts_with)}(/| |$)})
2020-07-11 18:07:06 -04:00
end
# Find "#{share}/foo"
2020-07-12 16:06:50 -04:00
def_node_search :interpolated_share_path_starts_with, <<~EOS
$(dstr (begin (send nil? :share)) (str #path_starts_with?(%1)))
2020-07-11 18:07:06 -04:00
EOS
# Find share/"foo"
2020-07-12 16:06:50 -04:00
def_node_search :share_path_starts_with, <<~EOS
$(send (send nil? :share) :/ (str #path_starts_with?(%1)))
2020-07-11 18:07:06 -04:00
EOS
end
end
end
end