| 
									
										
										
										
											2017-07-29 16:36:32 +05:30
										 |  |  | require_relative "../../rubocops/lines_cop" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe RuboCop::Cop::FormulaAudit::Lines do | 
					
						
							|  |  |  |   subject(:cop) { described_class.new } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |   it "reports an offense when using depends_on :automake" do | 
					
						
							|  |  |  |     expect_offense(<<~RUBY) | 
					
						
							|  |  |  |       class Foo < Formula | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |         depends_on :automake | 
					
						
							|  |  |  |         ^^^^^^^^^^^^^^^^^^^^ :automake is deprecated. Usage should be \"automake\".
 | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     RUBY | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-07-29 16:36:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |   it "reports an offense when using depends_on :autoconf" do | 
					
						
							|  |  |  |     expect_offense(<<~RUBY) | 
					
						
							|  |  |  |       class Foo < Formula | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |         depends_on :autoconf | 
					
						
							|  |  |  |         ^^^^^^^^^^^^^^^^^^^^ :autoconf is deprecated. Usage should be \"autoconf\".
 | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     RUBY | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-07-29 16:36:32 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |   it "reports an offense when using depends_on :libtool" do | 
					
						
							|  |  |  |     expect_offense(<<~RUBY) | 
					
						
							|  |  |  |       class Foo < Formula | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |         depends_on :libtool | 
					
						
							|  |  |  |         ^^^^^^^^^^^^^^^^^^^ :libtool is deprecated. Usage should be \"libtool\".
 | 
					
						
							| 
									
										
										
										
											2017-07-29 16:36:32 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it "reports an offense when using depends_on :apr" do | 
					
						
							|  |  |  |     expect_offense(<<~RUBY) | 
					
						
							|  |  |  |       class Foo < Formula | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |         depends_on :apr | 
					
						
							|  |  |  |         ^^^^^^^^^^^^^^^ :apr is deprecated. Usage should be \"apr-util\".
 | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     RUBY | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it "reports an offense when using depends_on :tex" do | 
					
						
							|  |  |  |     expect_offense(<<~RUBY) | 
					
						
							|  |  |  |       class Foo < Formula | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |         depends_on :tex | 
					
						
							|  |  |  |         ^^^^^^^^^^^^^^^ :tex is deprecated. | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-07-29 16:36:32 +05:30
										 |  |  |   end | 
					
						
							|  |  |  | end | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | describe RuboCop::Cop::FormulaAudit::ClassInheritance do | 
					
						
							|  |  |  |   subject(:cop) { described_class.new } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |   it "reports an offense when not using spaces for class inheritance" do | 
					
						
							|  |  |  |     expect_offense(<<~RUBY, "/homebrew-core/Formula/foo.rb") | 
					
						
							|  |  |  |       class Foo<Formula | 
					
						
							|  |  |  |                 ^^^^^^^ Use a space in class inheritance: class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |   end | 
					
						
							|  |  |  | end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe RuboCop::Cop::FormulaAudit::Comments do | 
					
						
							|  |  |  |   subject(:cop) { described_class.new } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   context "When auditing formula" do | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "commented cmake call" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |           # system "cmake", ".", *std_cmake_args | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Please remove default template comments | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "default template comments" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           # PLEASE REMOVE | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^ Please remove default template comments | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "commented out depends_on" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |           # depends_on "foo" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^^^^ Commented-out dependency "foo" | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  | describe RuboCop::Cop::FormulaAudit::AssertStatements do | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |   subject(:cop) { described_class.new } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "assert ...include usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         assert File.read("inbox").include?("Sample message 1") | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use `assert_match` instead of `assert ...include?` | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "assert ...exist? without a negation" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         assert File.exist? "default.ini" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                ^^^^^^^^^^^^^^^^^^^^^^^^^ Use `assert_predicate <path_to_file>, :exist?` instead of `assert File.exist? "default.ini"` | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "assert ...exist? with a negation" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         assert !File.exist?("default.ini") | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use `refute_predicate <path_to_file>, :exist?` instead of `assert !File.exist?("default.ini")` | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "assert ...executable? without a negation" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         assert File.executable? f | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                ^^^^^^^^^^^^^^^^^^ Use `assert_predicate <path_to_file>, :executable?` instead of `assert File.executable? f` | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							|  |  |  | end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  | describe RuboCop::Cop::FormulaAudit::OptionDeclarations do | 
					
						
							|  |  |  |   subject(:cop) { described_class.new } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it "unless build.without? conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return unless build.without? "bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                         ^^^^^^^^^^^^^^^^^^^^ Use if build.with? "bar" instead of unless build.without? "bar" | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "unless build.with? conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return unless build.with? "bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                         ^^^^^^^^^^^^^^^^^ Use if build.without? "bar" instead of unless build.with? "bar" | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "negated build.with? conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return if !build.with? "bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                     ^^^^^^^^^^^^^^^^^^ Don't negate 'build.with?': use 'build.without?' | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "negated build.without? conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return if !build.without? "bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                     ^^^^^^^^^^^^^^^^^^^^^ Don't negate 'build.without?': use 'build.with?' | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "unnecessary build.without? conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return if build.without? "--without-bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                     ^^^^^^^^^^^^^ Don't duplicate 'without': Use `build.without? \"bar\"` to check for \"--without-bar\"
 | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "unnecessary build.with? conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return if build.with? "--with-bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                  ^^^^^^^^^^ Don't duplicate 'with': Use `build.with? \"bar\"` to check for \"--with-bar\"
 | 
					
						
							| 
									
										
										
										
											2017-09-10 18:55:01 +00:00
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-09-10 18:55:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "build.include? conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return if build.include? "without-bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                     ^^^^^^^^^^^ Use build.without? \"bar\" instead of build.include? 'without-bar'
 | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "build.include? with dashed args conditional" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def post_install | 
					
						
							|  |  |  |           return if build.include? "--bar" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                     ^^^^^ Reference 'bar' without dashes | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   it "def options usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       class Foo < Formula | 
					
						
							|  |  |  |         desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |         url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |         def options | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |         ^^^^^^^^^^^ Use new-style option definitions | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |           [["--bar", "desc"]] | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   end | 
					
						
							|  |  |  | end | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  | describe RuboCop::Cop::FormulaAudit::Miscellaneous do | 
					
						
							|  |  |  |   subject(:cop) { described_class.new } | 
					
						
							| 
									
										
										
										
											2017-09-10 18:55:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |   context "When auditing formula" do | 
					
						
							|  |  |  |     it "FileUtils usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           FileUtils.mv "hello" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^^^^^^ Don\'t need \'FileUtils.\' before mv | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-05 14:58:09 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-12 23:28:08 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "long inreplace block vars" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-12 23:28:08 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           inreplace "foo" do |longvar| | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ \"inreplace <filenames> do |s|\" is preferred over \"|longvar|\".
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |             somerandomCall(longvar) | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-08-12 23:28:08 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |     it "an invalid rebuild statement" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           bottle do | 
					
						
							|  |  |  |             rebuild 0
 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |             ^^^^^^^^^ 'rebuild 0' should be removed | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |             sha256 "fe0679b932dd43a87fd415b609a7fbac7a069d117642ae8ebaac46ae1fb9f0b3" => :sierra | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "OS.linux? check" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY, "/homebrew-core/") | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           bottle do | 
					
						
							|  |  |  |             if OS.linux? | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                ^^^^^^^^^ Don\'t use OS.linux?; Homebrew/core only supports macOS | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |               nil | 
					
						
							|  |  |  |             end | 
					
						
							|  |  |  |             sha256 "fe0679b932dd43a87fd415b609a7fbac7a069d117642ae8ebaac46ae1fb9f0b3" => :sierra | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "fails_with :llvm block" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           bottle do | 
					
						
							|  |  |  |             sha256 "fe0679b932dd43a87fd415b609a7fbac7a069d117642ae8ebaac46ae1fb9f0b3" => :sierra | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |           fails_with :llvm do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^^ 'fails_with :llvm' is now a no-op so should be removed | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |             build 2335
 | 
					
						
							|  |  |  |             cause "foo" | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-10-21 01:39:04 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-12 23:28:08 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |     it "def test's deprecated usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-12 23:28:08 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |           def test | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^ Use new-style test definitions (test do) | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |             assert_equals "1", "1" | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-08-12 23:28:08 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-13 14:50:29 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-10-12 00:29:19 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |     it "with deprecated skip_clean call" do | 
					
						
							|  |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-13 14:50:29 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           skip_clean :all | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^ `skip_clean :all` is deprecated; brew no longer strips symbols. Pass explicit paths to prevent Homebrew from removing empty folders. | 
					
						
							| 
									
										
										
										
											2017-08-13 14:50:29 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-12 23:28:08 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 00:02:44 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "build.universal? deprecated usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 00:02:44 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           if build.universal? | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |              ^^^^^^^^^^^^^^^^ macOS has been 64-bit only since 10.6 so build.universal? is deprecated. | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |              "foo" | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-08-14 00:02:44 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 01:09:06 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-10-12 00:29:19 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "build.universal? deprecation exempted formula" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_no_offenses(<<~RUBY, "/homebrew-core/Formula/wine.rb") | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |         class Wine < Formula | 
					
						
							| 
									
										
										
										
											2017-08-14 01:09:06 +05:30
										 |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           if build.universal? | 
					
						
							|  |  |  |              "foo" | 
					
						
							|  |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-08-14 01:09:06 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 01:25:44 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-10-12 00:29:19 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "deprecated ENV.universal_binary usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 01:25:44 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           if build? | 
					
						
							|  |  |  |              ENV.universal_binary | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |              ^^^^^^^^^^^^^^^^^^^^ macOS has been 64-bit only since 10.6 so ENV.universal_binary is deprecated. | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           end | 
					
						
							| 
									
										
										
										
											2017-08-14 01:25:44 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 00:02:44 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 01:52:48 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |     it "ENV.universal_binary deprecation exempted formula" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_no_offenses(<<~RUBY, "/homebrew-core/Formula/wine.rb") | 
					
						
							| 
									
										
										
										
											2017-10-08 21:46:32 -04:00
										 |  |  |         class Wine < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-08 21:46:32 -04:00
										 |  |  |           if build? | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |             ENV.universal_binary | 
					
						
							| 
									
										
										
										
											2017-10-08 21:46:32 -04:00
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-10-08 21:46:32 -04:00
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "deprecated ENV.x11 usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 01:52:48 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           if build? | 
					
						
							|  |  |  |              ENV.x11 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |              ^^^^^^^ Use "depends_on :x11" instead of "ENV.x11" | 
					
						
							| 
									
										
										
										
											2017-08-14 01:52:48 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 01:52:48 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 01:55:47 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 13:26:25 +05:30
										 |  |  |     it "install_name_tool usage instead of ruby-macho" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 01:55:47 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           system "install_name_tool", "-id" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                   ^^^^^^^^^^^^^^^^^ Use ruby-macho instead of calling "install_name_tool" | 
					
						
							| 
									
										
										
										
											2017-08-14 01:55:47 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 01:55:47 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 02:14:20 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "ruby-macho alternatives audit exempted formula" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_no_offenses(<<~RUBY, "/homebrew-core/Formula/cctools.rb") | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |         class Cctools < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           system "install_name_tool", "-id" | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it "npm install without language::Node args" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 02:14:20 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           system "npm", "install" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^^^^^^^^^ Use Language::Node for npm install args | 
					
						
							| 
									
										
										
										
											2017-08-14 02:14:20 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 02:14:20 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 02:18:46 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "npm install without language::Node args in kibana(exempted formula)" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_no_offenses(<<~RUBY, "/homebrew-core/Formula/kibana@4.4.rb") | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |         class KibanaAT44 < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           system "npm", "install" | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it "depends_on with an instance as argument" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 02:18:46 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           depends_on FOO::BAR.new | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                      ^^^^^^^^^^^^ `depends_on` can take requirement classes instead of instances | 
					
						
							| 
									
										
										
										
											2017-08-14 02:18:46 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 02:18:46 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 02:32:29 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "old style OS check" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 02:32:29 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           depends_on :foo if MacOS.snow_leopard? | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                              ^^^^^^^^^^^^^^^^^^^ \"MacOS.snow_leopard?\" is deprecated, use a comparison to MacOS.version instead
 | 
					
						
							| 
									
										
										
										
											2017-08-14 02:32:29 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 02:32:29 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 02:43:54 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "non glob DIR usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 02:43:54 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           rm_rf Dir["src/{llvm,test,librustdoc,etc/snapshot.pyc}"] | 
					
						
							|  |  |  |           rm_rf Dir["src/snapshot.pyc"] | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                      ^^^^^^^^^^^^^^^^ Dir(["src/snapshot.pyc"]) is unnecessary; just use "src/snapshot.pyc" | 
					
						
							| 
									
										
										
										
											2017-08-14 02:43:54 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 02:43:54 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 02:47:29 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "system call to fileUtils Method" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 02:47:29 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |           system "mkdir", "foo" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                   ^^^^^ Use the `mkdir` Ruby method instead of `system "mkdir", "foo"` | 
					
						
							| 
									
										
										
										
											2017-08-14 02:47:29 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 02:47:29 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 02:49:52 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "top-level function def outside class body" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |         def test | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |         ^^^^^^^^ Define method test in the class body, not at the top-level | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |            nil | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-08-14 02:49:52 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 02:49:52 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 02:49:52 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 15:22:44 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "Using ARGV to check options" do | 
					
						
							| 
									
										
										
										
											2017-12-02 17:03:11 +05:30
										 |  |  |       expect_no_offenses(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 15:22:44 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-08-14 15:22:44 +05:30
										 |  |  |             verbose = ARGV.verbose? | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 15:22:44 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:03 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it 'man+"man8" usage' do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:03 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:03 +05:30
										 |  |  |             man1.install man+"man8" => "faad.1" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                               ^^^^ "man+"man8"" should be "man8" | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:03 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:03 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "hardcoded gcc compiler" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~'RUBY') | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |             system "/usr/bin/gcc", "foo" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                     ^^^^^^^^^^^^ Use "#{ENV.cc}" instead of hard-coding "gcc" | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "hardcoded g++ compiler" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~'RUBY') | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |             system "/usr/bin/g++", "-o", "foo", "foo.cc" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                     ^^^^^^^^^^^^ Use "#{ENV.cxx}" instead of hard-coding "g++" | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 19:58:39 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "hardcoded llvm-g++ compiler" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~'RUBY') | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           def install | 
					
						
							|  |  |  |             ENV["COMPILER_PATH"] = "/usr/bin/llvm-g++" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                     ^^^^^^^^^^^^^^^^^ Use "#{ENV.cxx}" instead of hard-coding "llvm-g++" | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "hardcoded gcc compiler" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           def install | 
					
						
							|  |  |  |             ENV["COMPILER_PATH"] = "/usr/bin/gcc" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                     ^^^^^^^^^^^^ Use \"\#{ENV.cc}\" instead of hard-coding \"gcc\"
 | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 20:10:45 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 21:34:01 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "formula path shortcut : man" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~'RUBY') | 
					
						
							| 
									
										
										
										
											2017-08-14 21:34:01 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 21:34:01 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |             mv "#{share}/man", share | 
					
						
							|  |  |  |                          ^^^^ "#{share}/man" should be "#{man}" | 
					
						
							| 
									
										
										
										
											2017-08-14 21:34:01 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 21:34:01 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "formula path shortcut : libexec" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~'RUBY') | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |             mv "#{prefix}/libexec", share | 
					
						
							|  |  |  |                           ^^^^^^^^ "#{prefix}/libexec" should be "#{libexec}" | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "formula path shortcut : info" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~'RUBY') | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |             system "./configure", "--INFODIR=#{prefix}/share/info" | 
					
						
							|  |  |  |                                                        ^^^^^^ "#{prefix}/share" should be "#{share}" | 
					
						
							|  |  |  |                                                        ^^^^^^^^^^^ "#{prefix}/share/info" should be "#{info}" | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-10-12 00:29:19 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "formula path shortcut : man8" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~'RUBY') | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |           def install | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |             system "./configure", "--MANDIR=#{prefix}/share/man/man8" | 
					
						
							|  |  |  |                                                       ^^^^^^ "#{prefix}/share" should be "#{share}" | 
					
						
							|  |  |  |                                                       ^^^^^^^^^^^^^^^ "#{prefix}/share/man/man8" should be "#{man8}" | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 22:44:28 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "dependecies which have to vendored" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 23:05:00 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 23:05:00 +05:30
										 |  |  |           depends_on "lpeg" => :lua51 | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                 ^^^^^ lua modules should be vendored rather than use deprecated depends_on \"lpeg\" => :lua51`
 | 
					
						
							| 
									
										
										
										
											2017-08-14 23:05:00 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 23:05:00 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "manually setting env" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-14 23:32:06 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-14 23:32:06 +05:30
										 |  |  |           system "export", "var=value" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                   ^^^^^^ Use ENV instead of invoking 'export' to modify the environment | 
					
						
							| 
									
										
										
										
											2017-08-14 23:32:06 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-14 23:32:06 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-05 21:11:16 +05:30
										 |  |  |     it "dependencies with invalid options which lead to force rebuild" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-15 00:05:50 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-15 00:05:50 +05:30
										 |  |  |           depends_on "foo" => "with-bar" | 
					
						
							| 
									
										
										
										
											2018-05-05 21:11:16 +05:30
										 |  |  |                                ^^^^^^^^ Dependency foo should not use option with-bar | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       RUBY | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it "dependencies with invalid options in array value which lead to force rebuild" do | 
					
						
							|  |  |  |       expect_offense(<<~RUBY) | 
					
						
							|  |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2018-05-05 21:11:16 +05:30
										 |  |  |           depends_on "httpd" => [:build, :test] | 
					
						
							|  |  |  |           depends_on "foo" => [:optional, "with-bar"] | 
					
						
							|  |  |  |                                            ^^^^^^^^ Dependency foo should not use option with-bar | 
					
						
							|  |  |  |           depends_on "icu4c" => [:optional, "c++11"] | 
					
						
							|  |  |  |                                              ^^^^^ Dependency icu4c should not use option c++11
 | 
					
						
							| 
									
										
										
										
											2017-08-15 00:05:50 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-15 00:05:50 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "inspecting version manually" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-15 00:29:58 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-15 00:29:58 +05:30
										 |  |  |           if version == "HEAD" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |              ^^^^^^^^^^^^^^^^^ Use 'build.head?' instead of inspecting 'version' | 
					
						
							| 
									
										
										
										
											2017-08-15 00:29:58 +05:30
										 |  |  |             foo() | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-15 00:29:58 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "deprecated ARGV.include? (--HEAD) usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-15 00:36:37 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-15 00:36:37 +05:30
										 |  |  |           test do | 
					
						
							|  |  |  |             head = ARGV.include? "--HEAD" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                                   ^^^^^^ Use "if build.head?" instead | 
					
						
							| 
									
										
										
										
											2017-12-02 17:03:11 +05:30
										 |  |  |                    ^^^^ Use build instead of ARGV to check options | 
					
						
							| 
									
										
										
										
											2017-08-15 00:36:37 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-15 00:36:37 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-30 19:15:52 +00:00
										 |  |  |     it "deprecated needs :openmp usage" do | 
					
						
							|  |  |  |       expect_offense(<<~RUBY) | 
					
						
							|  |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-12-30 19:15:52 +00:00
										 |  |  |           needs :openmp | 
					
						
							|  |  |  |           ^^^^^^^^^^^^^ 'needs :openmp' should be replaced with 'depends_on \"gcc\"' | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       RUBY | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "deprecated MACOS_VERSION const usage" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-15 00:42:56 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-15 00:42:56 +05:30
										 |  |  |           test do | 
					
						
							|  |  |  |             version = MACOS_VERSION | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |                       ^^^^^^^^^^^^^ Use MacOS.version instead of MACOS_VERSION | 
					
						
							| 
									
										
										
										
											2017-08-15 00:42:56 +05:30
										 |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-15 00:42:56 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "deprecated if build.with? conditional dependency" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-10-29 23:40:04 +05:30
										 |  |  |           depends_on "foo" if build.with? "foo" | 
					
						
							|  |  |  |           ^^^^^^^^^^^^^^^^ Replace depends_on "foo" if build.with? "foo" with depends_on "foo" => :optional | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "unless conditional dependency with build.without?" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |           depends_on :foo unless build.without? "foo" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^ Replace depends_on :foo unless build.without? "foo" with depends_on :foo => :recommended | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 12:50:49 +05:30
										 |  |  |     it "unless conditional dependency with build.include?" do | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       expect_offense(<<~RUBY) | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |         class Foo < Formula | 
					
						
							|  |  |  |           desc "foo" | 
					
						
							| 
									
										
										
										
											2018-08-06 20:41:21 +02:00
										 |  |  |           url 'https://example.com/foo-1.0.tgz' | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |           depends_on :foo unless build.include? "without-foo" | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |           ^^^^^^^^^^^^^^^ Replace depends_on :foo unless build.include? "without-foo" with depends_on :foo => :recommended | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |         end | 
					
						
							| 
									
										
										
										
											2017-10-21 03:12:50 +02:00
										 |  |  |       RUBY | 
					
						
							| 
									
										
										
										
											2017-08-15 16:09:32 +05:30
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2017-08-02 23:49:51 +05:30
										 |  |  |   end | 
					
						
							|  |  |  | end |