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


Python Mock.build方法代碼示例

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


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

示例1: run

# 需要導入模塊: from FedoraReview import Mock [as 別名]
# 或者: from FedoraReview.Mock import build [as 別名]
    def run(self):
        # pylint: disable=W0632

        def listfiles():
            ''' Generate listing of dirs and files in each package. '''
            with open('files.dir', 'w') as f:
                for pkg in self.spec.packages:
                    nvr = self.spec.get_package_nvr(pkg)
                    path = Mock.get_package_rpm_path(nvr)
                    dirs, files = deps.listpaths(path)
                    f.write(pkg + '\n')
                    f.write('=' * len(pkg) + '\n')
                    for line in sorted(dirs):
                        f.write(line + '\n')
                    f.write('\n')
                    for line in sorted(files):
                        f.write(line + '\n')
                    f.write('\n')

        if Settings.prebuilt:
            self.set_passed(self.PENDING, 'Using prebuilt packages')
            listfiles()
            return
        if Settings.nobuild:
            if Mock.have_cache_for(self.spec):
                self.set_passed(self.PENDING,
                                'Re-using old build in mock')
                return
            else:
                self.log.info(
                    'No valid cache, building despite --no-build.')
        _mock_root_setup("While building")
        Mock.build(self.srpm.filename)
        listfiles()
        self.set_passed(self.PASS)
開發者ID:timlau,項目名稱:FedoraReview,代碼行數:37,代碼來源:generic_build.py

示例2: test_mockbuild

# 需要導入模塊: from FedoraReview import Mock [as 別名]
# 或者: from FedoraReview.Mock import build [as 別名]
 def test_mockbuild(self):
     """ Test the SRPMFile class """
     self.init_test('mockbuild', argv=['-rn', 'python-test'])
     srpm = SRPMFile(self.srpm_file)
     # install the srpm
     srpm.unpack()
     self.assertTrue(srpm._unpacked_src is not None)
     src_dir = srpm._unpacked_src
     src_files = glob.glob(os.path.expanduser(src_dir) + '/*')
     src_files = [os.path.basename(f) for f in src_files]
     self.assertTrue('python-test-1.0.tar.gz' in src_files)
     self.log.info("Starting mock build (patience...)")
     Mock.clear_builddir()
     Mock.build(srpm.filename)
     rpms = glob.glob(os.path.join(Mock.resultdir,
                                   'python-test-1.0-1*noarch.rpm'))
     self.assertEqual(1, len(rpms))
開發者ID:athos-ribeiro,項目名稱:FedoraReview,代碼行數:19,代碼來源:test_misc.py


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