homebrew-core/Formula/kafka.rb

109 lines
4.3 KiB
Ruby

class Kafka < Formula
desc "Open-source distributed event streaming platform"
homepage "https://kafka.apache.org/"
url "https://www.apache.org/dyn/closer.lua?path=kafka/3.1.0/kafka_2.13-3.1.0.tgz"
mirror "https://archive.apache.org/dist/kafka/3.1.0/kafka_2.13-3.1.0.tgz"
sha256 "3fd643f16d11ccdb81a7b296f305d7fa0ae6c9e39e1a701bac56929e2e4d6710"
license "Apache-2.0"
livecheck do
url "https://kafka.apache.org/downloads"
regex(/href=.*?kafka[._-]v?\d+(?:\.\d+)+-(\d+(?:\.\d+)+)\.t/i)
end
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "3dec0340024823abf23c584bf8c96bb132558b72324f9255e6722f702b8c97f6"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "3dec0340024823abf23c584bf8c96bb132558b72324f9255e6722f702b8c97f6"
sha256 cellar: :any_skip_relocation, monterey: "4de5988e89839edd0e6e33ce37e4b5c2926295cdc2f7d05c09d5d535751350fd"
sha256 cellar: :any_skip_relocation, big_sur: "4de5988e89839edd0e6e33ce37e4b5c2926295cdc2f7d05c09d5d535751350fd"
sha256 cellar: :any_skip_relocation, catalina: "4de5988e89839edd0e6e33ce37e4b5c2926295cdc2f7d05c09d5d535751350fd"
sha256 cellar: :any_skip_relocation, x86_64_linux: "3dec0340024823abf23c584bf8c96bb132558b72324f9255e6722f702b8c97f6"
end
depends_on "openjdk"
depends_on "zookeeper"
def install
data = var/"lib"
inreplace "config/server.properties",
"log.dirs=/tmp/kafka-logs", "log.dirs=#{data}/kafka-logs"
inreplace "config/zookeeper.properties",
"dataDir=/tmp/zookeeper", "dataDir=#{data}/zookeeper"
# remove Windows scripts
rm_rf "bin/windows"
libexec.install "libs"
prefix.install "bin"
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env)
Dir["#{bin}/*.sh"].each { |f| mv f, f.to_s.gsub(/.sh$/, "") }
mv "config", "kafka"
etc.install "kafka"
libexec.install_symlink etc/"kafka" => "config"
# create directory for kafka stdout+stderr output logs when run by launchd
(var+"log/kafka").mkpath
end
service do
run [opt_bin/"kafka-server-start", etc/"kafka/server.properties"]
keep_alive true
working_dir HOMEBREW_PREFIX
log_path var/"log/kafka/kafka_output.log"
error_log_path var/"log/kafka/kafka_output.log"
end
test do
ENV["LOG_DIR"] = "#{testpath}/kafkalog"
(testpath/"kafka").mkpath
cp "#{etc}/kafka/zookeeper.properties", testpath/"kafka"
cp "#{etc}/kafka/server.properties", testpath/"kafka"
inreplace "#{testpath}/kafka/zookeeper.properties", "#{var}/lib", testpath
inreplace "#{testpath}/kafka/server.properties", "#{var}/lib", testpath
zk_port = free_port
kafka_port = free_port
inreplace "#{testpath}/kafka/zookeeper.properties", "clientPort=2181", "clientPort=#{zk_port}"
inreplace "#{testpath}/kafka/server.properties" do |s|
s.gsub! "zookeeper.connect=localhost:2181", "zookeeper.connect=localhost:#{zk_port}"
s.gsub! "#listeners=PLAINTEXT://:9092", "listeners=PLAINTEXT://:#{kafka_port}"
end
begin
fork do
exec "#{bin}/zookeeper-server-start #{testpath}/kafka/zookeeper.properties " \
"> #{testpath}/test.zookeeper-server-start.log 2>&1"
end
sleep 15
fork do
exec "#{bin}/kafka-server-start #{testpath}/kafka/server.properties " \
"> #{testpath}/test.kafka-server-start.log 2>&1"
end
sleep 30
system "#{bin}/kafka-topics --bootstrap-server localhost:#{kafka_port} --create --if-not-exists " \
"--replication-factor 1 --partitions 1 --topic test > #{testpath}/kafka/demo.out " \
"2>/dev/null"
pipe_output "#{bin}/kafka-console-producer --bootstrap-server localhost:#{kafka_port} --topic test 2>/dev/null",
"test message"
system "#{bin}/kafka-console-consumer --bootstrap-server localhost:#{kafka_port} --topic test " \
"--from-beginning --max-messages 1 >> #{testpath}/kafka/demo.out 2>/dev/null"
system "#{bin}/kafka-topics --bootstrap-server localhost:#{kafka_port} --delete --topic test " \
">> #{testpath}/kafka/demo.out 2>/dev/null"
ensure
system "#{bin}/kafka-server-stop"
system "#{bin}/zookeeper-server-stop"
sleep 10
end
assert_match(/test message/, File.read("#{testpath}/kafka/demo.out"))
end
end