-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
181 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
import rpm | ||
|
||
from Testing import get_tested_mock_package | ||
|
||
|
||
UnexpandedMacroPackage = get_tested_mock_package( | ||
lazyload=True, | ||
name='unexpanded1', | ||
header={ | ||
'requires': [], | ||
'provides': ['/%notreally', 'unexpanded1 = 0-0'], | ||
'suggests': ['/%asdf'], | ||
'conflicts': ['something:%unexpanded_conflicts'], | ||
'enhances': ['/%else'], | ||
'obsoletes': ['something:%unexpanded'], | ||
'recommends': ['/%unxpanded_recommends'], | ||
'supplements': ['/%something'], | ||
'arch': 'noarch', | ||
'name': 'unexpanded1', | ||
'version': '0', | ||
'release': '0', | ||
}, | ||
) | ||
|
||
|
||
SelfPackage = get_tested_mock_package( | ||
lazyload=True, | ||
name='self', | ||
header={ | ||
'requires': [ | ||
'insserv', | ||
'rpmlib(CompressedFileNames) <= 3.0.4-1', | ||
'rpmlib(FileDigests) <= 4.6.0-1', | ||
'rpmlib(PayloadFilesHavePrefix) <= 4.0-1', | ||
'rpmlib(PayloadIsXz) <= 5.2-1', | ||
'xinetd', | ||
], | ||
'provides': [ | ||
'self', | ||
'self = 0-0', | ||
'self(x86-64) = 0-0', | ||
], | ||
'arch': 'x86_64', | ||
'name': 'self', | ||
'version': '0', | ||
'release': '0', | ||
}, | ||
) | ||
|
||
|
||
FuseCommonPackage = get_tested_mock_package( | ||
lazyload=True, | ||
name='fuse-common', | ||
files={ | ||
'etc/fuse.conf': { | ||
'content': '# mount_max = 1000\nuser_allow_other\n', | ||
'flags': rpm.RPMFILE_NOREPLACE | rpm.RPMFILE_CONFIG, | ||
}, | ||
}, | ||
header={ | ||
'requires': [ | ||
'config(fuse-common) = 3.10.2-5.el8', | ||
'rpmlib(CompressedFileNames) <= 3.0.4-1', | ||
'rpmlib(FileDigests) <= 4.6.0-1', | ||
'rpmlib(PayloadFilesHavePrefix) <= 4.0-1', | ||
'rpmlib(PayloadIsXz) <= 5.2-1', | ||
], | ||
'provides': [ | ||
'config(fuse-common) = 3.10.2-5.el8', | ||
'fuse-common = 3.10.2-5.el8', | ||
'fuse-common = 3.2.1', | ||
'fuse-common = 3.3.0', | ||
'fuse-common(x86-64) = 3.10.2-5.el8', | ||
], | ||
'arch': 'x86_64', | ||
'name': 'fuse-common', | ||
'version': '3.10.2', | ||
'release': '5.el8', | ||
}, | ||
) | ||
|
||
|
||
FooDevelPackage = get_tested_mock_package( | ||
lazyload=True, | ||
name='foo-devel', | ||
header={ | ||
'requires': [], | ||
'provides': [], | ||
'arch': 'x86_64', | ||
'name': 'foo-devel', | ||
'version': '0', | ||
'release': '0', | ||
'group': 'Games', | ||
'license': 'GPL-2.0+', | ||
'url': 'http://www.opensuse.org/', | ||
'buildhost': 'marxinbox.suse.cz', | ||
'summary': 'Lorem ipsum', | ||
'description': """Lorem ipsum dolor sit amet, consectetur adipisici elit, sed | ||
eiusmod tempor incidunt ut labore et dolore magna aliqua. Ut enim | ||
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut | ||
aliquid ex ea commodi consequat. Quis aute iure reprehenderit in | ||
voluptate velit esse cillum dolore eu fugiat nulla pariatur. | ||
Excepteur sint obcaecat cupiditat non proident, sunt in culpa qui | ||
officia deserunt mollit anim id est laborum. | ||
""", | ||
'changelogname': ['[email protected]'], | ||
'changelogtime': [1303128000], | ||
'changelogtext': ['dummy'], | ||
}, | ||
) | ||
|
||
|
||
MissingProvidesPackage = get_tested_mock_package( | ||
lazyload=True, | ||
name='missingprovides-devel', | ||
files=['/usr/lib64/pkgconfig/libparted.pc'], | ||
header={ | ||
'requires': [], | ||
'provides': [], | ||
'arch': 'x86_64', | ||
'name': 'missingprovides-devel', | ||
'version': '0', | ||
'release': '0', | ||
}, | ||
) | ||
|
||
|
||
InvalidExceptionPackage = MissingProvidesPackage.clone( | ||
extend=True, | ||
name='invalid-exception', | ||
header={ | ||
'name': 'invalid-exception', | ||
'license': 'GPL-2.0+ WITH sparta', | ||
}, | ||
) | ||
|
||
|
||
ValidExceptionPackage = InvalidExceptionPackage.clone( | ||
extend=True, | ||
name='valid-exception', | ||
header={ | ||
'name': 'valid-exception', | ||
'license': 'GPL-2.0+ WITH 389-exception', | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters