homebrew-core/Formula/byteman.rb

62 lines
1.7 KiB
Ruby

class Byteman < Formula
desc "Java bytecode manipulation tool for testing, monitoring and tracing"
homepage "https://byteman.jboss.org/"
url "https://downloads.jboss.org/byteman/4.0.2/byteman-download-4.0.2-bin.zip"
sha256 "5f1af0f55a1b60c42c910a4e0a004b031e679375faabe35888f0230580ee7537"
bottle :unneeded
depends_on :java => "1.6+"
def install
rm_rf Dir["bin/*.bat"]
doc.install Dir["docs/*"], "README"
libexec.install ["bin", "lib", "contrib"]
pkgshare.install ["sample"]
env = Language::Java.java_home_env("1.6+").merge(:BYTEMAN_HOME => libexec)
Pathname.glob("#{libexec}/bin/*") do |file|
target = bin/File.basename(file, File.extname(file))
# Drop the .sh from the scripts
target.write_env_script(libexec/"bin/#{File.basename(file)}", env)
end
end
test do
(testpath/"src/main/java/BytemanHello.java").write <<~EOS
class BytemanHello {
public static void main(String... args) {
System.out.println("Hello, Brew!");
}
}
EOS
(testpath/"brew.btm").write <<~EOS
RULE trace main entry
CLASS BytemanHello
METHOD main
AT ENTRY
IF true
DO traceln("Entering main")
ENDRULE
RULE trace main exit
CLASS BytemanHello
METHOD main
AT EXIT
IF true
DO traceln("Exiting main")
ENDRULE
EOS
# Compile example
system "javac", "src/main/java/BytemanHello.java"
# Expected successful output when Byteman runs example
expected = <<~EOS
Entering main
Hello, Brew!
Exiting main
EOS
actual = shell_output("#{bin}/bmjava -l brew.btm -cp src/main/java BytemanHello")
assert_equal(expected, actual)
end
end