class Zurl < Formula desc "HTTP and WebSocket client worker with ZeroMQ interface" homepage "https://github.com/fanout/zurl" url "https://dl.bintray.com/fanout/source/zurl-1.5.1.tar.bz2" sha256 "945fccc160ea655249e7dd3706a5db096bab6d1d08fc6e290e53a9635f07c7d4" bottle do cellar :any sha256 "c9d48e5eff5ff9cc57cd99eecadea25047216c9bc3510f813bd5324525f0b866" => :el_capitan sha256 "9d5b6ce92eb76bde188915070d383a98812274140f20c9315b89f7af7f737f69" => :yosemite sha256 "a2bb8f6471dbc757b8a46e0a60e743a7a3e43f5b8ca4f3128eb8c6902922e243" => :mavericks end depends_on "pkg-config" => :build depends_on "curl" if MacOS.version < :lion depends_on "qt5" depends_on "zeromq" resource "pyzmq" do url "https://pypi.python.org/packages/source/p/pyzmq/pyzmq-15.2.0.tar.gz" sha256 "2dafa322670a94e20283aba2a44b92134d425bd326419b68ad4db8d0831a26ec" end def install system "./configure", "--prefix=#{prefix}", "--extraconf=QMAKE_MACOSX_DEPLOYMENT_TARGET=#{MacOS.version}" system "make" system "make", "install" end test do conffile = testpath/"zurl.conf" ipcfile = testpath/"zurl-req" runfile = testpath/"test.py" resource("pyzmq").stage { system "python", *Language::Python.setup_install_args(testpath/"vendor") } conffile.write(<<-EOS.undent [General] in_req_spec=ipc://#{ipcfile} defpolicy=allow timeout=10 EOS ) runfile.write(<<-EOS.undent import json import threading from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer import zmq class TestHandler(BaseHTTPRequestHandler): def do_GET(self): self.send_response(200) self.end_headers() self.wfile.write('test response\\n') port = None def server_worker(c): global port server = HTTPServer(('', 0), 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() ctx = zmq.Context() sock = ctx.socket(zmq.REQ) sock.connect('ipc://#{ipcfile}') req = {'id': '1', 'method': 'GET', 'uri': 'http://localhost:%d/test' % port} sock.send('J' + json.dumps(req)) poller = zmq.Poller() poller.register(sock, zmq.POLLIN) socks = dict(poller.poll(15000)) assert(socks.get(sock) == zmq.POLLIN) resp = json.loads(sock.recv()[1:]) assert('type' not in resp) assert(resp['body'] == 'test response\\n') EOS ) pid = fork do exec "#{bin}/zurl", "--config=#{conffile}" end begin ENV["PYTHONPATH"] = testpath/"vendor/lib/python2.7/site-packages" system "python", runfile ensure Process.kill("TERM", pid) Process.wait(pid) end end end