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


Python PublishStep.state方法代码示例

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


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

示例1: test_build_final_report_success

# 需要导入模块: from pulp.plugins.util.publish_step import PublishStep [as 别名]
# 或者: from pulp.plugins.util.publish_step.PublishStep import state [as 别名]
    def test_build_final_report_success(self):

        step_one = PublishStep('step_one')
        step_one.state = reporting_constants.STATE_COMPLETE
        step_two = PublishStep('step_two')
        step_two.state = reporting_constants.STATE_COMPLETE
        self.publisher.add_child(step_one)
        self.publisher.add_child(step_two)

        report = self.publisher._build_final_report()

        self.assertTrue(report.success_flag)
开发者ID:hgschmie,项目名称:pulp,代码行数:14,代码来源:test_publish_step.py

示例2: test_get_progress_report_description

# 需要导入模块: from pulp.plugins.util.publish_step import PublishStep [as 别名]
# 或者: from pulp.plugins.util.publish_step.PublishStep import state [as 别名]
    def test_get_progress_report_description(self):
        step = PublishStep('bar_step')
        step.description = 'bar'
        step.progress_details = 'baz'
        step.error_details = "foo"
        step.state = reporting_constants.STATE_COMPLETE
        step.total_units = 2
        step.progress_successes = 1
        step.progress_failures = 1
        report = step.get_progress_report()

        target_report = {
            reporting_constants.PROGRESS_STEP_TYPE_KEY: 'bar_step',
            reporting_constants.PROGRESS_NUM_SUCCESSES_KEY: 1,
            reporting_constants.PROGRESS_STATE_KEY: step.state,
            reporting_constants.PROGRESS_ERROR_DETAILS_KEY: step.error_details,
            reporting_constants.PROGRESS_NUM_PROCESSED_KEY: 2,
            reporting_constants.PROGRESS_NUM_FAILURES_KEY: 1,
            reporting_constants.PROGRESS_ITEMS_TOTAL_KEY: 2,
            reporting_constants.PROGRESS_DESCRIPTION_KEY: 'bar',
            reporting_constants.PROGRESS_DETAILS_KEY: 'baz',
            reporting_constants.PROGRESS_STEP_UUID: step.uuid
        }

        compare_dict(report[0], target_report)
开发者ID:hgschmie,项目名称:pulp,代码行数:27,代码来源:test_publish_step.py

示例3: test_get_progress_report_summary

# 需要导入模块: from pulp.plugins.util.publish_step import PublishStep [as 别名]
# 或者: from pulp.plugins.util.publish_step.PublishStep import state [as 别名]
 def test_get_progress_report_summary(self):
     parent_step = PublishStep('parent_step')
     step = PublishStep('foo_step')
     parent_step.add_child(step)
     step.state = reporting_constants.STATE_COMPLETE
     report = parent_step.get_progress_report_summary()
     target_report = {
         'foo_step': reporting_constants.STATE_COMPLETE
     }
     compare_dict(report, target_report)
开发者ID:hgschmie,项目名称:pulp,代码行数:12,代码来源:test_publish_step.py


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