mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 08:36:13 +01:00
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
|
import os
|
||
|
import shutil
|
||
|
import subprocess
|
||
|
import tempfile
|
||
|
import unittest
|
||
|
|
||
|
from osc.git_scm.store import GitStore
|
||
|
|
||
|
|
||
|
class TestGitStore(unittest.TestCase):
|
||
|
def setUp(self):
|
||
|
self.tmpdir = tempfile.mkdtemp(prefix="osc_test")
|
||
|
os.chdir(self.tmpdir)
|
||
|
subprocess.check_output(["git", "init", "-b", "factory"])
|
||
|
subprocess.check_output(["git", "remote", "add", "origin", "https://example.com/packages/my-package.git"])
|
||
|
|
||
|
def tearDown(self):
|
||
|
try:
|
||
|
shutil.rmtree(self.tmpdir)
|
||
|
except OSError:
|
||
|
pass
|
||
|
|
||
|
def test_package(self):
|
||
|
store = GitStore(self.tmpdir)
|
||
|
self.assertEqual(store.package, "my-package")
|
||
|
|
||
|
def test_project(self):
|
||
|
store = GitStore(self.tmpdir)
|
||
|
self.assertEqual(store.project, "openSUSE:Factory")
|
||
|
|
||
|
def test_last_buildroot(self):
|
||
|
store = GitStore(self.tmpdir)
|
||
|
self.assertEqual(store.last_buildroot, None)
|
||
|
store.last_buildroot = ("repo", "arch", "vm_type")
|
||
|
|
||
|
store = GitStore(self.tmpdir)
|
||
|
self.assertEqual(store.last_buildroot, ("repo", "arch", "vm_type"))
|
||
|
|
||
|
|
||
|
if not shutil.which("git"):
|
||
|
TestGitStore = unittest.skip("The 'git' executable is not available")(TestGitStore)
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
unittest.main()
|