2010-08-27 16:25:50 +02:00
|
|
|
import osc.core
|
|
|
|
import osc.oscerr
|
|
|
|
import os
|
|
|
|
from common import GET, OscTestCase
|
|
|
|
|
|
|
|
FIXTURES_DIR = os.path.join(os.getcwd(), 'difffile_fixtures')
|
|
|
|
|
|
|
|
def suite():
|
|
|
|
import unittest
|
|
|
|
return unittest.makeSuite(TestDiffFiles)
|
|
|
|
|
|
|
|
class TestDiffFiles(OscTestCase):
|
|
|
|
diff_hdr = 'Index: %s\n==================================================================='
|
|
|
|
def _get_fixtures_dir(self):
|
|
|
|
return FIXTURES_DIR
|
|
|
|
|
|
|
|
def testDiffUnmodified(self):
|
|
|
|
"""diff an unmodified file"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['merge']
|
|
|
|
self.__check_diff(p, '', None)
|
|
|
|
|
|
|
|
def testDiffAdded(self):
|
|
|
|
"""diff an added file"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['toadd1']
|
|
|
|
exp = """%s
|
|
|
|
--- toadd1\t(revision 0)
|
|
|
|
+++ toadd1\t(revision 0)
|
2010-08-31 17:30:31 +02:00
|
|
|
@@ -0,0 +1,1 @@
|
2010-08-27 16:25:50 +02:00
|
|
|
+toadd1
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'toadd1')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
|
|
|
def testDiffRemoved(self):
|
|
|
|
"""diff a removed file"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['somefile']
|
|
|
|
exp = """%s
|
|
|
|
--- somefile\t(revision 2)
|
|
|
|
+++ somefile\t(working copy)
|
2010-08-31 17:30:31 +02:00
|
|
|
@@ -1,1 +0,0 @@
|
2010-08-27 16:25:50 +02:00
|
|
|
-some content
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'somefile')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
|
|
|
def testDiffMissing(self):
|
|
|
|
"""diff a missing file (missing files are ignored)"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['missing']
|
|
|
|
self.__check_diff(p, '', None)
|
|
|
|
|
|
|
|
def testDiffReplaced(self):
|
|
|
|
"""diff a replaced file"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['replaced']
|
|
|
|
exp = """%s
|
2010-09-08 12:07:01 +02:00
|
|
|
--- replaced\t(revision 2)
|
|
|
|
+++ replaced\t(working copy)
|
2010-08-27 16:25:50 +02:00
|
|
|
@@ -1,1 +1,1 @@
|
|
|
|
-yet another file
|
|
|
|
+foo replaced
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'replaced')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
|
|
|
def testDiffSkipped(self):
|
|
|
|
"""diff a skipped file (skipped files are ignored)"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['skipped']
|
|
|
|
self.__check_diff(p, '', None)
|
|
|
|
|
|
|
|
def testDiffConflict(self):
|
|
|
|
"""diff a file which is in the conflict state"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['foo']
|
|
|
|
exp = """%s
|
2010-09-08 12:07:01 +02:00
|
|
|
--- foo\t(revision 2)
|
|
|
|
+++ foo\t(working copy)
|
2010-08-27 16:25:50 +02:00
|
|
|
@@ -1,1 +1,5 @@
|
|
|
|
+<<<<<<< foo.mine
|
|
|
|
+This is no test.
|
|
|
|
+=======
|
|
|
|
This is a simple test.
|
|
|
|
+>>>>>>> foo.r2
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'foo')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
|
|
|
def testDiffModified(self):
|
|
|
|
"""diff a modified file"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['nochange']
|
|
|
|
exp = """%s
|
2010-09-08 12:07:01 +02:00
|
|
|
--- nochange\t(revision 2)
|
|
|
|
+++ nochange\t(working copy)
|
2010-08-27 16:25:50 +02:00
|
|
|
@@ -1,1 +1,2 @@
|
|
|
|
-This file didn't change.
|
|
|
|
+This file didn't change but
|
|
|
|
+is modified.
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'nochange')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
|
|
|
def testDiffUnversioned(self):
|
|
|
|
"""diff an unversioned file"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['toadd2']
|
2010-09-02 10:23:37 +02:00
|
|
|
self.assertRaises(osc.oscerr.OscIOError, self.__check_diff, p, '', None)
|
2010-08-27 16:25:50 +02:00
|
|
|
|
2010-09-02 13:41:20 +02:00
|
|
|
def testDiffAddedMissing(self):
|
|
|
|
"""diff a file which has satus 'A' but the local file does not exist"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['addedmissing']
|
|
|
|
self.assertRaises(osc.oscerr.OscIOError, self.__check_diff, p, '', None)
|
|
|
|
|
2010-08-27 16:25:50 +02:00
|
|
|
def testDiffMultipleFiles(self):
|
|
|
|
"""diff multiple files"""
|
|
|
|
self._change_to_pkg('simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['nochange', 'somefile']
|
|
|
|
exp = """%s
|
2010-09-08 12:07:01 +02:00
|
|
|
--- nochange\t(revision 2)
|
|
|
|
+++ nochange\t(working copy)
|
2010-08-27 16:25:50 +02:00
|
|
|
@@ -1,1 +1,2 @@
|
|
|
|
-This file didn't change.
|
|
|
|
+This file didn't change but
|
|
|
|
+is modified.
|
|
|
|
%s
|
|
|
|
--- somefile\t(revision 2)
|
|
|
|
+++ somefile\t(working copy)
|
2010-08-31 17:30:31 +02:00
|
|
|
@@ -1,1 +0,0 @@
|
2010-08-27 16:25:50 +02:00
|
|
|
-some content
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'nochange', TestDiffFiles.diff_hdr % 'somefile')
|
2010-08-31 11:20:34 +02:00
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
2010-09-02 13:41:20 +02:00
|
|
|
def testDiffReplacedEmptyTodo(self):
|
|
|
|
"""diff a complete package"""
|
|
|
|
self._change_to_pkg('replaced')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
exp = """%s
|
2010-09-08 12:07:01 +02:00
|
|
|
--- replaced\t(revision 2)
|
|
|
|
+++ replaced\t(working copy)
|
2010-09-02 13:41:20 +02:00
|
|
|
@@ -1,1 +1,1 @@
|
|
|
|
-yet another file
|
|
|
|
+foo replaced
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'replaced')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
2010-08-31 11:20:34 +02:00
|
|
|
def testDiffBinaryAdded(self):
|
|
|
|
"""diff an added binary file"""
|
|
|
|
self._change_to_pkg('binary')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['binary_added']
|
|
|
|
exp = """%s
|
|
|
|
Binary file 'binary_added' added.
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'binary_added')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
|
|
|
def testDiffBinaryDeleted(self):
|
|
|
|
"""diff a deleted binary file"""
|
|
|
|
self._change_to_pkg('binary')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['binary_deleted']
|
|
|
|
exp = """%s
|
|
|
|
Binary file 'binary_deleted' deleted.
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'binary_deleted')
|
|
|
|
self.__check_diff(p, exp, None)
|
|
|
|
|
|
|
|
def testDiffBinaryModified(self):
|
|
|
|
"""diff a modified binary file"""
|
|
|
|
self._change_to_pkg('binary')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
p.todo = ['binary']
|
|
|
|
exp = """%s
|
|
|
|
Binary file 'binary' has changed.
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'binary')
|
|
|
|
self.__check_diff(p, exp, None)
|
2010-08-27 16:25:50 +02:00
|
|
|
|
|
|
|
# diff with revision
|
|
|
|
@GET('http://localhost/source/osctest/remote_simple_noadd?rev=3', file='testDiffRemoteNoChange_files')
|
|
|
|
def testDiffRemoteNoChange(self):
|
|
|
|
"""diff against remote revision where no file changed"""
|
|
|
|
self._change_to_pkg('remote_simple_noadd')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
self.__check_diff(p, '', 3)
|
|
|
|
|
|
|
|
@GET('http://localhost/source/osctest/remote_simple?rev=3', file='testDiffRemoteModified_files')
|
|
|
|
@GET('http://localhost/source/osctest/remote_simple/merge?rev=3', file='testDiffRemoteModified_merge')
|
|
|
|
def testDiffRemoteModified(self):
|
|
|
|
"""diff against a remote revision with one modified file"""
|
|
|
|
self._change_to_pkg('remote_simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
exp = """%s
|
2010-09-08 12:07:01 +02:00
|
|
|
--- merge\t(revision 3)
|
|
|
|
+++ merge\t(working copy)
|
2010-08-27 16:25:50 +02:00
|
|
|
@@ -1,3 +1,4 @@
|
|
|
|
Is it
|
|
|
|
possible to
|
|
|
|
merge this file?
|
|
|
|
+I hope so...
|
|
|
|
%s
|
|
|
|
--- toadd1\t(revision 0)
|
|
|
|
+++ toadd1\t(revision 0)
|
2010-08-31 17:30:31 +02:00
|
|
|
@@ -0,0 +1,1 @@
|
2010-08-27 16:25:50 +02:00
|
|
|
+toadd1
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'merge', TestDiffFiles.diff_hdr % 'toadd1')
|
|
|
|
self.__check_diff(p, exp, 3)
|
|
|
|
|
|
|
|
@GET('http://localhost/source/osctest/remote_simple?rev=3', file='testDiffRemoteDeletedLocalAdded_files')
|
|
|
|
def testDiffRemoteNotExistingLocalAdded(self):
|
|
|
|
"""
|
|
|
|
a file which doesn't exist in a remote revision and
|
|
|
|
has status A in the wc
|
|
|
|
"""
|
|
|
|
self._change_to_pkg('remote_simple')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
exp = """%s
|
|
|
|
--- toadd1\t(revision 0)
|
|
|
|
+++ toadd1\t(revision 0)
|
2010-08-31 17:30:31 +02:00
|
|
|
@@ -0,0 +1,1 @@
|
2010-08-27 16:25:50 +02:00
|
|
|
+toadd1
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'toadd1')
|
|
|
|
self.__check_diff(p, exp, 3)
|
|
|
|
|
|
|
|
@GET('http://localhost/source/osctest/remote_simple_noadd?rev=3', file='testDiffRemoteExistingLocalNotExisting_files')
|
|
|
|
@GET('http://localhost/source/osctest/remote_simple_noadd/foobar?rev=3', file='testDiffRemoteExistingLocalNotExisting_foobar')
|
2010-08-31 11:20:34 +02:00
|
|
|
@GET('http://localhost/source/osctest/remote_simple_noadd/binary?rev=3', file='testDiffRemoteExistingLocalNotExisting_binary')
|
2010-08-27 16:25:50 +02:00
|
|
|
def testDiffRemoteExistingLocalNotExisting(self):
|
|
|
|
"""
|
|
|
|
a file doesn't exist in the local wc but exists
|
|
|
|
in the remote revision
|
|
|
|
"""
|
|
|
|
self._change_to_pkg('remote_simple_noadd')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
exp = """%s
|
|
|
|
--- foobar\t(revision 3)
|
|
|
|
+++ foobar\t(working copy)
|
2010-08-31 17:30:31 +02:00
|
|
|
@@ -1,2 +0,0 @@
|
2010-08-27 16:25:50 +02:00
|
|
|
-foobar
|
|
|
|
-barfoo
|
2010-08-31 11:20:34 +02:00
|
|
|
%s
|
|
|
|
Binary file 'binary' deleted.
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'foobar', TestDiffFiles.diff_hdr % 'binary')
|
2010-08-27 16:25:50 +02:00
|
|
|
self.__check_diff(p, exp, 3)
|
|
|
|
|
|
|
|
@GET('http://localhost/source/osctest/remote_localmodified?rev=3', file='testDiffRemoteUnchangedLocalModified_files')
|
|
|
|
@GET('http://localhost/source/osctest/remote_localmodified/nochange?rev=3', file='testDiffRemoteUnchangedLocalModified_nochange')
|
2010-08-31 11:20:34 +02:00
|
|
|
@GET('http://localhost/source/osctest/remote_localmodified/binary?rev=3', file='testDiffRemoteUnchangedLocalModified_binary')
|
2010-08-27 16:25:50 +02:00
|
|
|
def testDiffRemoteUnchangedLocalModified(self):
|
|
|
|
"""remote revision didn't change, local file is modified"""
|
|
|
|
self._change_to_pkg('remote_localmodified')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
exp = """%s
|
2010-09-08 12:07:01 +02:00
|
|
|
--- nochange\t(revision 3)
|
|
|
|
+++ nochange\t(working copy)
|
2010-08-27 16:25:50 +02:00
|
|
|
@@ -1,1 +1,2 @@
|
|
|
|
This file didn't change.
|
|
|
|
+oh it does
|
2010-08-31 11:20:34 +02:00
|
|
|
%s
|
|
|
|
Binary file 'binary' has changed.
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'nochange', TestDiffFiles.diff_hdr % 'binary')
|
2010-08-27 16:25:50 +02:00
|
|
|
self.__check_diff(p, exp, 3)
|
|
|
|
|
|
|
|
@GET('http://localhost/source/osctest/remote_simple_noadd?rev=3', file='testDiffRemoteMissingLocalExisting_files')
|
|
|
|
def testDiffRemoteMissingLocalExisting(self):
|
|
|
|
"""
|
|
|
|
remote revision misses a file which exists in the local wc (state ' ')"""
|
|
|
|
self._change_to_pkg('remote_simple_noadd')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
exp = """%s
|
|
|
|
--- foo\t(revision 0)
|
|
|
|
+++ foo\t(working copy)
|
2010-08-31 17:30:31 +02:00
|
|
|
@@ -0,0 +1,1 @@
|
2010-08-27 16:25:50 +02:00
|
|
|
+This is a simple test.
|
|
|
|
""" % (TestDiffFiles.diff_hdr % 'foo')
|
|
|
|
self.__check_diff(p, exp, 3)
|
|
|
|
|
|
|
|
@GET('http://localhost/source/osctest/remote_localdelete?rev=3', file='testDiffRemoteMissingLocalDeleted_files')
|
|
|
|
def testDiffRemoteMissingLocalDeleted(self):
|
|
|
|
"""
|
|
|
|
remote revision misses a file which is marked for
|
|
|
|
deletion in the local wc
|
|
|
|
"""
|
|
|
|
# empty diff is expected (svn does the same)
|
|
|
|
self._change_to_pkg('remote_localdelete')
|
|
|
|
p = osc.core.Package('.')
|
|
|
|
self.__check_diff(p, '', 3)
|
|
|
|
|
|
|
|
def __check_diff(self, p, exp, revision=None):
|
|
|
|
s = ''
|
|
|
|
for i in p.get_diff(revision):
|
|
|
|
s += ''.join(i)
|
|
|
|
self.assertEqual(s, exp)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import unittest
|
|
|
|
unittest.main()
|