class Infer < Formula desc "Static analyzer for Java, C and Objective-C" homepage "http://fbinfer.com/" url "https://github.com/facebook/infer/releases/download/v0.8.0/infer-osx-v0.8.0.tar.xz" sha256 "2b494a2b595bd7cf0f0cfaac4e9bece568575a4bcf25cc00161ed34c0319dc58" bottle do cellar :any sha256 "d16a8596892dc4fb16e576bb3c108f21d4739190fb43d088611bee25db1cc959" => :el_capitan sha256 "da1e41d5b9a9f67a27ac65ea2fb36695c0cef9745a0819a13b03ffd0916f72b8" => :yosemite sha256 "baf0deb2cfb6864b209a02c925cc97e7b32f5a2299d39aafcf21f82788afd4ee" => :mavericks end option "without-clang", "Build without C/Objective-C analyzer" option "without-java", "Build without Java analyzer" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "opam" => :build def install if build.without?("clang") && build.without?("java") odie "infer: --without-clang and --without-java are mutually exclusive" end opamroot = buildpath/"build" opamroot.mkpath ENV["OPAMROOT"] = opamroot ENV["OPAMYES"] = "1" system "opam", "init", "--no-setup" system "opam", "update" system "opam", "install", "ocamlfind" system "opam", "install", "sawja>=1.5.1" system "opam", "install", "atdgen>=1.6.0" system "opam", "install", "extlib>=1.5.4" system "opam", "install", "oUnit>=2.0.0" target_platform = if build.without?("clang") "java" elsif build.without?("java") "clang" else "all" end system "./build-infer.sh", target_platform, "--yes" rm "infer/tests/.inferconfig" libexec.install "facebook-clang-plugins" if build.with?("clang") libexec.install "infer" bin.install_symlink libexec/"infer/bin/infer" end test do (testpath/"FailingTest.c").write <<-EOS.undent #include int main() { int *s = NULL; *s = 42; return 0; } EOS (testpath/"PassingTest.c").write <<-EOS.undent #include int main() { int *s = NULL; if (s != NULL) { *s = 42; } return 0; } EOS shell_output("#{bin}/infer --fail-on-bug -- clang FailingTest.c", 2) shell_output("#{bin}/infer --fail-on-bug -- clang PassingTest.c", 0) (testpath/"FailingTest.java").write <<-EOS.undent class FailingTest { String mayReturnNull(int i) { if (i > 0) { return "Hello, Infer!"; } return null; } int mayCauseNPE() { String s = mayReturnNull(0); return s.length(); } } EOS (testpath/"PassingTest.java").write <<-EOS.undent class PassingTest { String mayReturnNull(int i) { if (i > 0) { return "Hello, Infer!"; } return null; } int mayCauseNPE() { String s = mayReturnNull(0); return s == null ? 0 : s.length(); } } EOS shell_output("#{bin}/infer --fail-on-bug -- javac FailingTest.java", 2) shell_output("#{bin}/infer --fail-on-bug -- javac PassingTest.java", 0) end end