class Etcd < Formula desc "Key value store for shared configuration and service discovery" homepage "https://github.com/coreos/etcd" url "https://github.com/coreos/etcd/archive/v3.2.12.tar.gz" sha256 "555905b2122155dce905ae98eea7c7751d8150ba6959c657ec093c1ab6803acf" head "https://github.com/coreos/etcd.git" bottle do cellar :any_skip_relocation sha256 "fc29b4effb268e2c6de677fbd1370e80163a3bedc01de956438b54ae0ccad1dd" => :high_sierra sha256 "603fb8486d392bea36bd9aedcfcff43e7a9a8c19a472e1be27cdd2248951ee46" => :sierra sha256 "e811364244057e0a5a28a8a0aef98a9f570cbe3bdf6b8d03edecb98b57284a1c" => :el_capitan end depends_on "go" => :build def install ENV["GOPATH"] = buildpath mkdir_p "src/github.com/coreos" ln_s buildpath, "src/github.com/coreos/etcd" system "./build" bin.install "bin/etcd" bin.install "bin/etcdctl" end plist_options :manual => "etcd" def plist; <<~EOS KeepAlive SuccessfulExit Label #{plist_name} ProgramArguments #{opt_bin}/etcd RunAtLoad WorkingDirectory #{var} EOS end test do begin test_string = "Hello from brew test!" etcd_pid = fork do exec bin/"etcd", "--force-new-cluster", "--data-dir=#{testpath}" end # sleep to let etcd get its wits about it sleep 10 etcd_uri = "http://127.0.0.1:2379/v2/keys/brew_test" system "curl", "--silent", "-L", etcd_uri, "-XPUT", "-d", "value=#{test_string}" curl_output = shell_output("curl --silent -L #{etcd_uri}") response_hash = JSON.parse(curl_output) assert_match(test_string, response_hash.fetch("node").fetch("value")) ensure # clean up the etcd process before we leave Process.kill("HUP", etcd_pid) end end end