class AppEngineJava < Formula desc "Google App Engine for Java" homepage "https://cloud.google.com/appengine/docs/java/" url "https://storage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.56.zip" sha256 "5886ea72b46e649fea7c9e3d8a32ef74bca9a21c741ccf74506ab48d9f37ec76" bottle :unneeded depends_on :java => "1.7+" def install rm Dir["bin/*.cmd"] libexec.install Dir["*"] bin.write_exec_script %w[appcfg.sh dev_appserver.sh endpoints.sh google_sql.sh].map { |fn| libexec/"bin/#{fn}" } end test do (testpath/"WEB-INF/web.xml").write "" (testpath/"WEB-INF/appengine-web.xml").write "true" Process.setsid IO.popen("#{bin}/dev_appserver.sh . 2>&1") do |io| assert_not_nil(io.gets, "Dev App Server terminated prematurely") until $LAST_READ_LINE == "INFO: Dev App Server is now running\n" Signal.trap "INT", "IGNORE" Process.kill "INT", 0 end assert_equal(130, $CHILD_STATUS.exitstatus, "Dev App Server exited with unexpected status code") end end