本文整理汇总了Python中st2actions.container.service.RunnerContainerService.get_action_libs_abs_path方法的典型用法代码示例。如果您正苦于以下问题:Python RunnerContainerService.get_action_libs_abs_path方法的具体用法?Python RunnerContainerService.get_action_libs_abs_path怎么用?Python RunnerContainerService.get_action_libs_abs_path使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类st2actions.container.service.RunnerContainerService
的用法示例。
在下文中一共展示了RunnerContainerService.get_action_libs_abs_path方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_action_libs_abs_path
# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_action_libs_abs_path [as 别名]
def test_get_action_libs_abs_path(self):
service = RunnerContainerService()
orig_path = cfg.CONF.content.system_packs_base_path
cfg.CONF.content.system_packs_base_path = '/tests/packs'
# entry point relative.
acutal_path = service.get_action_libs_abs_path(pack='foo', entry_point='foo/bar.py')
expected_path = os.path.join(cfg.CONF.content.system_packs_base_path, 'foo', 'actions',
os.path.join('foo', ACTION_LIBS_DIR))
self.assertEqual(acutal_path, expected_path, 'Action libs path doesn\'t match.')
# entry point absolute.
acutal_path = service.get_action_libs_abs_path(pack='foo', entry_point='/tmp/foo.py')
expected_path = os.path.join('/tmp', ACTION_LIBS_DIR)
self.assertEqual(acutal_path, expected_path, 'Action libs path doesn\'t match.')
cfg.CONF.content.system_packs_base_path = orig_path
示例2: _invoke_post_run
# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_action_libs_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)
示例3: test_get_action_libs_abs_path
# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_action_libs_abs_path [as 别名]
def test_get_action_libs_abs_path(self):
service = RunnerContainerService()
orig_path = cfg.CONF.content.system_packs_base_path
cfg.CONF.content.system_packs_base_path = "/tests/packs"
# entry point relative.
acutal_path = service.get_action_libs_abs_path(pack="foo", entry_point="foo/bar.py")
expected_path = os.path.join(
cfg.CONF.content.system_packs_base_path, "foo", "actions", os.path.join("foo", ACTION_LIBS_DIR)
)
self.assertEqual(acutal_path, expected_path, "Action libs path doesn't match.")
# entry point absolute.
acutal_path = service.get_action_libs_abs_path(pack="foo", entry_point="/tests/packs/foo/tmp/foo.py")
expected_path = os.path.join("/tests/packs/foo/tmp", ACTION_LIBS_DIR)
self.assertEqual(acutal_path, expected_path, "Action libs path doesn't match.")
cfg.CONF.content.system_packs_base_path = orig_path
示例4: _get_action_libs_abs_path
# 需要导入模块: from st2actions.container.service import RunnerContainerService [as 别名]
# 或者: from st2actions.container.service.RunnerContainerService import get_action_libs_abs_path [as 别名]
def _get_action_libs_abs_path(self, pack, entry_point):
return RunnerContainerService.get_action_libs_abs_path(pack=pack,
entry_point=entry_point)