homebrew-core/Formula/wiremock-standalone.rb

38 lines
1.0 KiB
Ruby

class WiremockStandalone < Formula
desc "Simulator for HTTP-based APIs"
homepage "http://wiremock.org/docs/running-standalone/"
url "https://search.maven.org/remotecontent?filepath=com/github/tomakehurst/wiremock-standalone/2.25.0/wiremock-standalone-2.25.0.jar"
sha256 "3ad3724cc31b161ec3ae674fc94417312388b68ca4768955ecd8854d1062c7bc"
head "https://github.com/tomakehurst/wiremock.git"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install "wiremock-standalone-#{version}.jar"
bin.write_jar_script libexec/"wiremock-standalone-#{version}.jar", "wiremock"
end
test do
require "socket"
server = TCPServer.new(0)
port = server.addr[1]
server.close
wiremock = fork do
exec "#{bin}/wiremock", "-port", port.to_s
end
loop do
Utils.popen_read("curl", "-s", "http://localhost:#{port}/__admin/", "-X", "GET")
break if $CHILD_STATUS.exitstatus.zero?
end
system "curl", "-s", "http://localhost:#{port}/__admin/shutdown", "-X", "POST"
Process.wait(wiremock)
end
end