class SeleniumServerStandalone < Formula desc "Browser automation for testing purposes" homepage "http://seleniumhq.org/" url "https://selenium-release.storage.googleapis.com/3.11/selenium-server-standalone-3.11.0.jar" sha256 "5e6c9ed11e94bfb87407f7da2ebe0d1d609c1fa4d34c82108fc94b2509797312" 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 Label #{plist_name} RunAtLoad KeepAlive ProgramArguments /usr/bin/java -jar #{libexec}/selenium-server-standalone-#{version}.jar -port 4444 ServiceDescription Selenium Server StandardErrorPath #{var}/log/selenium-error.log StandardOutPath #{var}/log/selenium-output.log 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