class Traefik < Formula desc "Modern reverse proxy" homepage "https://traefik.io/" url "https://github.com/containous/traefik/releases/download/v1.6.0/traefik-v1.6.0.src.tar.gz" version "1.6.0" sha256 "4ded85f0afdfa602963e5924cb94dc0d9a2d62b05519871e26eb3673da7c0074" head "https://github.com/containous/traefik.git" bottle do cellar :any_skip_relocation sha256 "519a37400bccce4ad9aff9c0fbc53c8bc5e57e82f4571cbc2e857e674658d142" => :high_sierra sha256 "02cb111c94c7a85cbaf5f7b7383cf40e1fc11bd2d579846cd11233a13dcc5f55" => :sierra sha256 "770057bc19a4922049ea20bb98b691d2ee025aa582b5cc4009f3ef7d224d28a9" => :el_capitan end depends_on "go" => :build depends_on "go-bindata" => :build depends_on "node" => :build depends_on "yarn" => :build def install ENV["GOPATH"] = buildpath (buildpath/"src/github.com/containous/traefik").install buildpath.children # Fix yarn + upath@1.0.4 incompatibility; remove once upath is upgraded to 1.0.5+ Pathname.new("#{ENV["HOME"]}/.yarnrc").write("ignore-engines true\n") cd "src/github.com/containous/traefik" do cd "webui" do system "yarn", "install" system "yarn", "run", "build" end system "go", "generate" system "go", "build", "-o", bin/"traefik", "./cmd/traefik" prefix.install_metafiles end end test do require "socket" web_server = TCPServer.new(0) http_server = TCPServer.new(0) web_port = web_server.addr[1] http_port = http_server.addr[1] web_server.close http_server.close (testpath/"traefik.toml").write <<~EOS [web] address = ":#{web_port}" [entryPoints.http] address = ":#{http_port}" EOS begin pid = fork do exec bin/"traefik", "--configfile=#{testpath}/traefik.toml" end sleep 5 cmd = "curl -sIm3 -XGET http://localhost:#{web_port}/dashboard/" assert_match /200 OK/m, shell_output(cmd) ensure Process.kill("HUP", pid) end end end