mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
140 lines
5.5 KiB
Ruby
140 lines
5.5 KiB
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
require "rubocops/homepage"
|
|
|
|
describe RuboCop::Cop::FormulaAudit::Homepage do
|
|
subject(:cop) { described_class.new }
|
|
|
|
context "When auditing homepage" do
|
|
it "When there is no homepage" do
|
|
source = <<~RUBY
|
|
class Foo < Formula
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
|
end
|
|
RUBY
|
|
|
|
expected_offenses = [{ message: "Formula should have a homepage.",
|
|
severity: :convention,
|
|
line: 1,
|
|
column: 0,
|
|
source: source }]
|
|
|
|
inspect_source(source)
|
|
|
|
expected_offenses.zip(cop.offenses).each do |expected, actual|
|
|
expect_offense(expected, actual)
|
|
end
|
|
end
|
|
|
|
it "Homepage with ftp" do
|
|
source = <<~RUBY
|
|
class Foo < Formula
|
|
homepage "ftp://brew.sh/foo"
|
|
url "https://brew.sh/foo-1.0.tgz"
|
|
end
|
|
RUBY
|
|
|
|
expected_offenses = [{ message: "The homepage should start with http or " \
|
|
"https (URL is ftp://brew.sh/foo).",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 2,
|
|
source: source }]
|
|
|
|
inspect_source(source)
|
|
|
|
expected_offenses.zip(cop.offenses).each do |expected, actual|
|
|
expect_offense(expected, actual)
|
|
end
|
|
end
|
|
|
|
it "Homepage URLs" do
|
|
formula_homepages = {
|
|
"bar" => "http://www.freedesktop.org/wiki/bar",
|
|
"baz" => "http://www.freedesktop.org/wiki/Software/baz",
|
|
"qux" => "https://code.google.com/p/qux",
|
|
"quux" => "http://github.com/quux",
|
|
"corge" => "http://savannah.nongnu.org/corge",
|
|
"grault" => "http://grault.github.io/",
|
|
"garply" => "http://www.gnome.org/garply",
|
|
"sf1" => "http://foo.sourceforge.net/",
|
|
"sf2" => "http://foo.sourceforge.net",
|
|
"sf3" => "http://foo.sf.net/",
|
|
"sf4" => "http://foo.sourceforge.io/",
|
|
"waldo" => "http://www.gnu.org/waldo",
|
|
"dotgit" => "https://github.com/foo/bar.git",
|
|
"rtd" => "https://foo.readthedocs.org",
|
|
}
|
|
|
|
formula_homepages.each do |name, homepage|
|
|
source = <<~RUBY
|
|
class #{name.capitalize} < Formula
|
|
homepage "#{homepage}"
|
|
url "https://brew.sh/#{name}-1.0.tgz"
|
|
end
|
|
RUBY
|
|
|
|
inspect_source(source)
|
|
if homepage.include?("http://www.freedesktop.org")
|
|
if homepage.include?("Software")
|
|
expected_offenses = [{ message: "#{homepage} should be styled " \
|
|
"`https://wiki.freedesktop.org/www/Software/project_name`",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 2,
|
|
source: source }]
|
|
else
|
|
expected_offenses = [{ message: "#{homepage} should be styled " \
|
|
"`https://wiki.freedesktop.org/project_name`",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 2,
|
|
source: source }]
|
|
end
|
|
elsif homepage.include?("https://code.google.com")
|
|
expected_offenses = [{ message: "#{homepage} should end with a slash",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 2,
|
|
source: source }]
|
|
elsif homepage.match?(/foo\.(sf|sourceforge)\.net/)
|
|
expected_offenses = [{ message: "#{homepage} should be `https://foo.sourceforge.io/`",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 2,
|
|
source: source }]
|
|
elsif homepage.match?("https://github.com/foo/bar.git")
|
|
expected_offenses = [{ message: "GitHub homepages (`#{homepage}`) should not end with .git",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 11,
|
|
source: source }]
|
|
elsif homepage.match?("https://foo.readthedocs.org")
|
|
expected_offenses = [{ message: "#{homepage} should be `https://foo.readthedocs.io`",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 11,
|
|
source: source }]
|
|
else
|
|
expected_offenses = [{ message: "Please use https:// for #{homepage}",
|
|
severity: :convention,
|
|
line: 2,
|
|
column: 2,
|
|
source: source }]
|
|
end
|
|
expected_offenses.zip([cop.offenses.last]).each do |expected, actual|
|
|
expect_offense(expected, actual)
|
|
end
|
|
end
|
|
end
|
|
|
|
def expect_offense(expected, actual)
|
|
expect(actual.message).to eq(expected[:message])
|
|
expect(actual.severity).to eq(expected[:severity])
|
|
expect(actual.line).to eq(expected[:line])
|
|
expect(actual.column).to eq(expected[:column])
|
|
end
|
|
end
|
|
end
|