2016-02-29 09:39:27 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-05-25 11:39:02 +00:00
|
|
|
try:
|
|
|
|
import unittest2 as unittest
|
|
|
|
except ImportError:
|
|
|
|
import unittest
|
2016-02-29 09:39:27 +00:00
|
|
|
|
2019-10-04 12:45:03 +00:00
|
|
|
import six
|
|
|
|
|
2016-02-29 09:39:27 +00:00
|
|
|
from pungi.wrappers.createrepo import CreaterepoWrapper
|
|
|
|
|
|
|
|
|
|
|
|
class CreateRepoWrapperTest(unittest.TestCase):
|
|
|
|
def test_get_createrepo_c_cmd_minimal(self):
|
|
|
|
repo = CreaterepoWrapper()
|
2020-01-22 10:02:22 +00:00
|
|
|
cmd = repo.get_createrepo_cmd("/test/dir")
|
2016-02-29 09:39:27 +00:00
|
|
|
|
2020-01-22 10:02:22 +00:00
|
|
|
self.assertEqual(cmd[:2], ["createrepo_c", "/test/dir"])
|
2019-10-04 12:45:03 +00:00
|
|
|
six.assertCountEqual(
|
|
|
|
self, cmd[2:], ["--update", "--database", "--unique-md-filenames"]
|
|
|
|
)
|
2016-02-29 09:39:27 +00:00
|
|
|
|
|
|
|
def test_get_createrepo_c_cmd_full(self):
|
|
|
|
repo = CreaterepoWrapper()
|
|
|
|
cmd = repo.get_createrepo_cmd(
|
2020-01-22 10:02:22 +00:00
|
|
|
"/test/dir",
|
|
|
|
baseurl="http://base.example.com",
|
|
|
|
excludes=["abc", "xyz"],
|
|
|
|
pkglist="/test/pkglist",
|
|
|
|
groupfile="/test/comps",
|
|
|
|
cachedir="/test/cache",
|
|
|
|
update=False,
|
|
|
|
update_md_path="/test/md_path",
|
|
|
|
skip_stat=True,
|
|
|
|
checkts=True,
|
|
|
|
split=True,
|
|
|
|
pretty=False,
|
|
|
|
database=False,
|
|
|
|
checksum="sha256",
|
|
|
|
unique_md_filenames=False,
|
|
|
|
distro="Fedora",
|
|
|
|
content=["c1", "c2"],
|
|
|
|
repo=["r1", "r2"],
|
|
|
|
revision="rev",
|
|
|
|
deltas=True,
|
|
|
|
oldpackagedirs="/test/old",
|
|
|
|
num_deltas=2,
|
|
|
|
workers=3,
|
|
|
|
outputdir="/test/output",
|
2018-08-08 14:15:51 +00:00
|
|
|
use_xz=True,
|
|
|
|
extra_args=["--zck", "--zck-primary-dict=/foo/bar"],
|
2016-02-29 09:39:27 +00:00
|
|
|
)
|
|
|
|
self.maxDiff = None
|
|
|
|
|
2020-01-22 10:02:22 +00:00
|
|
|
self.assertEqual(cmd[:2], ["createrepo_c", "/test/dir"])
|
2019-10-04 12:45:03 +00:00
|
|
|
six.assertCountEqual(
|
|
|
|
self,
|
|
|
|
cmd[2:],
|
2020-01-22 10:02:22 +00:00
|
|
|
[
|
|
|
|
"--baseurl=http://base.example.com",
|
|
|
|
"--excludes=abc",
|
|
|
|
"--excludes=xyz",
|
|
|
|
"--pkglist=/test/pkglist",
|
|
|
|
"--groupfile=/test/comps",
|
|
|
|
"--cachedir=/test/cache",
|
|
|
|
"--skip-stat",
|
|
|
|
"--update-md-path=/test/md_path",
|
|
|
|
"--split",
|
|
|
|
"--checkts",
|
|
|
|
"--checksum=sha256",
|
|
|
|
"--distro=Fedora",
|
|
|
|
"--simple-md-filenames",
|
|
|
|
"--no-database",
|
|
|
|
"--content=c1",
|
|
|
|
"--content=c2",
|
|
|
|
"--repo=r1",
|
|
|
|
"--repo=r2",
|
|
|
|
"--revision=rev",
|
|
|
|
"--deltas",
|
|
|
|
"--oldpackagedirs=/test/old",
|
|
|
|
"--num-deltas=2",
|
|
|
|
"--workers=3",
|
|
|
|
"--outputdir=/test/output",
|
|
|
|
"--xz",
|
|
|
|
"--zck",
|
|
|
|
"--zck-primary-dict=/foo/bar",
|
|
|
|
],
|
2019-10-04 12:45:03 +00:00
|
|
|
)
|
2016-02-29 09:39:27 +00:00
|
|
|
|
|
|
|
def test_get_createrepo_cmd_minimal(self):
|
|
|
|
repo = CreaterepoWrapper(False)
|
2020-01-22 10:02:22 +00:00
|
|
|
cmd = repo.get_createrepo_cmd("/test/dir")
|
2016-02-29 09:39:27 +00:00
|
|
|
|
2020-01-22 10:02:22 +00:00
|
|
|
self.assertEqual(cmd[:2], ["createrepo", "/test/dir"])
|
2019-10-04 12:45:03 +00:00
|
|
|
six.assertCountEqual(
|
|
|
|
self,
|
|
|
|
cmd[2:],
|
|
|
|
["--update", "--database", "--unique-md-filenames", "--pretty"],
|
|
|
|
)
|
2016-02-29 09:39:27 +00:00
|
|
|
|
|
|
|
def test_get_createrepo_cmd_full(self):
|
|
|
|
repo = CreaterepoWrapper(False)
|
|
|
|
cmd = repo.get_createrepo_cmd(
|
2020-01-22 10:02:22 +00:00
|
|
|
"/test/dir",
|
|
|
|
baseurl="http://base.example.com",
|
|
|
|
excludes=["abc", "xyz"],
|
|
|
|
pkglist="/test/pkglist",
|
|
|
|
groupfile="/test/comps",
|
|
|
|
cachedir="/test/cache",
|
|
|
|
update=False,
|
|
|
|
update_md_path="/test/md_path",
|
|
|
|
skip_stat=True,
|
|
|
|
checkts=True,
|
|
|
|
split=True,
|
|
|
|
pretty=False,
|
|
|
|
database=False,
|
|
|
|
checksum="sha256",
|
|
|
|
unique_md_filenames=False,
|
|
|
|
distro="Fedora",
|
|
|
|
content=["c1", "c2"],
|
|
|
|
repo=["r1", "r2"],
|
|
|
|
revision="rev",
|
|
|
|
deltas=True,
|
|
|
|
oldpackagedirs="/test/old",
|
|
|
|
num_deltas=2,
|
|
|
|
workers=3,
|
|
|
|
outputdir="/test/output",
|
2016-02-29 09:39:27 +00:00
|
|
|
)
|
|
|
|
self.maxDiff = None
|
|
|
|
|
2020-01-22 10:02:22 +00:00
|
|
|
self.assertEqual(cmd[:2], ["createrepo", "/test/dir"])
|
2019-10-04 12:45:03 +00:00
|
|
|
six.assertCountEqual(
|
|
|
|
self,
|
|
|
|
cmd[2:],
|
2020-01-22 10:02:22 +00:00
|
|
|
[
|
|
|
|
"--baseurl=http://base.example.com",
|
|
|
|
"--excludes=abc",
|
|
|
|
"--excludes=xyz",
|
|
|
|
"--pkglist=/test/pkglist",
|
|
|
|
"--groupfile=/test/comps",
|
|
|
|
"--cachedir=/test/cache",
|
|
|
|
"--skip-stat",
|
|
|
|
"--update-md-path=/test/md_path",
|
|
|
|
"--split",
|
|
|
|
"--checkts",
|
|
|
|
"--checksum=sha256",
|
|
|
|
"--distro=Fedora",
|
|
|
|
"--simple-md-filenames",
|
|
|
|
"--no-database",
|
|
|
|
"--content=c1",
|
|
|
|
"--content=c2",
|
|
|
|
"--repo=r1",
|
|
|
|
"--repo=r2",
|
|
|
|
"--revision=rev",
|
|
|
|
"--deltas",
|
|
|
|
"--oldpackagedirs=/test/old",
|
|
|
|
"--num-deltas=2",
|
|
|
|
"--workers=3",
|
|
|
|
"--outputdir=/test/output",
|
|
|
|
],
|
2019-10-04 12:45:03 +00:00
|
|
|
)
|