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.0.15.tar.gz" sha256 "c21871f7e1454b1698ff29601a296f4b09365fac25bea45c0af21542d486c307" head "https://github.com/coreos/etcd.git" bottle do cellar :any_skip_relocation sha256 "e730e1a48561058fc9acce981fc66b0811248a0935446226b5f56147b9cfafd9" => :sierra sha256 "e6560255780263db4754a96c4fa8716c9d9c8a95c090d0013f410787a3432d07" => :el_capitan sha256 "0b81392827ba5ca94165bc903213ccc8e3472640b6843cf0f4aca3b2cdf5db87" => :yosemite 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.undent 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