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


Python RunnerContainerService.get_entry_point_abs_path方法代码示例

本文整理汇总了Python中st2actions.container.service.RunnerContainerService.get_entry_point_abs_path方法的典型用法代码示例。如果您正苦于以下问题:Python RunnerContainerService.get_entry_point_abs_path方法的具体用法?Python RunnerContainerService.get_entry_point_abs_path怎么用?Python RunnerContainerService.get_entry_point_abs_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在st2actions.container.service.RunnerContainerService的用法示例。


在下文中一共展示了RunnerContainerService.get_entry_point_abs_path方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_get_entry_point_absolute_path_empty

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
 def test_get_entry_point_absolute_path_empty(self):
     service = RunnerContainerService()
     orig_path = cfg.CONF.content.system_packs_base_path
     cfg.CONF.content.system_packs_base_path = '/tests/packs'
     acutal_path = service.get_entry_point_abs_path(pack='foo', entry_point=None)
     self.assertEqual(acutal_path, None, 'Entry point path doesn\'t match.')
     acutal_path = service.get_entry_point_abs_path(pack='foo', entry_point='')
     self.assertEqual(acutal_path, None, 'Entry point path doesn\'t match.')
     cfg.CONF.content.system_packs_base_path = orig_path
开发者ID:ipv1337,项目名称:st2,代码行数:11,代码来源:test_runner_container_service.py

示例2: test_get_entry_point_absolute_path_empty

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
 def test_get_entry_point_absolute_path_empty(self):
     service = RunnerContainerService()
     orig_path = cfg.CONF.content.system_packs_base_path
     cfg.CONF.content.system_packs_base_path = "/tests/packs"
     acutal_path = service.get_entry_point_abs_path(pack="foo", entry_point=None)
     self.assertEqual(acutal_path, None, "Entry point path doesn't match.")
     acutal_path = service.get_entry_point_abs_path(pack="foo", entry_point="")
     self.assertEqual(acutal_path, None, "Entry point path doesn't match.")
     cfg.CONF.content.system_packs_base_path = orig_path
开发者ID:azamsheriff,项目名称:st2,代码行数:11,代码来源:test_runner_container_service.py

示例3: test_get_entry_point_absolute_path

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
 def test_get_entry_point_absolute_path(self):
     service = RunnerContainerService()
     orig_path = cfg.CONF.content.packs_base_path
     cfg.CONF.content.packs_base_path = '/tests/packs'
     acutal_path = service.get_entry_point_abs_path(pack='foo', entry_point='/foo/bar.py')
     self.assertEqual(acutal_path, '/foo/bar.py', 'Entry point path doesn\'t match.')
     cfg.CONF.content.packs_base_path = orig_path
开发者ID:bjoernbessert,项目名称:st2,代码行数:9,代码来源:test_runner_container_service.py

示例4: _invoke_post_run

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
    def _invoke_post_run(self, actionexec_db, action_db):
        LOG.info(
            "Invoking post run for action execution %s. Action=%s; Runner=%s",
            actionexec_db.id,
            action_db.name,
            action_db.runner_type["name"],
        )

        # Get an instance of the action runner.
        runnertype_db = get_runnertype_by_name(action_db.runner_type["name"])
        runner = get_runner(runnertype_db.runner_module)

        # Configure the action runner.
        runner.container_service = RunnerContainerService()
        runner.action = action_db
        runner.action_name = action_db.name
        runner.action_execution_id = str(actionexec_db.id)
        runner.entry_point = RunnerContainerService.get_entry_point_abs_path(
            pack=action_db.pack, entry_point=action_db.entry_point
        )
        runner.context = getattr(actionexec_db, "context", dict())
        runner.callback = getattr(actionexec_db, "callback", dict())
        runner.libs_dir_path = RunnerContainerService.get_action_libs_abs_path(
            pack=action_db.pack, entry_point=action_db.entry_point
        )

        # Invoke the post_run method.
        runner.post_run(actionexec_db.status, actionexec_db.result)
开发者ID:Pulsant,项目名称:st2,代码行数:30,代码来源:base.py

示例5: test_get_entry_point_relative_path

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
 def test_get_entry_point_relative_path(self):
     service = RunnerContainerService()
     orig_path = cfg.CONF.content.system_packs_base_path
     cfg.CONF.content.system_packs_base_path = "/tests/packs"
     acutal_path = service.get_entry_point_abs_path(pack="foo", entry_point="foo/bar.py")
     expected_path = os.path.join(cfg.CONF.content.system_packs_base_path, "foo", "actions", "foo/bar.py")
     self.assertEqual(acutal_path, expected_path, "Entry point path doesn't match.")
     cfg.CONF.content.system_packs_base_path = orig_path
开发者ID:azamsheriff,项目名称:st2,代码行数:10,代码来源:test_runner_container_service.py

示例6: test_get_entry_point_relative_path

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
 def test_get_entry_point_relative_path(self):
     service = RunnerContainerService()
     orig_path = cfg.CONF.content.system_packs_base_path
     cfg.CONF.content.system_packs_base_path = '/tests/packs'
     acutal_path = service.get_entry_point_abs_path(pack='foo', entry_point='foo/bar.py')
     expected_path = os.path.join(cfg.CONF.content.system_packs_base_path, 'foo', 'actions',
                                  'foo/bar.py')
     self.assertEqual(acutal_path, expected_path, 'Entry point path doesn\'t match.')
     cfg.CONF.content.system_packs_base_path = orig_path
开发者ID:ipv1337,项目名称:st2,代码行数:11,代码来源:test_runner_container_service.py

示例7: get_one

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
    def get_one(self, action_id):
        """
            Outputs the file associated with action entry_point

            Handles requests:
                GET /actions/views/entry_point/1
        """
        LOG.info('GET /actions/views/overview with id=%s', action_id)
        action_db = LookupUtils._get_action_by_id(action_id)

        pack = getattr(action_db, 'pack', None)
        entry_point = getattr(action_db, 'entry_point', None)

        abs_path = RunnerContainerService.get_entry_point_abs_path(pack, entry_point)

        if not abs_path:
            raise StackStormDBObjectNotFoundError('Action id=%s has no entry_point to output'
                                                  % action_id)

        with open(abs_path) as file:
            content = file.read()

        return content
开发者ID:bjoernbessert,项目名称:st2,代码行数:25,代码来源:actionviews.py

示例8: _get_entry_point_abs_path

# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_entry_point_abs_path [as 别名]
 def _get_entry_point_abs_path(self, pack, entry_point):
     return RunnerContainerService.get_entry_point_abs_path(pack=pack,
                                                            entry_point=entry_point)
开发者ID:beryah,项目名称:st2,代码行数:5,代码来源:base.py


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