Beispiel #1
0
    def test_no_compare(self):
        base = copy(self.common)
        other = self._make_resources({"user/block1/file1.h": "file1content@modified"})

        merger = BlobsMerger("user/block1#1", "user/block1#2", OutputStream())
        merger.merge_elements = Mock(side_effect=Exception("No item must be compared!"))
        ret = merger.merge(base, other, self.common)
        self.assertEquals(ret["user/block1/file1.h"].load, "file1content@modified")
Beispiel #2
0
    def test_no_compare(self):
        base = copy(self.common)
        other = self._make_resources({
            'user/block1/file1.h':
            "file1content@modified",
        })

        merger = BlobsMerger("user/block1#1", "user/block1#2", OutputStream())
        merger.merge_elements = Mock(
            side_effect=Exception("No item must be compared!"))
        ret = merger.merge(base, other, self.common)
        self.assertEquals(ret['user/block1/file1.h'].load,
                          "file1content@modified")
Beispiel #3
0
    def test_with_binary_blobs(self):
        base = self._make_resources({"user/block1/file1.h": "@modified1"}, is_binary=True)
        other = self._make_resources({"user/block1/file1.h": "@modified2"})

        output = OutputStream()
        merger = BlobsMerger("user/block1#1", "user/block1#2", output)
        merger.merge(base, other, self.common)
        self.assertIn("CONFLICT", str(output))
        self.assertIn("WARN: Can't merge binary contents, your file is keeped", str(output))
        self.assertIn(
            "user/block1/file1.h: CONFLICT (modified/modified): Changed in "
            "user/block1#1 and changed in user/block1#2",
            str(output),
        )
Beispiel #4
0
    def test_with_compare(self):
        base = self._make_resources({'user/block1/file1.h': "@modified1"})
        other = self._make_resources({'user/block1/file1.h': "@modified2"})
        output = OutputStream()
        merger = BlobsMerger("user/block1#1", "user/block1#2", output)
        ret = merger.merge(base, other, self.common)
        self.assertEquals(
            ret['user/block1/file1.h'].text,
            '''<<<<<<<<<<<<<<<<<<<<<<<<< user/block1#1
@modified1
=========================
@modified2
>>>>>>>>>>>>>>>>>>>>>>>>> user/block1#2
''')
        self.assertIn("CONFLICT", str(output))
Beispiel #5
0
    def test_with_compare(self):
        base = self._make_resources({"user/block1/file1.h": "@modified1"})
        other = self._make_resources({"user/block1/file1.h": "@modified2"})
        output = OutputStream()
        merger = BlobsMerger("user/block1#1", "user/block1#2", output)
        ret = merger.merge(base, other, self.common)
        self.assertEquals(
            ret["user/block1/file1.h"].bytes,
            """<<<<<<<<<<<<<<<<<<<<<<<<< user/block1#1
@modified1
=========================
@modified2
>>>>>>>>>>>>>>>>>>>>>>>>> user/block1#2
""",
        )
        self.assertIn("CONFLICT", str(output))
Beispiel #6
0
    def test_with_binary_blobs(self):
        base = self._make_resources({
            'user/block1/file1.h': "@modified1",
        },
                                    is_binary=True)
        other = self._make_resources({
            'user/block1/file1.h': "@modified2",
        })

        output = OutputStream()
        merger = BlobsMerger("user/block1#1", "user/block1#2", output)
        merger.merge(base, other, self.common)
        self.assertIn("CONFLICT", str(output))
        self.assertIn("WARN: Can't merge binary contents, your file is keeped",
                      str(output))
        self.assertIn(
            'user/block1/file1.h: CONFLICT (modified/modified): Changed in '
            'user/block1#1 and changed in user/block1#2', str(output))