當前位置: 首頁>>代碼示例>>Python>>正文


Python InsideBuilder.parents_pulled方法代碼示例

本文整理匯總了Python中atomic_reactor.build.InsideBuilder.parents_pulled方法的典型用法代碼示例。如果您正苦於以下問題:Python InsideBuilder.parents_pulled方法的具體用法?Python InsideBuilder.parents_pulled怎麽用?Python InsideBuilder.parents_pulled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在atomic_reactor.build.InsideBuilder的用法示例。


在下文中一共展示了InsideBuilder.parents_pulled方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_parent_image_inspect

# 需要導入模塊: from atomic_reactor.build import InsideBuilder [as 別名]
# 或者: from atomic_reactor.build.InsideBuilder import parents_pulled [as 別名]
def test_parent_image_inspect(parents_pulled, tmpdir, source_params):
    provided_image = "test-build:test_tag"
    if MOCK:
        mock_docker(provided_image_repotags=provided_image)

    source_params.update({'tmpdir': str(tmpdir)})
    s = get_source_instance_for(source_params)
    b = InsideBuilder(s, provided_image)
    b.parents_pulled = parents_pulled

    if not parents_pulled:
        (flexmock(atomic_reactor.util)
         .should_receive('get_inspect_for_image')
         .and_return({'Id': 123}))

    built_inspect = b.parent_image_inspect(provided_image)

    assert built_inspect is not None
    assert built_inspect["Id"] is not None
開發者ID:projectatomic,項目名稱:atomic-reactor,代碼行數:21,代碼來源:test_build.py

示例2: test_base_image_inspect

# 需要導入模塊: from atomic_reactor.build import InsideBuilder [as 別名]
# 或者: from atomic_reactor.build.InsideBuilder import parents_pulled [as 別名]
def test_base_image_inspect(tmpdir, source_params, parents_pulled,
                            base_exist):
    if MOCK:
        mock_docker()

    source_params.update({'tmpdir': str(tmpdir)})
    s = get_source_instance_for(source_params)
    b = InsideBuilder(s, '')
    b.parents_pulled = parents_pulled
    if b.base_from_scratch:
        base_exist = True

    if base_exist:
        if b.base_from_scratch:
            built_inspect = b.base_image_inspect
            assert built_inspect == {}
        else:
            if not parents_pulled:
                (flexmock(atomic_reactor.util)
                 .should_receive('get_inspect_for_image')
                 .and_return({'Id': 123}))

            built_inspect = b.base_image_inspect

            assert built_inspect is not None
            assert built_inspect["Id"] is not None
    else:
        if parents_pulled or b.custom_base_image:
            response = flexmock(content="not found", status_code=404)
            (flexmock(docker.APIClient)
             .should_receive('inspect_image')
             .and_raise(docker.errors.NotFound, "xyz", response))
            with pytest.raises(KeyError):
                b.base_image_inspect
        else:
            (flexmock(atomic_reactor.util)
             .should_receive('get_inspect_for_image')
             .and_raise(NotImplementedError))
            with pytest.raises(NotImplementedError):
                b.base_image_inspect
開發者ID:projectatomic,項目名稱:atomic-reactor,代碼行數:42,代碼來源:test_build.py


注:本文中的atomic_reactor.build.InsideBuilder.parents_pulled方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。