|
@@ -617,6 +617,26 @@ class RenameDetectionTest(DiffTestCase):
|
|
|
TreeChange(CHANGE_RENAME, ('b', F, blob.id), ('d', F, blob.id))],
|
|
|
self.detect_renames(tree1, tree2))
|
|
|
|
|
|
+ def test_exact_copy_modify(self):
|
|
|
+ blob1 = make_object(Blob, data='a\nb\nc\nd\n')
|
|
|
+ blob2 = make_object(Blob, data='a\nb\nc\ne\n')
|
|
|
+ tree1 = self.commit_tree([('a', blob1)])
|
|
|
+ tree2 = self.commit_tree([('a', blob2), ('b', blob1)])
|
|
|
+ self.assertEqual(
|
|
|
+ [TreeChange(CHANGE_MODIFY, ('a', F, blob1.id), ('a', F, blob2.id)),
|
|
|
+ TreeChange(CHANGE_COPY, ('a', F, blob1.id), ('b', F, blob1.id))],
|
|
|
+ self.detect_renames(tree1, tree2))
|
|
|
+
|
|
|
+ def test_exact_copy_change_mode(self):
|
|
|
+ blob = make_object(Blob, data='a\nb\nc\nd\n')
|
|
|
+ tree1 = self.commit_tree([('a', blob)])
|
|
|
+ tree2 = self.commit_tree([('a', blob, 0100755), ('b', blob)])
|
|
|
+ self.assertEqual(
|
|
|
+ [TreeChange(CHANGE_MODIFY, ('a', F, blob.id),
|
|
|
+ ('a', 0100755, blob.id)),
|
|
|
+ TreeChange(CHANGE_COPY, ('a', F, blob.id), ('b', F, blob.id))],
|
|
|
+ self.detect_renames(tree1, tree2))
|
|
|
+
|
|
|
def test_rename_threshold(self):
|
|
|
blob1 = make_object(Blob, data='a\nb\nc\n')
|
|
|
blob2 = make_object(Blob, data='a\nb\nd\n')
|
|
@@ -766,7 +786,7 @@ class RenameDetectionTest(DiffTestCase):
|
|
|
|
|
|
no_renames = [
|
|
|
TreeChange(CHANGE_MODIFY, ('a', F, blob1.id), ('a', F, blob3.id)),
|
|
|
- TreeChange.add(('b', F, blob2.id))]
|
|
|
+ TreeChange(CHANGE_COPY, ('a', F, blob1.id), ('b', F, blob2.id))]
|
|
|
self.assertEqual(
|
|
|
no_renames, self.detect_renames(tree1, tree2))
|
|
|
self.assertEqual(
|
|
@@ -797,20 +817,6 @@ class RenameDetectionTest(DiffTestCase):
|
|
|
[TreeChange(CHANGE_COPY, ('a', F, blob1.id), ('b', F, blob2.id))],
|
|
|
self.detect_renames(tree1, tree2, find_copies_harder=True))
|
|
|
|
|
|
- def test_find_copies_harder_modify(self):
|
|
|
- blob1 = make_object(Blob, data='a\nb\nc\nd\n')
|
|
|
- blob2 = make_object(Blob, data='a\nb\nc\ne\n')
|
|
|
- tree1 = self.commit_tree([('a', blob1)])
|
|
|
- tree2 = self.commit_tree([('a', blob2), ('b', blob2)])
|
|
|
- self.assertEqual(
|
|
|
- [TreeChange(CHANGE_MODIFY, ('a', F, blob1.id), ('a', F, blob2.id)),
|
|
|
- TreeChange.add(('b', F, blob2.id))],
|
|
|
- self.detect_renames(tree1, tree2))
|
|
|
- self.assertEqual(
|
|
|
- [TreeChange(CHANGE_MODIFY, ('a', F, blob1.id), ('a', F, blob2.id)),
|
|
|
- TreeChange(CHANGE_COPY, ('a', F, blob1.id), ('b', F, blob2.id))],
|
|
|
- self.detect_renames(tree1, tree2, find_copies_harder=True))
|
|
|
-
|
|
|
def test_find_copies_harder_with_rewrites(self):
|
|
|
blob_a1 = make_object(Blob, data='a\nb\nc\nd\n')
|
|
|
blob_a2 = make_object(Blob, data='f\ng\nh\ni\n')
|