homebrew-core/Formula/traefik.rb
2018-12-16 10:21:34 +01:00

68 lines
2 KiB
Ruby

class Traefik < Formula
desc "Modern reverse proxy"
homepage "https://traefik.io/"
url "https://github.com/containous/traefik/releases/download/v1.7.6/traefik-v1.7.6.src.tar.gz"
version "1.7.6"
sha256 "2fc433c81bace17e801a071fed1ae4405835a8adbc9d6969baa42bab61dbad9e"
head "https://github.com/containous/traefik.git"
bottle do
cellar :any_skip_relocation
sha256 "41b65c4f7e201330d267a2210d754c09ddae8406f8fe0ff15b3db98ff9632da0" => :mojave
sha256 "97b2fc8dca8cfce791b83d4d91ff1969397b601fe6f1c81c0ed68bffae1c54d0" => :high_sierra
sha256 "ca337dd3c61066244a6bba19d2f6220b446bddea90bc04c35b642ef9bb09aa93" => :sierra
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