本文整理汇总了Python中FedoraReview.Mock.get_package_rpm_paths方法的典型用法代码示例。如果您正苦于以下问题:Python Mock.get_package_rpm_paths方法的具体用法?Python Mock.get_package_rpm_paths怎么用?Python Mock.get_package_rpm_paths使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FedoraReview.Mock
的用法示例。
在下文中一共展示了Mock.get_package_rpm_paths方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run
# 需要导入模块: from FedoraReview import Mock [as 别名]
# 或者: from FedoraReview.Mock import get_package_rpm_paths [as 别名]
def run(self):
if not Mock.is_available():
self.set_passed(self.PENDING,
"No installation test done (mock unavailable)")
return
if Settings.nobuild:
bad_ones = self.check_build_installed()
if bad_ones == []:
self.set_passed(self.PASS)
else:
bad_ones = list(set(bad_ones))
self.set_passed(self.FAIL,
'--no-build: package(s) not installed')
self.log.info('Packages required by --no-build are'
' not installed: ' + ', '.join(bad_ones))
return
_mock_root_setup('While installing built packages', force=True)
rpms = Mock.get_package_rpm_paths(self.spec)
rpms.extend(
Mock.get_package_debuginfo_paths(self.spec.get_package_nvr()))
self.log.info('Installing built package(s)')
output = Mock.install(rpms)
if not output:
self.set_passed(self.PASS)
else:
attachments = [
self.Attachment('Installation errors', output, 3)]
self.set_passed(self.FAIL,
"Installation errors (see attachment)",
attachments)
示例2: rpmlint_rpms
# 需要导入模块: from FedoraReview import Mock [as 别名]
# 或者: from FedoraReview.Mock import get_package_rpm_paths [as 别名]
def rpmlint_rpms(self):
""" Runs rpmlint against the used rpms - prebuilt or built in mock.
"""
# pylint: disable=E1123
rpms = Mock.get_package_rpm_paths(self.spec, with_srpm=True)
no_errors, result = self.run_rpmlint(rpms)
return no_errors, result + '\n'
示例3: run
# 需要导入模块: from FedoraReview import Mock [as 别名]
# 或者: from FedoraReview.Mock import get_package_rpm_paths [as 别名]
def run(self):
if self.checks.checkdict['CheckPackageInstalls'].is_passed:
rpms = Mock.get_package_rpm_paths(self.spec)
no_errors, retcode = Mock.rpmlint_rpms(rpms)
text = 'No rpmlint messages.' if no_errors else \
'There are rpmlint messages (see attachment).'
attachments = \
[self.Attachment('Rpmlint (installed packages)',
retcode + '\n', 5)]
self.set_passed(self.PASS, text, attachments)
else:
self.set_passed(self.FAIL, 'Mock build failed')
示例4: test_prebuilt_sources
# 需要导入模块: from FedoraReview import Mock [as 别名]
# 或者: from FedoraReview.Mock import get_package_rpm_paths [as 别名]
def test_prebuilt_sources(self):
''' Local built RPM:s (-n) test. '''
self.init_test('test_misc',
argv=['-cn', 'python-test', '--prebuilt'])
ReviewDirs.startdir = os.getcwd()
bug = NameBug('python-test')
bug.find_urls()
bug.download_files()
checks = Checks(bug.spec_file, bug.srpm_file)
subprocess.check_call('touch orvar.rpm', shell=True)
rpms = Mock.get_package_rpm_paths(checks.spec)
self.assertEqual(len(rpms), 1)