class Traefik < Formula desc "Modern reverse proxy" homepage "https://traefik.io/" url "https://github.com/containous/traefik/releases/download/v2.0.1/traefik-v2.0.1.src.tar.gz" version "2.0.1" sha256 "5f0101f5cec6c132f612083d4e4307050fbdcf9cdf4c8059fcc1ea9e5148063e" head "https://github.com/containous/traefik.git" bottle do cellar :any_skip_relocation sha256 "1c029ac472b0798961a2a46d00998eeb9f32d9cda8ed7166ef8e27efe16c0165" => :catalina sha256 "d6abe6a4bcecb01efc4ff8ad24da2624696597a49c16f6a6b78478a1a53c5a1f" => :mojave sha256 "5d264b7d19babc536e83abfabce4f051b2cd624a7ad74175d0d9ccd79db632d7" => :high_sierra end depends_on "go" => :build depends_on "go-bindata" => :build def install ENV["GOPATH"] = buildpath (buildpath/"src/github.com/containous/traefik").install buildpath.children cd "src/github.com/containous/traefik" do system "go", "generate" system "go", "build", "-o", bin/"traefik", "./cmd/traefik" prefix.install_metafiles end end plist_options :manual => "traefik" def plist <<~EOS KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/traefik --configfile=#{etc/"traefik/traefik.toml"} EnvironmentVariables RunAtLoad WorkingDirectory #{var} StandardErrorPath #{var}/log/traefik.log StandardOutPath #{var}/log/traefik.log EOS end test do require "socket" ui_server = TCPServer.new(0) http_server = TCPServer.new(0) ui_port = ui_server.addr[1] http_port = http_server.addr[1] ui_server.close http_server.close (testpath/"traefik.toml").write <<~EOS [global] checkNewVersion = false sendAnonymousUsage = false [serversTransport] insecureSkipVerify = true [entryPoints] [entryPoints.http] address = ":#{http_port}" [entryPoints.traefik] address = ":#{ui_port}" [log] level = "ERROR" format = "common" [accessLog] format = "common" [api] insecure = true dashboard = true debug = true EOS begin pid = fork do exec bin/"traefik", "--configfile=#{testpath}/traefik.toml" end sleep 5 cmd_http = "curl -sIm3 -XGET http://localhost:#{http_port}/" assert_match /404 Not Found/m, shell_output(cmd_http) sleep 1 cmd_ui = "curl -sIm3 -XGET http://localhost:#{ui_port}/dashboard/" assert_match /200 OK/m, shell_output(cmd_ui) ensure Process.kill("HUP", pid) end end end