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-10.6.0/checkstyle-10.6.0-all.jar"
|
|
sha256 "8211ab46eedaf4e515b62e8fe1046b1854a642a5fc5c27e7eda04747843b4422"
|
|
license "LGPL-2.1-or-later"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "ecac86db8bcdc7817092a817fe6a105cb3e5f74793b96ccf785552f227f9eff6"
|
|
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
|