def test_process_parameters(self): # all the options passed to the process should be available by the # command / process p1 = Process('1', 'make-me-a-coffee', '$(circus.wid) --type $(circus.env.type)', shell=False, spawn=False, env={'type': 'macchiato'}) self.assertEquals(['make-me-a-coffee', '1', '--type', 'macchiato'], p1.format_args()) p2 = Process('1', 'yeah $(CIRCUS.WID)', spawn=False) self.assertEquals(['yeah', '1'], p2.format_args()) os.environ['coffee_type'] = 'american' p3 = Process('1', 'yeah $(circus.env.type)', shell=False, spawn=False, env={'type': 'macchiato'}) self.assertEquals(['yeah', 'macchiato'], p3.format_args()) os.environ.pop('coffee_type')
def test_process_parameters(self): # all the options passed to the process should be available by the # command / process p1 = Process('1', 'make-me-a-coffee', '$(circus.wid) --type $(circus.env.type)', shell=False, spawn=False, env={'type': 'macchiato'}) self.assertEquals(['make-me-a-coffee', '1', '--type', 'macchiato'], p1.format_args()) p2 = Process('1', 'yeah $(CIRCUS.WID)', spawn=False) self.assertEquals(['yeah', '1'], p2.format_args())
def test_issue310(self): ''' https://github.com/mozilla-services/circus/pull/310 Allow $(circus.sockets.name) to be used in args. ''' conf = get_config(_CONF['issue310']) watcher = Watcher.load_from_config(conf['watchers'][0]) socket = CircusSocket.load_from_config(conf['sockets'][0]) try: watcher.initialize(None, {'web': socket}, None) process = Process(watcher._nextwid, watcher.cmd, args=watcher.args, working_dir=watcher.working_dir, shell=watcher.shell, uid=watcher.uid, gid=watcher.gid, env=watcher.env, rlimits=watcher.rlimits, spawn=False, executable=watcher.executable, use_fds=watcher.use_sockets, watcher=watcher) sockets_fds = watcher._get_sockets_fds() formatted_args = process.format_args(sockets_fds=sockets_fds) fd = sockets_fds['web'] self.assertEqual(formatted_args, ['foo', '--fd', str(fd)]) finally: socket.close()
def test_issue310(self): """ https://github.com/mozilla-services/circus/pull/310 Allow $(circus.sockets.name) to be used in args. """ conf = get_config(_CONF["issue310"]) watcher = Watcher.load_from_config(conf["watchers"][0]) socket = CircusSocket.load_from_config(conf["sockets"][0]) watcher.initialize(None, {"web": socket}, None) process = Process( watcher._process_counter, watcher.cmd, args=watcher.args, working_dir=watcher.working_dir, shell=watcher.shell, uid=watcher.uid, gid=watcher.gid, env=watcher.env, rlimits=watcher.rlimits, spawn=False, executable=watcher.executable, use_fds=watcher.use_sockets, watcher=watcher, ) fd = watcher._get_sockets_fds()["web"] formatted_args = process.format_args() self.assertEquals(formatted_args, ["foo", "--fd", str(fd)])
def test_process_parameters(self): # all the options passed to the process should be available by the # command / process p1 = Process('1', 'make-me-a-coffee', '$(circus.wid) --type $(circus.env.type)', shell=False, spawn=False, env={'type': 'macchiato'}, use_fds=USE_FDS) self.assertEqual(['make-me-a-coffee', '1', '--type', 'macchiato'], p1.format_args()) p2 = Process('1', 'yeah $(CIRCUS.WID)', spawn=False, use_fds=USE_FDS) self.assertEqual(['yeah', '1'], p2.format_args()) os.environ['coffee_type'] = 'american' p3 = Process('1', 'yeah $(circus.env.type)', shell=False, spawn=False, env={'type': 'macchiato'}, use_fds=USE_FDS) self.assertEqual(['yeah', 'macchiato'], p3.format_args()) os.environ.pop('coffee_type')
def load(watcher_conf): watcher = Watcher.load_from_config(watcher_conf.copy()) process = Process(watcher._nextwid, watcher.cmd, args=watcher.args, working_dir=watcher.working_dir, shell=watcher.shell, uid=watcher.uid, gid=watcher.gid, env=watcher.env, rlimits=watcher.rlimits, spawn=False, executable=watcher.executable, use_fds=watcher.use_sockets, watcher=watcher) return process.format_args()
def test_process_parameters(self): # all the options passed to the process should be available by the # command / process p1 = Process( "1", "make-me-a-coffee", "$(circus.wid) --type $(circus.env.type)", shell=False, spawn=False, env={"type": "macchiato"}, ) self.assertEqual(["make-me-a-coffee", "1", "--type", "macchiato"], p1.format_args()) p2 = Process("1", "yeah $(CIRCUS.WID)", spawn=False) self.assertEqual(["yeah", "1"], p2.format_args()) os.environ["coffee_type"] = "american" p3 = Process("1", "yeah $(circus.env.type)", shell=False, spawn=False, env={"type": "macchiato"}) self.assertEqual(["yeah", "macchiato"], p3.format_args()) os.environ.pop("coffee_type")
def load(watcher_conf): watcher = Watcher.load_from_config(watcher_conf.copy()) # Make sure we don't close the sockets as we will be # launching the Watcher with IS_WINDOWS=True watcher.use_sockets = True process = Process(watcher._nextwid, watcher.cmd, args=watcher.args, working_dir=watcher.working_dir, shell=watcher.shell, uid=watcher.uid, gid=watcher.gid, env=watcher.env, rlimits=watcher.rlimits, spawn=False, executable=watcher.executable, use_fds=watcher.use_sockets, watcher=watcher) return process.format_args()
def load(watcher_conf): watcher = Watcher.load_from_config(watcher_conf.copy()) # Make sure we don't close the sockets as we will be # launching the Watcher with IS_WINDOWS=True watcher.use_sockets = True process = Process('test', watcher._nextwid, watcher.cmd, args=watcher.args, working_dir=watcher.working_dir, shell=watcher.shell, uid=watcher.uid, gid=watcher.gid, env=watcher.env, rlimits=watcher.rlimits, spawn=False, executable=watcher.executable, use_fds=watcher.use_sockets, watcher=watcher) return process.format_args()
def test_issue310(self): """ https://github.com/mozilla-services/circus/pull/310 Allow $(circus.sockets.name) to be used in args. """ conf = get_config(_CONF["issue310"]) watcher = Watcher.load_from_config(conf["watchers"][0]) socket = CircusSocket.load_from_config(conf["sockets"][0]) try: watcher.initialize(None, {"web": socket}, None) if IS_WINDOWS: # We can't close the sockets on Windows as we # are redirecting stdout watcher.use_sockets = True process = Process( watcher._nextwid, watcher.cmd, args=watcher.args, working_dir=watcher.working_dir, shell=watcher.shell, uid=watcher.uid, gid=watcher.gid, env=watcher.env, rlimits=watcher.rlimits, spawn=False, executable=watcher.executable, use_fds=watcher.use_sockets, watcher=watcher, ) sockets_fds = watcher._get_sockets_fds() formatted_args = process.format_args(sockets_fds=sockets_fds) fd = sockets_fds["web"] self.assertEqual(formatted_args, ["foo", "--fd", str(fd)]) finally: socket.close()