本文整理汇总了Python中shove.Shove.execute方法的典型用法代码示例。如果您正苦于以下问题:Python Shove.execute方法的具体用法?Python Shove.execute怎么用?Python Shove.execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类shove.Shove
的用法示例。
在下文中一共展示了Shove.execute方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_execute_invalid_command
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_invalid_command(self):
"""If the given command could not be found for the given project, return an error tuple."""
shove = Shove({'myproject': path('test_project')})
order = Order(project='myproject', command='foo', log_key=5, log_queue='asdf')
procfile_path = path('test_project', 'bin', 'commands.procfile')
eq_(shove.execute(order), (1, 'No command `foo` found in {0}'.format(procfile_path)))
示例2: test_execute_invalid_command
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_invalid_command(self):
"""If the given command could not be found for the given project, return an error tuple."""
shove = Shove({"myproject": path("test_project")}, Mock())
order = Order(project="myproject", command="foo", log_key=5, log_queue="asdf")
procfile_path = path("test_project", "bin", "commands.procfile")
eq_(shove.execute(order), (1, "No command `foo` found in {0}".format(procfile_path)))
示例3: test_process_order_invalid
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_process_order_invalid(self):
"""If parse_order returns None, do not execute the order."""
shove = Shove({})
shove.parse_order = Mock(return_value=None)
shove.execute = Mock()
eq_(shove.process_order('{"project": "asdf"}'), None)
ok_(not shove.execute.called)
示例4: test_process_order_valid
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_process_order_valid(self):
"""If parse_order returns a valid order, execute it and send logs back to Captain."""
shove = Shove({}, Mock())
order = Order(project="asdf", command="qwer", log_key=23, log_queue="zxcv")
shove.parse_order = Mock(return_value=order)
shove.execute = Mock(return_value=(0, "output"))
shove.process_order('{"project": "asdf"}')
shove.execute.assert_called_with(order)
shove.adapter.send_log.assert_called_with(
"zxcv", JSON({"version": "1.0", "log_key": 23, "return_code": 0, "output": "output"})
)
示例5: test_process_order_valid
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_process_order_valid(self):
"""If parse_order returns a valid order, execute it and send logs back to Captain."""
shove = Shove({})
order = Order(project='asdf', command='qwer', log_key=23, log_queue='zxcv')
shove.parse_order = Mock(return_value=order)
shove.execute = Mock(return_value=(0, 'output'))
eq_(shove.process_order('{"project": "asdf"}'), ('zxcv', JSON({
'version': '1.0',
'log_key': 23,
'return_code': 0,
'output': 'output'
})))
shove.execute.assert_called_with(order)
示例6: test_execute_valid_order
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_valid_order(self):
shove = Shove({"myproject": path("test_project")}, Mock())
order = Order(project="myproject", command="pwd", log_key=5, log_queue="asdf")
with patch("shove.base.Popen") as Popen:
p = Popen.return_value
p.communicate.return_value = "command output", None
p.returncode = 0
return_code, output = shove.execute(order)
Popen.assert_called_with(["pwd"], cwd=path("test_project"), stdout=PIPE, stderr=STDOUT)
p.communicate.assert_called_with()
eq_(return_code, 0)
eq_(output, "command output")
示例7: test_execute_valid_order
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_valid_order(self):
shove = Shove({'myproject': path('test_project')})
order = Order(project='myproject', command='pwd', log_key=5, log_queue='asdf')
with patch('shove.base.Popen') as Popen:
p = Popen.return_value
p.communicate.return_value = 'command output', None
p.returncode = 0
return_code, output = shove.execute(order)
Popen.assert_called_with(['pwd'], cwd=path('test_project'), stdout=PIPE, stderr=STDOUT)
p.communicate.assert_called_with()
eq_(return_code, 0)
eq_(output, 'command output')
示例8: test_execute_no_procfile
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_no_procfile(self):
"""If no procfile is found for the given project, return an error tuple."""
shove = Shove({"myproject": path("nonexistant")}, Mock())
order = Order(project="myproject", command="foo", log_key=5, log_queue="asdf")
eq_(shove.execute(order), (1, CONTAINS("Error loading procfile for project `myproject`")))
示例9: test_execute_invalid_project
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_invalid_project(self):
"""If no project with the given name is found, return an error tuple."""
shove = Shove({"myproject": "/foo/bar/baz"}, Mock())
order = Order(project="nonexistant", command="foo", log_key=5, log_queue="asdf")
eq_(shove.execute(order), (1, "No project `nonexistant` found."))
示例10: test_execute_no_procfile
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_no_procfile(self):
"""If no procfile is found for the given project, return an error tuple."""
shove = Shove({'myproject': path('nonexistant')})
order = Order(project='myproject', command='foo', log_key=5, log_queue='asdf')
eq_(shove.execute(order), (1, CONTAINS('Error loading procfile for project `myproject`')))
示例11: test_execute_invalid_project
# 需要导入模块: from shove import Shove [as 别名]
# 或者: from shove.Shove import execute [as 别名]
def test_execute_invalid_project(self):
"""If no project with the given name is found, return an error tuple."""
shove = Shove({'myproject': '/foo/bar/baz'})
order = Order(project='nonexistant', command='foo', log_key=5, log_queue='asdf')
eq_(shove.execute(order), (1, 'No project `nonexistant` found.'))