class Pushpin < Formula desc "Reverse proxy for realtime web services" homepage "http://pushpin.org" url "https://dl.bintray.com/fanout/source/pushpin-1.14.0.tar.bz2" sha256 "e4ddd9e0df4476630c420a0df6acbe22e27cf625ff7333f8008b9e234cd9fae6" head "https://github.com/fanout/pushpin.git" bottle do sha256 "42f521ef2edb29d722404894aac4712c53ae3283615d7057e561ae3119659bf1" => :sierra sha256 "dd9e5457e18e4ae6ab68c39182ef226bc89fd004055976c311c4d0e94d45f136" => :el_capitan sha256 "ea8891754c18011a382e5872f0703e129b614d9c41ec6889ca577fb1848edac7" => :yosemite end depends_on "pkg-config" => :build depends_on "qt5" depends_on "zeromq" depends_on "mongrel2" depends_on "zurl" def install system "./configure", "--prefix=#{prefix}", "--configdir=#{etc}", "--rundir=#{var}/run", "--logdir=#{var}/log", "--extraconf=QMAKE_MACOSX_DEPLOYMENT_TARGET=#{MacOS.version}" system "make" system "make", "check" system "make", "install" end test do conffile = testpath/"pushpin.conf" routesfile = testpath/"routes" runfile = testpath/"test.py" cp HOMEBREW_PREFIX/"etc/pushpin/pushpin.conf", conffile inreplace conffile do |s| s.gsub! "rundir=#{HOMEBREW_PREFIX}/var/run/pushpin", "rundir=#{testpath}/var/run/pushpin" s.gsub! "logdir=#{HOMEBREW_PREFIX}/var/log/pushpin", "logdir=#{testpath}/var/log/pushpin" end routesfile.write <<-EOS.undent * localhost:10080 EOS runfile.write <<-EOS.undent import urllib2 import threading from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer class TestHandler(BaseHTTPRequestHandler): def do_GET(self): self.send_response(200) self.end_headers() self.wfile.write('test response\\n') def server_worker(c): global port server = HTTPServer(('', 10080), TestHandler) port = server.server_address[1] c.acquire() c.notify() c.release() try: server.serve_forever() except: server.server_close() c = threading.Condition() c.acquire() server_thread = threading.Thread(target=server_worker, args=(c,)) server_thread.daemon = True server_thread.start() c.wait() c.release() f = urllib2.urlopen('http://localhost:7999/test') body = f.read() assert(body == 'test response\\n') EOS pid = fork do exec "#{bin}/pushpin", "--config=#{conffile}" end begin sleep 3 # make sure pushpin processes have started system "python", runfile ensure Process.kill("TERM", pid) Process.wait(pid) end end end