From c93772ade8f8ca66415be102d1d959a89cd64119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 29 Feb 2016 10:39:27 +0100 Subject: [PATCH] [createrepo-wrapper] Add tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- tests/test_createrepo_wrapper.py | 72 ++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100755 tests/test_createrepo_wrapper.py diff --git a/tests/test_createrepo_wrapper.py b/tests/test_createrepo_wrapper.py new file mode 100755 index 00000000..1992c381 --- /dev/null +++ b/tests/test_createrepo_wrapper.py @@ -0,0 +1,72 @@ +#!/usr/bin/env python2 +# -*- coding: utf-8 -*- + +import unittest + +import os +import sys + +sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..")) + +from pungi.wrappers.createrepo import CreaterepoWrapper + + +class CreateRepoWrapperTest(unittest.TestCase): + + def test_get_createrepo_c_cmd_minimal(self): + repo = CreaterepoWrapper() + cmd = repo.get_createrepo_cmd('/test/dir') + + self.assertEqual(cmd[:2], ['createrepo_c', '/test/dir']) + self.assertItemsEqual(cmd[2:], ['--update', '--database', '--unique-md-filenames']) + + def test_get_createrepo_c_cmd_full(self): + repo = CreaterepoWrapper() + cmd = repo.get_createrepo_cmd( + '/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' + ) + self.maxDiff = None + + self.assertEqual(cmd[:2], ['createrepo_c', '/test/dir']) + self.assertItemsEqual(cmd[2:], + ['--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=True', '--oldpackagedirs=/test/old', '--num-deltas=2', '--workers=3', + '--outputdir=/test/output']) + + def test_get_createrepo_cmd_minimal(self): + repo = CreaterepoWrapper(False) + cmd = repo.get_createrepo_cmd('/test/dir') + + self.assertEqual(cmd[:2], ['createrepo', '/test/dir']) + self.assertItemsEqual(cmd[2:], ['--update', '--database', '--unique-md-filenames', '--pretty']) + + def test_get_createrepo_cmd_full(self): + repo = CreaterepoWrapper(False) + cmd = repo.get_createrepo_cmd( + '/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' + ) + self.maxDiff = None + + self.assertEqual(cmd[:2], ['createrepo', '/test/dir']) + self.assertItemsEqual(cmd[2:], + ['--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=True', '--oldpackagedirs=/test/old', '--num-deltas=2', '--workers=3', + '--outputdir=/test/output'])