homebrew-core/Formula/checkstyle.rb
2017-10-08 03:15:20 -07:00

23 lines
850 B
Ruby

class Checkstyle < Formula
desc "Check Java source against a coding standard"
homepage "https://checkstyle.sourceforge.io/"
url "https://downloads.sourceforge.net/project/checkstyle/checkstyle/8.3/checkstyle-8.3-all.jar"
sha256 "22fab32a141b316c834987efec5de84ae5ab80db1b0d71d43b035d3ef7d4bf9f"
bottle :unneeded
def install
libexec.install "checkstyle-#{version}-all.jar"
bin.write_jar_script libexec/"checkstyle-#{version}-all.jar", "checkstyle"
end
test do
path = testpath/"foo.java"
path.write "public class Foo{ }\n"
output = `#{bin}/checkstyle -c /sun_checks.xml #{path}`
errors = output.lines.select { |line| line.start_with?("[ERROR] #{path}") }
assert_match "#{path}:1:17: '{' is not preceded with whitespace.", errors.join(" ")
assert_equal errors.size, $CHILD_STATUS.exitstatus
end
end