homebrew-core/Formula/byteman.rb

68 lines
1.9 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/3.0.5/byteman-download-3.0.5-bin.zip"
sha256 "c7b90b63346d4a0f648c55e12c21110fb173fb9ae8471727fd44906591fa8c26"
devel do
url "http://downloads.jboss.org/byteman/4.0.0-ALPHA/byteman-download-4.0.0-ALPHA-bin.zip"
sha256 "1658fb2913b706ec29d23ecd7559de7643225f0e723dab8772374ea01ceafdf6"
version "4.0.0-ALPHA"
end
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.undent
class BytemanHello {
public static void main(String... args) {
System.out.println("Hello, Brew!");
}
}
EOS
(testpath/"brew.btm").write <<-EOS.undent
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.undent
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