当前位置: 首页>>代码示例>>Python>>正文


Python Shove.execute方法代码示例

本文整理汇总了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)))
开发者ID:mozilla,项目名称:shove,代码行数:9,代码来源:test_base.py

示例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)))
开发者ID:uberj,项目名称:shove,代码行数:9,代码来源:test_base.py

示例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)
开发者ID:mozilla,项目名称:shove,代码行数:10,代码来源:test_base.py

示例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"})
        )
开发者ID:uberj,项目名称:shove,代码行数:14,代码来源:test_base.py

示例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)
开发者ID:mozilla,项目名称:shove,代码行数:16,代码来源:test_base.py

示例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")
开发者ID:uberj,项目名称:shove,代码行数:17,代码来源:test_base.py

示例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')
开发者ID:mozilla,项目名称:shove,代码行数:17,代码来源:test_base.py

示例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`")))
开发者ID:uberj,项目名称:shove,代码行数:7,代码来源:test_base.py

示例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."))
开发者ID:uberj,项目名称:shove,代码行数:7,代码来源:test_base.py

示例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`')))
开发者ID:mozilla,项目名称:shove,代码行数:7,代码来源:test_base.py

示例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.'))
开发者ID:mozilla,项目名称:shove,代码行数:7,代码来源:test_base.py


注:本文中的shove.Shove.execute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。