require "dev-cmd/audit" require "formulary" RSpec::Matchers.alias_matcher :have_data, :be_data RSpec::Matchers.alias_matcher :have_end, :be_end RSpec::Matchers.alias_matcher :have_trailing_newline, :be_trailing_newline describe FormulaText do let(:dir) { mktmpdir } def formula_text(name, body = nil, options = {}) path = dir/"#{name}.rb" path.write <<-EOS.undent class #{Formulary.class_s(name)} < Formula #{body} end #{options[:patch]} EOS described_class.new(path) end specify "simple valid Formula" do ft = formula_text "valid", <<-EOS.undent url "http://www.example.com/valid-1.0.tar.gz" EOS expect(ft).not_to have_data expect(ft).not_to have_end expect(ft).to have_trailing_newline expect(ft =~ /\burl\b/).to be_truthy expect(ft.line_number(/desc/)).to be nil expect(ft.line_number(/\burl\b/)).to eq(2) expect(ft).to include("Valid") end specify "#trailing_newline?" do ft = formula_text "newline" expect(ft).to have_trailing_newline end specify "#data?" do ft = formula_text "data", <<-EOS.undent patch :DATA EOS expect(ft).to have_data end specify "#end?" do ft = formula_text "end", "", patch: "__END__\na patch here" expect(ft).to have_end expect(ft.without_patch).to eq("class End < Formula\n \nend") end end describe FormulaAuditor do def formula_auditor(name, text, options = {}) path = Pathname.new "#{dir}/#{name}.rb" path.open("w") do |f| f.write text end described_class.new(Formulary.factory(path), options) end let(:dir) { mktmpdir } describe "#problems" do it "is empty by default" do fa = formula_auditor "foo", <<-EOS.undent class Foo < Formula url "http://example.com/foo-1.0.tgz" end EOS expect(fa.problems).to be_empty end end describe "#audit_file" do specify "file permissions" do allow(File).to receive(:umask).and_return(022) fa = formula_auditor "foo", <<-EOS.undent class Foo < Formula url "http://example.com/foo-1.0.tgz" end EOS path = fa.formula.path path.chmod 0400 fa.audit_file expect(fa.problems) .to eq(["Incorrect file permissions (400): chmod 644 #{path}"]) end specify "DATA but no __END__" do fa = formula_auditor "foo", <<-EOS.undent class Foo < Formula url "http://example.com/foo-1.0.tgz" patch :DATA end EOS fa.audit_file expect(fa.problems).to eq(["'DATA' was found, but no '__END__'"]) end specify "__END__ but no DATA" do fa = formula_auditor "foo", <<-EOS.undent class Foo < Formula url "http://example.com/foo-1.0.tgz" end __END__ a patch goes here EOS fa.audit_file expect(fa.problems).to eq(["'__END__' was found, but 'DATA' is not used"]) end specify "no trailing newline" do fa = formula_auditor "foo", 'class Foo "http://www.freedesktop.org/wiki/bar", "baz" => "http://www.freedesktop.org/wiki/Software/baz", "qux" => "https://code.google.com/p/qux", "quux" => "http://github.com/quux", "corge" => "http://savannah.nongnu.org/corge", "grault" => "http://grault.github.io/", "garply" => "http://www.gnome.org/garply", "sf1" => "http://foo.sourceforge.net/", "sf2" => "http://foo.sourceforge.net", "sf3" => "http://foo.sf.net/", "sf4" => "http://foo.sourceforge.io/", "waldo" => "http://www.gnu.org/waldo", } formula_homepages.each do |name, homepage| fa = formula_auditor name, <<-EOS.undent class #{Formulary.class_s(name)} < Formula homepage "#{homepage}" url "http://example.com/#{name}-1.0.tgz" end EOS fa.audit_homepage if homepage =~ %r{http:\/\/www\.freedesktop\.org} if homepage =~ /Software/ expect(fa.problems.first).to match( "#{homepage} should be styled " \ "`https://wiki.freedesktop.org/www/Software/project_name`", ) else expect(fa.problems.first).to match( "#{homepage} should be styled " \ "`https://wiki.freedesktop.org/project_name`", ) end elsif homepage =~ %r{https:\/\/code\.google\.com} expect(fa.problems.first) .to match("#{homepage} should end with a slash") elsif homepage =~ /foo\.(sf|sourceforge)\.net/ expect(fa.problems.first) .to match("#{homepage} should be `https://foo.sourceforge.io/`") else expect(fa.problems.first) .to match("Please use https:// for #{homepage}") end end end specify "missing homepage" do fa = formula_auditor "foo", <<-EOS.undent, online: true class Foo < Formula url "http://example.com/foo-1.0.tgz" end EOS fa.audit_homepage expect(fa.problems.first).to match("Formula should have a homepage.") end end describe "#audit_text" do specify "xcodebuild suggests symroot" do fa = formula_auditor "foo", <<-EOS.undent class Foo < Formula url "http://example.com/foo-1.0.tgz" homepage "http://example.com" def install xcodebuild "-project", "meow.xcodeproject" end end EOS fa.audit_text expect(fa.problems.first) .to match('xcodebuild should be passed an explicit "SYMROOT"') end specify "bare xcodebuild also suggests symroot" do fa = formula_auditor "foo", <<-EOS.undent class Foo < Formula url "http://example.com/foo-1.0.tgz" homepage "http://example.com" def install xcodebuild end end EOS fa.audit_text expect(fa.problems.first) .to match('xcodebuild should be passed an explicit "SYMROOT"') end end end