homebrew-core/Formula/fabio.rb
2017-09-20 22:07:23 +02:00

73 lines
2.1 KiB
Ruby

class Fabio < Formula
desc "Zero-conf load balancing HTTP(S) router"
homepage "https://github.com/fabiolb/fabio"
url "https://github.com/fabiolb/fabio/archive/v1.5.2.tar.gz"
sha256 "c449494df83fda48ee7594c8b61e19eb07e70f5973bd5da072523331739c1ccb"
head "https://github.com/fabiolb/fabio.git"
bottle do
cellar :any_skip_relocation
sha256 "3321647c0a95f615048bb1279bfec6d040ce62f0426fd75c6dccbc486aba823c" => :high_sierra
sha256 "fb4cb2a3f47d99fb508c70097c62a814a0c61d3cb765e6344a162b8028866f21" => :sierra
sha256 "dcba27603d908cc31c3a3c49a6b83e3ed47f3b8f4e3990c433c7aa0815bc83df" => :el_capitan
sha256 "105dca6c594371176b1a7363b2f2638854200450056d1216b6f79294e4b2a25a" => :yosemite
end
depends_on "go" => :build
depends_on "consul" => :recommended
def install
mkdir_p buildpath/"src/github.com/fabiolb"
ln_s buildpath, buildpath/"src/github.com/fabiolb/fabio"
ENV["GOPATH"] = buildpath.to_s
system "go", "install", "github.com/fabiolb/fabio"
bin.install "#{buildpath}/bin/fabio"
end
test do
require "socket"
require "timeout"
CONSUL_DEFAULT_PORT = 8500
FABIO_DEFAULT_PORT = 9999
LOCALHOST_IP = "127.0.0.1".freeze
def port_open?(ip, port, seconds = 1)
Timeout.timeout(seconds) do
begin
TCPSocket.new(ip, port).close
true
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH
false
end
end
rescue Timeout::Error
false
end
if !port_open?(LOCALHOST_IP, FABIO_DEFAULT_PORT)
if !port_open?(LOCALHOST_IP, CONSUL_DEFAULT_PORT)
fork do
exec "consul agent -dev -bind 127.0.0.1"
puts "consul started"
end
sleep 30
else
puts "Consul already running"
end
fork do
exec "#{bin}/fabio &>fabio-start.out&"
puts "fabio started"
end
sleep 10
assert_equal true, port_open?(LOCALHOST_IP, FABIO_DEFAULT_PORT)
system "killall", "fabio" # fabio forks off from the fork...
system "consul", "leave"
else
puts "Fabio already running or Consul not available or starting fabio failed."
false
end
end
end