2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-26 19:41:14 +01:00
|
|
|
require "rubocops/formula_desc"
|
2017-03-08 13:51:35 +05:30
|
|
|
|
2018-04-25 07:48:21 +10:00
|
|
|
describe RuboCop::Cop::FormulaAudit::DescLength do
|
2017-03-08 13:51:35 +05:30
|
|
|
subject(:cop) { described_class.new }
|
|
|
|
|
|
|
|
context "When auditing formula desc" do
|
|
|
|
it "When there is no desc" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY)
|
2017-03-08 13:51:35 +05:30
|
|
|
class Foo < Formula
|
2017-10-21 03:12:50 +02:00
|
|
|
^^^^^^^^^^^^^^^^^^^ Formula should have a desc (Description).
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
|
|
|
|
2017-10-10 15:43:07 +01:00
|
|
|
it "reports an offense when desc is an empty string" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
2017-10-10 15:43:07 +01:00
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-10-10 15:43:07 +01:00
|
|
|
desc ''
|
2017-10-21 03:12:50 +02:00
|
|
|
^^^^^^^ The desc (description) should not be an empty string.
|
2017-10-10 15:43:07 +01:00
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-10-10 15:43:07 +01:00
|
|
|
end
|
|
|
|
|
2017-03-08 13:51:35 +05:30
|
|
|
it "When desc is too long" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
2017-03-08 13:51:35 +05:30
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-06-08 15:13:06 +03:00
|
|
|
desc 'Bar#{"bar" * 29}'
|
2017-10-21 03:12:50 +02:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Description is too long. "name: desc" should be less than 80 characters. Length is calculated as foo + desc. (currently 95)
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
|
|
|
|
2017-05-13 18:44:37 +05:30
|
|
|
it "When desc is multiline string" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
2017-05-13 18:44:37 +05:30
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-06-08 15:13:06 +03:00
|
|
|
desc 'Bar#{"bar" * 9}'\
|
2017-06-01 16:06:51 +02:00
|
|
|
'#{"foo" * 21}'
|
2019-10-09 20:39:59 +01:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Description is too long. "name: desc" should be less than 80 characters. Length is calculated as foo + desc. (currently 98)
|
2017-05-13 18:44:37 +05:30
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-05-13 18:44:37 +05:30
|
|
|
end
|
2017-06-08 15:13:06 +03:00
|
|
|
end
|
|
|
|
end
|
2017-05-13 18:44:37 +05:30
|
|
|
|
2020-04-11 14:23:02 +01:00
|
|
|
describe RuboCop::Cop::FormulaAudit::Desc do
|
2017-06-08 15:13:06 +03:00
|
|
|
subject(:cop) { described_class.new }
|
|
|
|
|
|
|
|
context "When auditing formula desc" do
|
2017-03-08 13:51:35 +05:30
|
|
|
it "When wrong \"command-line\" usage in desc" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
2017-03-08 13:51:35 +05:30
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-03-08 13:51:35 +05:30
|
|
|
desc 'command line'
|
2017-10-21 03:12:50 +02:00
|
|
|
^ Description should start with a capital letter
|
|
|
|
^^^^^^^^^^^^ Description should use \"command-line\" instead of \"command line\"
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "When an article is used in desc" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
2017-03-08 13:51:35 +05:30
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2018-08-06 19:15:31 +01:00
|
|
|
desc 'An aardvark'
|
2019-04-08 12:47:15 -04:00
|
|
|
^^^ Description shouldn\'t start with an indefinite article, i.e. \"An\"
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-06-08 15:13:06 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
it "When an lowercase letter starts a desc" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
2017-06-08 15:13:06 +03:00
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-06-08 15:13:06 +03:00
|
|
|
desc 'bar'
|
2017-10-21 03:12:50 +02:00
|
|
|
^ Description should start with a capital letter
|
2017-06-08 15:13:06 +03:00
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it "When formula name is in desc" do
|
2017-10-21 03:12:50 +02:00
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
2017-03-08 13:51:35 +05:30
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-06-29 08:14:58 -07:00
|
|
|
desc 'Foo is a foobar'
|
2017-10-21 03:12:50 +02:00
|
|
|
^^^^ Description shouldn\'t start with the formula name
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
2017-10-21 03:12:50 +02:00
|
|
|
RUBY
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
|
|
|
|
2017-06-17 07:12:46 +01:00
|
|
|
it "When the description ends with a full stop" do
|
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-06-17 07:12:46 +01:00
|
|
|
desc 'Description with a full stop at the end.'
|
|
|
|
^ Description shouldn\'t end with a full stop
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
|
|
|
|
2018-08-06 19:19:48 +01:00
|
|
|
it "When the description starts with a leading space" do
|
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2018-08-06 19:19:48 +01:00
|
|
|
desc ' Description with a leading space'
|
|
|
|
^ Description shouldn\'t have a leading space
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
|
|
|
|
|
|
|
it "When the description ends with a trailing space" do
|
|
|
|
expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb")
|
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2018-08-06 19:19:48 +01:00
|
|
|
desc 'Description with a trailing space '
|
|
|
|
^ Description shouldn\'t have a trailing space
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
|
|
|
|
2017-06-08 15:13:06 +03:00
|
|
|
it "autocorrects all rules" do
|
2018-07-11 15:17:40 +02:00
|
|
|
source = <<~RUBY
|
2017-06-08 15:13:06 +03:00
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-06-08 15:13:06 +03:00
|
|
|
desc ' an bar: commandline foo '
|
|
|
|
end
|
2018-07-11 15:17:40 +02:00
|
|
|
RUBY
|
2017-10-21 03:12:50 +02:00
|
|
|
|
2018-07-11 15:17:40 +02:00
|
|
|
correct_source = <<~RUBY
|
2017-06-08 15:13:06 +03:00
|
|
|
class Foo < Formula
|
2018-11-28 20:51:55 +01:00
|
|
|
url 'https://brew.sh/foo-1.0.tgz'
|
2017-06-08 15:13:06 +03:00
|
|
|
desc 'an bar: command-line'
|
|
|
|
end
|
2018-07-11 15:17:40 +02:00
|
|
|
RUBY
|
2017-06-08 15:13:06 +03:00
|
|
|
|
2017-10-07 22:31:23 +02:00
|
|
|
corrected_source = autocorrect_source(source, "/homebrew-core/Formula/foo.rb")
|
2017-06-08 15:13:06 +03:00
|
|
|
expect(corrected_source).to eq(correct_source)
|
2017-03-08 13:51:35 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|