homebrew-core/Formula/maxwell.rb

45 lines
1.3 KiB
Ruby

class Maxwell < Formula
desc "Reads MySQL binlogs and writes row updates as JSON to Kafka"
homepage "https://maxwells-daemon.io/"
url "https://github.com/zendesk/maxwell/releases/download/v1.39.4/maxwell-1.39.4.tar.gz"
sha256 "b57c3f7f66f558d85c06ffca4320c3cb9346004ac3fd5c0325085054ee8223cd"
license "Apache-2.0"
livecheck do
url :stable
strategy :github_latest
end
bottle do
sha256 cellar: :any_skip_relocation, all: "331b995f8df51e601961b10401579a465c1125bc162bee488eb43a90f9839aa0"
end
depends_on "openjdk@11"
def install
libexec.install Dir["*"]
%w[maxwell maxwell-bootstrap].each do |f|
bin.install libexec/"bin/#{f}"
end
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("11.0"))
end
test do
log = testpath/"maxwell.log"
fork do
$stdout.reopen(log)
$stderr.reopen(log)
# Tell Maxwell to connect to a bogus host name so we don't actually connect to a local instance
# The '.invalid' TLD is reserved as never to be installed as a valid TLD.
exec "#{bin}/maxwell --host not.real.invalid"
end
sleep 15
# Validate that we actually got in to Maxwell far enough to attempt to connect.
assert_match "CommunicationsException: Communications link failure", log.read
end
end