class Etcd < Formula desc "Key value store for shared configuration and service discovery" homepage "https://github.com/etcd-io/etcd" url "https://github.com/etcd-io/etcd.git", :tag => "v3.4.2", :revision => "bbe86b066c0c714fa2a17ee93a37882553cf2394" head "https://github.com/etcd-io/etcd.git" bottle do cellar :any_skip_relocation sha256 "088c4137fbcb519181f0117c4a5656c292cb745a191c3fc5de7fad3271bdb0d2" => :catalina sha256 "60b6336487db73217991d34f0d2ada198c3249e2948ae7b38b77f75bb7769059" => :mojave sha256 "10e687f0309226c8bc065247575f839a27c03d89c1c2c293abf9fd878f41ac19" => :high_sierra end depends_on "go" => :build def install ENV["GOPATH"] = buildpath dir = buildpath/"src/github.com/etcd-io/etcd" dir.install buildpath.children cd dir do system "go", "build", "-ldflags", "-X main.version=#{version}", "-o", bin/"etcd" system "go", "build", "-ldflags", "-X main.version=#{version}", "-o", bin/"etcdctl", "etcdctl/main.go" prefix.install_metafiles end 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", "--enable-v2", # enable etcd v2 client support "--force-new-cluster", "--logger=zap", # default logger (`capnslog`) to be deprecated in v3.5 "--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")) assert_equal "OK\n", shell_output("#{bin}/etcdctl put foo bar") assert_equal "foo\nbar\n", shell_output("#{bin}/etcdctl get foo 2>&1") ensure # clean up the etcd process before we leave Process.kill("HUP", etcd_pid) end end end