Răsfoiți Sursa

updated the copy method of ShaFile to make sure that the id is always correct when it's copied

Félix Mattrat 9 ani în urmă
părinte
comite
63d4383ae4
2 a modificat fișierele cu 21 adăugiri și 1 ștergeri
  1. 6 1
      dulwich/objects.py
  2. 15 0
      dulwich/tests/test_objects.py

+ 6 - 1
dulwich/objects.py

@@ -463,10 +463,15 @@ class ShaFile(object):
     def copy(self):
         """Create a new copy of this SHA1 object from its raw string"""
         obj_class = object_class(self.get_type())
+        # The id need to be retrieved before calling as_raw_string because
+        # that method can overwrite the flag _needs_serialization and by
+        # side effect the self.id property can return an outdated id.
+        hex_sha_id = self.id
+
         return obj_class.from_raw_string(
             self.get_type(),
             self.as_raw_string(),
-            self.id)
+            hex_sha_id)
 
     @property
     def id(self):

+ 15 - 0
dulwich/tests/test_objects.py

@@ -937,6 +937,21 @@ class TagParseTests(ShaFileCheckTests):
             else:
                 self.assertCheckFails(Tag, text)
 
+    def test_tree_copy_after_update(self):
+        """Check if the id of the Tree is correctly
+           updated when the tree is copied after being
+           updated
+        """   
+        shas = []
+        tree = Tree()
+        shas.append(tree.id)
+        tree.add(b'data', 0o644, Blob().id)
+        copied = tree.copy()
+        shas.append(tree.id)
+        shas.append(copied.id)
+
+        self.assertTrue(shas[0] not in shas[1:])
+        self.assertTrue(shas[1] == shas[2])
 
 class CheckTests(TestCase):