23 lines
862 B
Ruby
23 lines
862 B
Ruby
class Checkstyle < Formula
|
|
desc "Check Java source against a coding standard"
|
|
homepage "https://checkstyle.sourceforge.io/"
|
|
url "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.10.1/checkstyle-8.10.1-all.jar"
|
|
sha256 "67239ffff8340a6c9266c8c952df1f639491474e48c4183637437f27c35e6066"
|
|
|
|
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
|