homebrew-core/Formula/selenium-server-standalone.rb
Tim Brust 3f9ddb4fcf selenium-server-standalone 3.3.1
Closes #11070.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2017-03-14 11:37:12 +01:00

50 lines
1.7 KiB
Ruby

class SeleniumServerStandalone < Formula
desc "Browser automation for testing purposes"
homepage "http://seleniumhq.org/"
url "https://selenium-release.storage.googleapis.com/3.3/selenium-server-standalone-3.3.1.jar"
sha256 "94a0bd034636a2430d9d52b73b8e29e819af103ab84000de241ca83eb4e142f6"
bottle :unneeded
def install
libexec.install "selenium-server-standalone-#{version}.jar"
bin.write_jar_script libexec/"selenium-server-standalone-#{version}.jar", "selenium-server"
end
plist_options :manual => "selenium-server -port 4444"
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>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/java</string>
<string>-jar</string>
<string>#{libexec}/selenium-server-standalone-#{version}.jar</string>
<string>-port</string>
<string>4444</string>
</array>
<key>ServiceDescription</key>
<string>Selenium Server</string>
<key>StandardErrorPath</key>
<string>#{var}/log/selenium-error.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/selenium-output.log</string>
</dict>
</plist>
EOS
end
test do
selenium_version = shell_output("unzip -p #{libexec}/selenium-server-standalone-#{version}.jar META-INF/MANIFEST.MF | sed -nEe '/Selenium-Version:/p'")
assert_equal "Selenium-Version: #{version}", selenium_version.strip
end
end