Explorar el Código

Update NEWS, add tests for clone with bare.

Jelmer Vernooij hace 11 años
padre
commit
8b5b6b15fd
Se han modificado 3 ficheros con 39 adiciones y 3 borrados
  1. 1 1
      NEWS
  2. 5 1
      dulwich/porcelain.py
  3. 33 1
      dulwich/tests/test_porcelain.py

+ 1 - 1
NEWS

@@ -6,7 +6,7 @@
 
  * Add Repo.set_description(). (Víðir Valberg Guðmundsson)
 
- * Add a basic `dulwich.porcelain` module. (Jelmer Vernooij)
+ * Add a basic `dulwich.porcelain` module. (Jelmer Vernooij, Marcin Kuzminski)
 
  * Various performance improvements for object access.
    (Jelmer Vernooij)

+ 5 - 1
dulwich/porcelain.py

@@ -138,7 +138,7 @@ def init(path=".", bare=False):
         return Repo.init(path)
 
 
-def clone(source, target=None, bare=False, checkout=True, outstream=sys.stdout):
+def clone(source, target=None, bare=False, checkout=None, outstream=sys.stdout):
     """Clone a local or remote git repository.
 
     :param source: Path or URL for source repository
@@ -147,6 +147,10 @@ def clone(source, target=None, bare=False, checkout=True, outstream=sys.stdout):
     :param outstream: Optional stream to write progress to
     :return: The new repository
     """
+    if checkout is None:
+        checkout = (not bare)
+    if checkout and bare:
+        raise ValueError("checkout and bare are incompatible")
     client, host_path = get_transport_and_path(source)
 
     if target is None:

+ 33 - 1
dulwich/tests/test_porcelain.py

@@ -110,7 +110,6 @@ class CloneTests(PorcelainTestCase):
         self.assertTrue('f2' not in os.listdir(target_path))
 
     def test_simple_local_with_checkout(self):
-
         f1_1 = make_object(Blob, data='f1')
         commit_spec = [[1], [2, 1], [3, 1, 2]]
         trees = {1: [('f1', f1_1), ('f2', f1_1)],
@@ -130,6 +129,39 @@ class CloneTests(PorcelainTestCase):
         self.assertTrue('f1' in os.listdir(target_path))
         self.assertTrue('f2' in os.listdir(target_path))
 
+    def test_bare_local_with_checkout(self):
+        f1_1 = make_object(Blob, data='f1')
+        commit_spec = [[1], [2, 1], [3, 1, 2]]
+        trees = {1: [('f1', f1_1), ('f2', f1_1)],
+                 2: [('f1', f1_1), ('f2', f1_1)],
+                 3: [('f1', f1_1), ('f2', f1_1)], }
+
+        c1, c2, c3 = build_commit_graph(self.repo.object_store,
+                                        commit_spec, trees)
+        self.repo.refs["refs/heads/master"] = c3.id
+        target_path = tempfile.mkdtemp()
+        outstream = StringIO()
+        self.addCleanup(shutil.rmtree, target_path)
+        r = porcelain.clone(self.repo.path, target_path,
+                            bare=True, outstream=outstream)
+        self.assertEquals(r.path, target_path)
+        self.assertEquals(Repo(target_path).head(), c3.id)
+        self.assertFalse('f1' in os.listdir(target_path))
+        self.assertFalse('f2' in os.listdir(target_path))
+
+    def test_no_checkout_with_bare(self):
+        f1_1 = make_object(Blob, data='f1')
+        commit_spec = [[1]]
+        trees = {1: [('f1', f1_1), ('f2', f1_1)]}
+
+        (c1, ) = build_commit_graph(self.repo.object_store, commit_spec, trees)
+        self.repo.refs["refs/heads/master"] = c1.id
+        target_path = tempfile.mkdtemp()
+        outstream = StringIO()
+        self.addCleanup(shutil.rmtree, target_path)
+        self.assertRaises(ValueError, porcelain.clone, self.repo.path,
+            target_path, checkout=True, bare=True, outstream=outstream)
+
 
 class InitTests(TestCase):