2017-05-10 15:29:28 +00:00
|
|
|
class Cockroach < Formula
|
|
|
|
desc "Distributed SQL database"
|
|
|
|
homepage "https://www.cockroachlabs.com"
|
2017-07-06 18:03:10 +00:00
|
|
|
url "https://binaries.cockroachdb.com/cockroach-v1.0.3.src.tgz"
|
|
|
|
version "1.0.3"
|
|
|
|
sha256 "80e9f3858dc0fd3e0cf08540b3f9a3e3f0fcefd8bc66bfc14e716de36be25765"
|
2017-05-10 15:29:28 +00:00
|
|
|
head "https://github.com/cockroachdb/cockroach.git"
|
|
|
|
|
2017-05-14 01:07:30 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
2017-07-06 18:39:52 +00:00
|
|
|
sha256 "acd84d2beb4b4abccb942f7196033f07057552152867e156d0096949c41932d2" => :sierra
|
|
|
|
sha256 "55e466fe461a31a25f22aa157607ce09079fe2a44b2cc4df2cd6caad31b79ea1" => :el_capitan
|
|
|
|
sha256 "db6dd7ab4ce5ff884bef39324c3260d1771e3d4fcaef17958f5db6836bdf4168" => :yosemite
|
2017-05-14 01:07:30 +00:00
|
|
|
end
|
|
|
|
|
2017-05-10 15:29:28 +00:00
|
|
|
depends_on "cmake" => :build
|
|
|
|
depends_on "go" => :build
|
|
|
|
depends_on "xz" => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make", "install", "prefix=#{prefix}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
For local development only, this formula ships a launchd configuration to
|
|
|
|
start a single-node cluster that stores its data under:
|
|
|
|
#{var}/cockroach/
|
|
|
|
Instead of the default port of 8080, the node serves its admin UI at:
|
|
|
|
#{Formatter.url("http://localhost:26256")}
|
|
|
|
|
|
|
|
Do NOT use this cluster to store data you care about; it runs in insecure
|
|
|
|
mode and may expose data publicly in e.g. a DNS rebinding attack. To run
|
|
|
|
CockroachDB securely, please see:
|
|
|
|
#{Formatter.url("https://www.cockroachlabs.com/docs/secure-a-cluster.html")}
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
plist_options :manual => "cockroach start --insecure"
|
|
|
|
|
|
|
|
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>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{opt_bin}/cockroach</string>
|
|
|
|
<string>start</string>
|
|
|
|
<string>--store=#{var}/cockroach/</string>
|
|
|
|
<string>--http-port=26256</string>
|
|
|
|
<string>--insecure</string>
|
|
|
|
<string>--host=localhost</string>
|
|
|
|
</array>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{var}</string>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
begin
|
|
|
|
# Redirect stdout and stderr to a file, or else `brew test --verbose`
|
|
|
|
# will hang forever as it waits for stdout and stderr to close.
|
|
|
|
system "#{bin}/cockroach start --insecure --background &> start.out"
|
|
|
|
pipe_output("#{bin}/cockroach sql --insecure", <<-EOS.undent)
|
|
|
|
CREATE DATABASE bank;
|
|
|
|
CREATE TABLE bank.accounts (id INT PRIMARY KEY, balance DECIMAL);
|
|
|
|
INSERT INTO bank.accounts VALUES (1, 1000.50);
|
|
|
|
EOS
|
|
|
|
output = pipe_output("#{bin}/cockroach sql --insecure --format=csv",
|
|
|
|
"SELECT * FROM bank.accounts;")
|
|
|
|
assert_equal <<-EOS.undent, output
|
|
|
|
1 row
|
|
|
|
id,balance
|
|
|
|
1,1000.50
|
|
|
|
EOS
|
|
|
|
ensure
|
|
|
|
system "#{bin}/cockroach", "quit", "--insecure"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|