require "language/node" class Chronograf < Formula desc "Open source monitoring and visualization UI for the TICK stack." homepage "https://docs.influxdata.com/chronograf/latest/" url "https://github.com/influxdata/chronograf/archive/1.3.8.2.tar.gz" sha256 "67df47af1a8a3d28342f7083eed0e738d0ea451f7dbd6b31676d685adfadd732" head "https://github.com/influxdata/chronograf.git" bottle do cellar :any_skip_relocation sha256 "6c97463f9e52219759b7942cb75f3e8b4beba3c88e335b816e6e84ab614945ba" => :high_sierra sha256 "ee07c0412d1d29cdbebfe7c9ed6ecf41e39f53d2911a53a0fdc4cea2a245be2d" => :sierra sha256 "ff595f62c504de3652d81adc396a8b1a282152054da71c00ea469f0d4412feab" => :el_capitan end depends_on "go" => :build depends_on "node" => :build depends_on "yarn" => :build depends_on "influxdb" => :recommended depends_on "kapacitor" => :recommended def install ENV["GOPATH"] = buildpath ENV.prepend_create_path "PATH", buildpath/"bin" Language::Node.setup_npm_environment chronograf_path = buildpath/"src/github.com/influxdata/chronograf" chronograf_path.install buildpath.children cd chronograf_path do system "make", "dep" system "make", ".jssrc" system "make", "chronograf" bin.install "chronograf" end end plist_options :manual => "chronograf" def plist; <<-EOS.undent KeepAlive SuccessfulExit Label #{plist_name} ProgramArguments #{opt_bin}/chronograf RunAtLoad WorkingDirectory #{var} StandardErrorPath #{var}/log/chronograf.log StandardOutPath #{var}/log/chronograf.log EOS end test do begin pid = fork do exec "#{bin}/chronograf" end sleep 1 output = shell_output("curl -s 0.0.0.0:8888/chronograf/v1/") sleep 1 assert_match %r{/chronograf/v1/layouts}, output ensure Process.kill("SIGINT", pid) Process.wait(pid) end end end