71 lines
2.2 KiB
Ruby
71 lines
2.2 KiB
Ruby
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.1.8.tar.gz"
|
|
sha256 "f68700f710dfd9c5fefb41a60e96f9d0c7907e6abe21518ab0a05f6e425a3d4e"
|
|
head "https://github.com/coreos/etcd.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "d454189a9f92f00538016325fd2a709b627d49d25af4c54e70ff22ecd412bc7c" => :sierra
|
|
sha256 "377efbbf951517e2a22a4e4a6990523fce56e876219dbb2d59c134e68be0d470" => :el_capitan
|
|
sha256 "d0513dd639e3fc7b8b5e1fc875a978dad3a9fd745934e66f79ac4e2490485d89" => :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
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>KeepAlive</key>
|
|
<dict>
|
|
<key>SuccessfulExit</key>
|
|
<false/>
|
|
</dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/etcd</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
</dict>
|
|
</plist>
|
|
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
|