29 lines
1.0 KiB
Ruby
29 lines
1.0 KiB
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-9.2/checkstyle-9.2-all.jar"
|
|
sha256 "bafecad529214e1ffef1f149db5c19aa39a26e2160075e0e390cbff1cad1648b"
|
|
license "LGPL-2.1-or-later"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "f567ceb56ca5e95fc9425ba5e725795ef4482448907e08d91d6e6ede7c285940"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
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 = shell_output("#{bin}/checkstyle -c /sun_checks.xml #{path}", 2)
|
|
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
|