Move git repo creation into tests/lib.py
This way it can be shared with test_server.py (cherry picked from commit02f757d231
) (cherry picked from commit136f9d877a
)
This commit is contained in:
parent
b25995d9d4
commit
5042867d19
82
tests/lib.py
82
tests/lib.py
@ -14,10 +14,14 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
import os
|
||||||
import sys
|
import sys
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
import magic
|
import magic
|
||||||
from io import StringIO
|
from io import StringIO
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import tempfile
|
||||||
|
|
||||||
@contextmanager
|
@contextmanager
|
||||||
def captured_output():
|
def captured_output():
|
||||||
@ -42,3 +46,81 @@ def get_file_magic(filename):
|
|||||||
finally:
|
finally:
|
||||||
ms.close()
|
ms.close()
|
||||||
return details
|
return details
|
||||||
|
|
||||||
|
def create_git_repo():
|
||||||
|
"""Create a git repo in a tmpdir
|
||||||
|
|
||||||
|
Call this from setUpClass()
|
||||||
|
|
||||||
|
This returns the following fields:
|
||||||
|
* repodir - the directory holding the repository
|
||||||
|
* test_results - A dict with information to use for the tests
|
||||||
|
* first_commit - hash of the first commit
|
||||||
|
"""
|
||||||
|
repodir = tempfile.mkdtemp(prefix="git-rpm-test.")
|
||||||
|
# Create a local git repo in a temporary directory, populate it with files.
|
||||||
|
cmd = ["git", "init", repodir]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
|
||||||
|
oldcwd = os.getcwd()
|
||||||
|
os.chdir(repodir)
|
||||||
|
cmd = ["git", "config", "user.email", "test@testing.localhost"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
|
||||||
|
# Hold the expected file paths for the tests
|
||||||
|
test_results = {"first": [], "second": [], "branch": []}
|
||||||
|
# Add some files
|
||||||
|
results_path = "./tests/pylorax/results/"
|
||||||
|
for f in ["full-recipe.toml", "minimal.toml", "modules-only.toml"]:
|
||||||
|
shutil.copy2(os.path.join(oldcwd, results_path, f), repodir)
|
||||||
|
test_results["first"].append(f)
|
||||||
|
|
||||||
|
cmd = ["git", "add", "*.toml"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
cmd = ["git", "commit", "-m", "first files"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
cmd = ["git", "tag", "v1.0.0"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
|
||||||
|
# Get the commit hash
|
||||||
|
cmd = ["git", "log", "--pretty=%H"]
|
||||||
|
first_commit = subprocess.check_output(cmd).decode("UTF-8").strip()
|
||||||
|
|
||||||
|
# 2nd commit adds to 1st commit
|
||||||
|
test_results["second"] = test_results["first"].copy()
|
||||||
|
|
||||||
|
# Add some more files
|
||||||
|
os.makedirs(os.path.join(repodir, "only-bps/"))
|
||||||
|
for f in ["packages-only.toml", "groups-only.toml"]:
|
||||||
|
shutil.copy2(os.path.join(oldcwd, results_path, f), os.path.join(repodir, "only-bps/"))
|
||||||
|
test_results["second"].append(os.path.join("only-bps/", f))
|
||||||
|
test_results["second"] = sorted(test_results["second"])
|
||||||
|
|
||||||
|
cmd = ["git", "add", "*.toml"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
cmd = ["git", "commit", "-m", "second files"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
cmd = ["git", "tag", "v1.1.0"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
|
||||||
|
# Make a branch for some other files
|
||||||
|
cmd = ["git", "checkout", "-b", "custom-branch"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
|
||||||
|
# 3nd commit adds to 2nd commit
|
||||||
|
test_results["branch"] = test_results["second"].copy()
|
||||||
|
|
||||||
|
# Add some files to the new branch
|
||||||
|
for f in ["custom-base.toml", "repos-git.toml"]:
|
||||||
|
shutil.copy2(os.path.join(oldcwd, results_path, f), repodir)
|
||||||
|
test_results["branch"].append(f)
|
||||||
|
test_results["branch"] = sorted(test_results["branch"])
|
||||||
|
|
||||||
|
cmd = ["git", "add", "*.toml"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
cmd = ["git", "commit", "-m", "branch files"]
|
||||||
|
subprocess.check_call(cmd)
|
||||||
|
|
||||||
|
os.chdir(oldcwd)
|
||||||
|
|
||||||
|
return (repodir, test_results, first_commit)
|
||||||
|
@ -19,94 +19,18 @@ import pytoml as toml
|
|||||||
import rpm
|
import rpm
|
||||||
import shutil
|
import shutil
|
||||||
import stat
|
import stat
|
||||||
import subprocess
|
|
||||||
import tarfile
|
import tarfile
|
||||||
import tempfile
|
import tempfile
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from ..lib import create_git_repo
|
||||||
from pylorax.api.gitrpm import GitArchiveTarball, GitRpmBuild, make_git_rpm, create_gitrpm_repo
|
from pylorax.api.gitrpm import GitArchiveTarball, GitRpmBuild, make_git_rpm, create_gitrpm_repo
|
||||||
from pylorax.sysutils import joinpaths
|
from pylorax.sysutils import joinpaths
|
||||||
|
|
||||||
def _setup_git_repo(self):
|
|
||||||
"""Setup a git repo in a tmpdir, storing details into self
|
|
||||||
|
|
||||||
Call this from setUpClass()
|
|
||||||
"""
|
|
||||||
self.repodir = tempfile.mkdtemp(prefix="git-rpm-test.")
|
|
||||||
# Create a local git repo in a temporary directory, populate it with files.
|
|
||||||
cmd = ["git", "init", self.repodir]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
|
|
||||||
oldcwd = os.getcwd()
|
|
||||||
os.chdir(self.repodir)
|
|
||||||
cmd = ["git", "config", "user.email", "test@testing.localhost"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
|
|
||||||
# Hold the expected file paths for the tests
|
|
||||||
self.test_results = {"first": [], "second": [], "branch": []}
|
|
||||||
# Add some files
|
|
||||||
results_path = "./tests/pylorax/results/"
|
|
||||||
for f in ["full-recipe.toml", "minimal.toml", "modules-only.toml"]:
|
|
||||||
shutil.copy2(os.path.join(oldcwd, results_path, f), self.repodir)
|
|
||||||
self.test_results["first"].append(f)
|
|
||||||
|
|
||||||
cmd = ["git", "add", "*.toml"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
cmd = ["git", "commit", "-m", "first files"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
cmd = ["git", "tag", "v1.0.0"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
|
|
||||||
# Get the commit hash
|
|
||||||
cmd = ["git", "log", "--pretty=%H"]
|
|
||||||
self.first_commit = subprocess.check_output(cmd).decode("UTF-8").strip()
|
|
||||||
|
|
||||||
# 2nd commit adds to 1st commit
|
|
||||||
self.test_results["second"] = self.test_results["first"].copy()
|
|
||||||
|
|
||||||
# Add some more files
|
|
||||||
os.makedirs(os.path.join(self.repodir, "only-bps/"))
|
|
||||||
for f in ["packages-only.toml", "groups-only.toml"]:
|
|
||||||
shutil.copy2(os.path.join(oldcwd, results_path, f), os.path.join(self.repodir, "only-bps/"))
|
|
||||||
self.test_results["second"].append(os.path.join("only-bps/", f))
|
|
||||||
self.test_results["second"] = sorted(self.test_results["second"])
|
|
||||||
|
|
||||||
cmd = ["git", "add", "*.toml"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
cmd = ["git", "commit", "-m", "second files"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
cmd = ["git", "tag", "v1.1.0"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
|
|
||||||
# Make a branch for some other files
|
|
||||||
cmd = ["git", "checkout", "-b", "custom-branch"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
|
|
||||||
# 3nd commit adds to 2nd commit
|
|
||||||
self.test_results["branch"] = self.test_results["second"].copy()
|
|
||||||
|
|
||||||
# Add some files to the new branch
|
|
||||||
for f in ["custom-base.toml", "repos-git.toml"]:
|
|
||||||
shutil.copy2(os.path.join(oldcwd, results_path, f), self.repodir)
|
|
||||||
self.test_results["branch"].append(f)
|
|
||||||
self.test_results["branch"] = sorted(self.test_results["branch"])
|
|
||||||
|
|
||||||
cmd = ["git", "add", "*.toml"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
cmd = ["git", "commit", "-m", "branch files"]
|
|
||||||
subprocess.check_call(cmd)
|
|
||||||
|
|
||||||
os.chdir(oldcwd)
|
|
||||||
|
|
||||||
|
|
||||||
class GitArchiveTest(unittest.TestCase):
|
class GitArchiveTest(unittest.TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(self):
|
def setUpClass(self):
|
||||||
self.repodir = None
|
(self.repodir, self.test_results, self.first_commit) = create_git_repo()
|
||||||
self.first_commit = None
|
|
||||||
self.test_results = {}
|
|
||||||
|
|
||||||
_setup_git_repo(self)
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def tearDownClass(self):
|
def tearDownClass(self):
|
||||||
@ -211,11 +135,7 @@ class GitArchiveTest(unittest.TestCase):
|
|||||||
class GitRpmTest(unittest.TestCase):
|
class GitRpmTest(unittest.TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(self):
|
def setUpClass(self):
|
||||||
self.repodir = None
|
(self.repodir, self.test_results, self.first_commit) = create_git_repo()
|
||||||
self.first_commit = None
|
|
||||||
self.test_results = {}
|
|
||||||
|
|
||||||
_setup_git_repo(self)
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def tearDownClass(self):
|
def tearDownClass(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user