summaryrefslogtreecommitdiff
path: root/tests/test_update.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_update.py')
-rw-r--r--tests/test_update.py288
1 files changed, 0 insertions, 288 deletions
diff --git a/tests/test_update.py b/tests/test_update.py
deleted file mode 100644
index 27c1c62..0000000
--- a/tests/test_update.py
+++ /dev/null
@@ -1,288 +0,0 @@
-import osc.core
-import osc.oscerr
-import os
-import sys
-from common import GET, OscTestCase
-FIXTURES_DIR = os.path.join(os.getcwd(), 'update_fixtures')
-
-def suite():
- import unittest
- return unittest.makeSuite(TestUpdate)
-
-class TestUpdate(OscTestCase):
- def _get_fixtures_dir(self):
- return FIXTURES_DIR
-
- @GET('http://localhost/source/osctest/simple?rev=latest', file='testUpdateNoChanges_files')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- def testUpdateNoChanges(self):
- """update without any changes (the wc is the most recent version)"""
- self._change_to_pkg('simple')
- osc.core.Package('.').update()
- self.assertEqual(sys.stdout.getvalue(), 'At revision 1.\n')
-
- @GET('http://localhost/source/osctest/simple?rev=2', file='testUpdateNewFile_files')
- @GET('http://localhost/source/osctest/simple/upstream_added?rev=2', file='testUpdateNewFile_upstream_added')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- def testUpdateNewFile(self):
- """a new file was added to the remote package"""
- self._change_to_pkg('simple')
- osc.core.Package('.').update(rev=2)
- exp = 'A upstream_added\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_digests('testUpdateNewFile_files')
-
- @GET('http://localhost/source/osctest/simple?rev=2', file='testUpdateNewFileLocalExists_files')
- def testUpdateNewFileLocalExists(self):
- """
- a new file was added to the remote package but the same (unversioned)
- file exists locally
- """
- self._change_to_pkg('simple')
- self.assertRaises(osc.oscerr.PackageFileConflict, osc.core.Package('.').update, rev=2)
-
- @GET('http://localhost/source/osctest/simple?rev=2', file='testUpdateDeletedFile_files')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- def testUpdateDeletedFile(self):
- """a file was deleted from the remote package"""
- self._change_to_pkg('simple')
- osc.core.Package('.').update(rev=2)
- exp = 'D foo\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_digests('testUpdateDeletedFile_files')
- self.assertFalse(os.path.exists('foo'))
- self.assertFalse(os.path.exists(os.path.join('.osc', 'foo')))
-
- @GET('http://localhost/source/osctest/simple?rev=2', file='testUpdateUpstreamModifiedFile_files')
- @GET('http://localhost/source/osctest/simple/foo?rev=2', file='testUpdateUpstreamModifiedFile_foo')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- def testUpdateUpstreamModifiedFile(self):
- """a file was modified in the remote package (local file isn't modified)"""
-
- self._change_to_pkg('simple')
- osc.core.Package('.').update(rev=2)
- exp = 'U foo\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_digests('testUpdateUpstreamModifiedFile_files')
-
- @GET('http://localhost/source/osctest/conflict?rev=2', file='testUpdateConflict_files')
- @GET('http://localhost/source/osctest/conflict/merge?rev=2', file='testUpdateConflict_merge')
- @GET('http://localhost/source/osctest/conflict/_meta', file='meta.xml')
- def testUpdateConflict(self):
- """
- a file was modified in the remote package (local file is also modified
- and a merge isn't possible)
- """
- self._change_to_pkg('conflict')
- osc.core.Package('.').update(rev=2)
- exp = 'C merge\nAt revision 2.\n'
- self._check_digests('testUpdateConflict_files')
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_conflictlist('merge\n')
-
- @GET('http://localhost/source/osctest/already_in_conflict?rev=2', file='testUpdateAlreadyInConflict_files')
- @GET('http://localhost/source/osctest/already_in_conflict/merge?rev=2', file='testUpdateAlreadyInConflict_merge')
- @GET('http://localhost/source/osctest/already_in_conflict/_meta', file='meta.xml')
- def testUpdateAlreadyInConflict(self):
- """
- a file was modified in the remote package (the local file is already in conflict)
- """
- self._change_to_pkg('already_in_conflict')
- osc.core.Package('.').update(rev=2)
- exp = 'skipping \'merge\' (this is due to conflicts)\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_conflictlist('merge\n')
- self._check_digests('testUpdateAlreadyInConflict_files')
-
- @GET('http://localhost/source/osctest/deleted?rev=2', file='testUpdateLocalDeletions_files')
- @GET('http://localhost/source/osctest/deleted/foo?rev=2', file='testUpdateLocalDeletions_foo')
- @GET('http://localhost/source/osctest/deleted/merge?rev=2', file='testUpdateLocalDeletions_merge')
- @GET('http://localhost/source/osctest/deleted/_meta', file='meta.xml')
- def testUpdateLocalDeletions(self):
- """
- the files 'foo' and 'merge' were modified in the remote package
- and marked for deletion in the local wc. Additionally the file
- 'merge' was modified in the wc before deletion so the local file
- still exists (and a merge with the remote file is not possible)
- """
- self._change_to_pkg('deleted')
- osc.core.Package('.').update(rev=2)
- exp = 'U foo\nC merge\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_deletelist('foo\n')
- self._check_conflictlist('merge\n')
- self.assertEqual(open('foo', 'r').read(), open(os.path.join('.osc', 'foo'), 'r').read())
- self._check_digests('testUpdateLocalDeletions_files')
-
- @GET('http://localhost/source/osctest/restore?rev=latest', file='testUpdateRestore_files')
- @GET('http://localhost/source/osctest/restore/foo?rev=1', file='testUpdateRestore_foo')
- @GET('http://localhost/source/osctest/restore/_meta', file='meta.xml')
- def testUpdateRestore(self):
- """local file 'foo' was deleted with a non osc command and will be restored"""
- self._change_to_pkg('restore')
- osc.core.Package('.').update()
- exp = 'Restored \'foo\'\nAt revision 1.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_digests('testUpdateRestore_files')
-
- @GET('http://localhost/source/osctest/limitsize?rev=latest', file='testUpdateLimitSizeNoChange_filesremote')
- @GET('http://localhost/source/osctest/limitsize/_meta', file='meta.xml')
- def testUpdateLimitSizeNoChange(self):
- """
- a new file was added to the remote package but isn't checked out because
- of the size constraint
- """
- self._change_to_pkg('limitsize')
- osc.core.Package('.').update(size_limit=50)
- exp = 'D bigfile\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists(os.path.join('.osc', 'bigfile')))
- self.assertFalse(os.path.exists('bigfile'))
- self._check_digests('testUpdateLimitSizeNoChange_files', 'bigfile')
-
- @GET('http://localhost/source/osctest/limitsize_local?rev=latest', file='testUpdateLocalLimitSizeNoChange_filesremote')
- @GET('http://localhost/source/osctest/limitsize_local/_meta', file='meta.xml')
- def testUpdateLocalLimitSizeNoChange(self):
- """
- a new file was added to the remote package but isn't checked out because
- of the local size constraint
- """
- self._change_to_pkg('limitsize_local')
- p = osc.core.Package('.')
- p.update()
- exp = 'D bigfile\nD merge\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists(os.path.join('.osc', 'bigfile')))
- self.assertFalse(os.path.exists(os.path.join('.osc', 'merge')))
- self.assertFalse(os.path.exists('bigfile'))
- self._check_digests('testUpdateLocalLimitSizeNoChange_files', 'bigfile', 'merge')
- self._check_status(p, 'bigfile', 'S')
- self._check_status(p, 'merge', 'S')
-
- @GET('http://localhost/source/osctest/limitsize?rev=latest', file='testUpdateLimitSizeAddDelete_filesremote')
- @GET('http://localhost/source/osctest/limitsize/exists?rev=2', file='testUpdateLimitSizeAddDelete_exists')
- @GET('http://localhost/source/osctest/limitsize/_meta', file='meta.xml')
- def testUpdateLimitSizeAddDelete(self):
- """
- a new file (exists) was added to the remote package with
- size < size_limit and one file (nochange) was deleted from the
- remote package (local file 'nochange' is modified). Additionally
- files which didn't change are removed the local wc due to the
- size constraint.
- """
- self._change_to_pkg('limitsize')
- osc.core.Package('.').update(size_limit=10)
- exp = 'A exists\nD bigfile\nD foo\nD merge\nD nochange\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists(os.path.join('.osc', 'bigfile')))
- self.assertFalse(os.path.exists('bigfile'))
- self.assertFalse(os.path.exists(os.path.join('.osc', 'foo')))
- self.assertFalse(os.path.exists('foo'))
- self.assertFalse(os.path.exists(os.path.join('.osc', 'merge')))
- self.assertFalse(os.path.exists('merge'))
- # exists because local version is modified
- self.assertTrue(os.path.exists('nochange'))
-
- self._check_digests('testUpdateLimitSizeAddDelete_files', 'bigfile', 'foo', 'merge', 'nochange')
-
- @GET('http://localhost/source/osctest/services?rev=latest', file='testUpdateServiceFilesAddDelete_filesremote')
- @GET('http://localhost/source/osctest/services/bigfile?rev=2', file='testUpdateServiceFilesAddDelete_bigfile')
- @GET('http://localhost/source/osctest/services/_service%3Abar?rev=2', file='testUpdateServiceFilesAddDelete__service:bar')
- @GET('http://localhost/source/osctest/services/_service%3Afoo?rev=2', file='testUpdateServiceFilesAddDelete__service:foo')
- @GET('http://localhost/source/osctest/services/_meta', file='meta.xml')
- def testUpdateAddDeleteServiceFiles(self):
- """update package with _service:* files"""
- self._change_to_pkg('services')
- osc.core.Package('.').update(service_files=True)
- exp = 'A bigfile\nD _service:exists\nA _service:bar\nA _service:foo\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists(os.path.join('.osc', '_service:bar')))
- self.assertTrue(os.path.exists('_service:bar'))
- self.assertEqual(open('_service:bar').read(), 'another service\n')
- self.assertFalse(os.path.exists(os.path.join('.osc', '_service:foo')))
- self.assertTrue(os.path.exists('_service:foo'))
- self.assertEqual(open('_service:foo').read(), 'small\n')
- self.assertTrue(os.path.exists('_service:exists'))
- self._check_digests('testUpdateServiceFilesAddDelete_files', '_service:foo', '_service:bar')
-
- @GET('http://localhost/source/osctest/services?rev=latest', file='testUpdateServiceFilesAddDelete_filesremote')
- @GET('http://localhost/source/osctest/services/bigfile?rev=2', file='testUpdateServiceFilesAddDelete_bigfile')
- @GET('http://localhost/source/osctest/services/_meta', file='meta.xml')
- def testUpdateDisableAddDeleteServiceFiles(self):
- """update package with _service:* files (with service_files=False)"""
- self._change_to_pkg('services')
- osc.core.Package('.').update()
- exp = 'A bigfile\nD _service:exists\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists(os.path.join('.osc', '_service:bar')))
- self.assertFalse(os.path.exists('_service:bar'))
- self.assertFalse(os.path.exists(os.path.join('.osc', '_service:foo')))
- self.assertFalse(os.path.exists('_service:foo'))
- self.assertTrue(os.path.exists('_service:exists'))
- self._check_digests('testUpdateServiceFilesAddDelete_files', '_service:foo', '_service:bar')
-
- @GET('http://localhost/source/osctest/metamode?meta=1&rev=latest', file='testUpdateMetaMode_filesremote')
- @GET('http://localhost/source/osctest/metamode/_meta?rev=1', file='testUpdateMetaMode__meta')
- def testUpdateMetaMode(self):
- """update package with metamode enabled"""
- self._change_to_pkg('metamode')
- p = osc.core.Package('.')
- p.update()
- exp = 'A _meta\nD foo\nD merge\nD nochange\nAt revision 1.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists('foo'))
- self.assertFalse(os.path.exists('merge'))
- self.assertFalse(os.path.exists('nochange'))
- self._check_digests('testUpdateMetaMode_filesremote')
- self._check_status(p, '_meta', ' ')
-
- @GET('http://localhost/source/osctest/new?rev=latest', file='testUpdateNew_filesremote')
- @GET('http://localhost/source/osctest/new/_meta', file='meta.xml')
- def testUpdateNew(self):
- """update a new (empty) package. The package has no revision."""
- self._change_to_pkg('new')
- p = osc.core.Package('.')
- p.update()
- exp = 'At revision None.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self._check_digests('testUpdateNew_filesremote')
-
- # tests to recover from an aborted/broken update
-
- @GET('http://localhost/source/osctest/simple/foo?rev=2', file='testUpdateResume_foo')
- @GET('http://localhost/source/osctest/simple/merge?rev=2', file='testUpdateResume_merge')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- @GET('http://localhost/source/osctest/simple?rev=2', file='testUpdateResume_files')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- def testUpdateResume(self):
- """resume an aborted update"""
- self._change_to_pkg('resume')
- osc.core.Package('.').update(rev=2)
- exp = 'resuming broken update...\nU foo\nU merge\nAt revision 2.\nAt revision 2.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists(os.path.join('.osc', '_in_update')))
- self._check_digests('testUpdateResume_files')
-
- @GET('http://localhost/source/osctest/simple/foo?rev=1', file='testUpdateResumeDeletedFile_foo')
- @GET('http://localhost/source/osctest/simple/merge?rev=1', file='testUpdateResumeDeletedFile_merge')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- @GET('http://localhost/source/osctest/simple?rev=1', file='testUpdateResumeDeletedFile_files')
- @GET('http://localhost/source/osctest/simple/_meta', file='meta.xml')
- def testUpdateResumeDeletedFile(self):
- """
- resume an aborted update (the file 'added' was already deleted in the first update
- run). It's marked as deleted again (this is due to an expected issue with the update
- code)
- """
- self._change_to_pkg('resume_deleted')
- osc.core.Package('.').update(rev=1)
- exp = 'resuming broken update...\nD added\nU foo\nU merge\nAt revision 1.\nAt revision 1.\n'
- self.assertEqual(sys.stdout.getvalue(), exp)
- self.assertFalse(os.path.exists(os.path.join('.osc', '_in_update')))
- self.assertFalse(os.path.exists('added'))
- self.assertFalse(os.path.exists(os.path.join('.osc', 'added')))
- self._check_digests('testUpdateResumeDeletedFile_files')
-
-if __name__ == '__main__':
- import unittest
- unittest.main()