123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- #! /usr/bin/env python3
- #
- # Copyright (C) 2018, Margarita Manteroa <marga@debian.org>
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License along
- # with this program; if not, write to the Free Software Foundation, Inc.,
- # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- from db_test import DBDakTestCase, fixture
- from daklib import archive, upload, dbconn, policy
- from unittest import main
- class ArchiveTestCase(DBDakTestCase):
- def setup_keys(self):
- ''' Inserts the fingerprints in the keyring into the database.'''
- if 'keyring' in self.__dict__:
- return
- self.keyring = dbconn.Keyring()
- self.keyring.keyring_id = 1
- self.keyring.load_keys(fixture('packages/gpg/pubring.gpg'))
- _, _ = self.keyring.generate_users_from_keyring('%s', self.session)
- for key in self.keyring.keys.values():
- fpr = key['fingerprints'][0]
- fp = dbconn.get_or_set_fingerprint(fpr, self.session)
- fp.keyring_id = self.keyring.keyring_id
- fp.uid_id = dbconn.get_or_set_uid(key['uid'], self.session).uid_id
- self.session.add(fp)
- self.session.commit()
- def setup_srcformats(self):
- '''Add all source formats to the supported suites.'''
- for suite_name in self.suite:
- self.suite[suite_name].srcformats = self.session.query(
- dbconn.SrcFormat).all()
- self.session.add(self.suite[suite_name])
- self.session.commit()
- def attempt_upload(self, changes):
- '''Return an ArchiveUpload for the received changes.'''
- return archive.ArchiveUpload(
- fixture('packages'), changes, [fixture('packages/gpg/pubring.gpg')])
- def test_upload_rejects(self):
- # Parse the changes file
- changes = upload.Changes(fixture('packages'),
- 'linux_42.0-1_amd64.changes',
- [fixture('packages/gpg/pubring.gpg')],
- True)
- # Insert the fingerprint, but without associating it to a keyring
- dbconn.get_or_set_fingerprint(
- changes.primary_fingerprint, self.session)
- self.session.commit()
- # Try to upload, it should fail with the key being unknown
- with self.attempt_upload(changes) as attempt:
- result = attempt.check()
- self.assertFalse(result)
- self.assertEqual(attempt.reject_reasons,
- [u'.changes signed by unknown key.'])
- # Import the keyring
- self.setup_keys()
- # New attempt, it should fail with missing suite
- with self.attempt_upload(changes) as attempt:
- result = attempt.check()
- self.assertFalse(result)
- self.assertEqual(attempt.reject_reasons,
- [u'No target suite found. Please check your target distribution and that you uploaded to the right archive.'])
- # Add the missing suite
- self.setup_suites([('unstable', 'sid')])
- self.session.commit()
- # New attempt, it should fail with missing srcformat
- with self.attempt_upload(changes) as attempt:
- result = attempt.check()
- self.assertFalse(result)
- self.assertEqual(attempt.reject_reasons,
- [u'source format 3.0 (quilt) is not allowed in suite unstable'])
- # Add the missing format
- self.setup_srcformats()
- # New attempt, it should fail with missing architecture
- with self.attempt_upload(changes) as attempt:
- result = attempt.check()
- self.assertFalse(result)
- self.assertEqual(attempt.reject_reasons,
- [u'Architecture source is not allowed in suite unstable'])
- # Add the missing architecture / suites connection
- self.setup_architectures()
- self.session.commit()
- # New attempt, it should succeed and be a new package.
- with self.attempt_upload(changes) as attempt:
- result = attempt.check()
- self.assertTrue(result)
- self.assertTrue(attempt.new)
- self.assertEqual(attempt.reject_reasons, [])
- def test_upload_new(self):
- # Parse the changes file
- changes = upload.Changes(fixture('packages'),
- 'linux_42.0-1_amd64.changes',
- [fixture('packages/gpg/pubring.gpg')],
- True)
- # Do all the setup needed for the upload to be accepted
- dbconn.get_or_set_fingerprint(
- changes.primary_fingerprint, self.session)
- self.setup_keys()
- self.setup_suites([('unstable', 'sid')])
- self.setup_srcformats()
- self.setup_architectures()
- self.session.commit()
- # First attempt, it should succeed and be a NEW package
- first_upload = self.attempt_upload(changes)
- with first_upload as attempt:
- result = attempt.check()
- self.assertTrue(result)
- self.assertTrue(attempt.new)
- self.assertEqual(attempt.reject_reasons, [])
- # Add the override for the source package
- override = {}
- override['package'] = changes.source_name
- override['priority'] = 'optional'
- override['section'] = 'kernel'
- override['component'] = changes.source.component
- override['type'] = 'dsc'
- queue = policy.PolicyQueueUploadHandler(changes, self.session)
- queue.add_overrides([override], self.suite['unstable'])
- self.session.commit()
- # Second attempt, it should succeed but be NEW because of new binaries
- with self.attempt_upload(changes) as attempt:
- result = attempt.check()
- self.assertTrue(result)
- self.assertTrue(attempt.new)
- self.assertEqual(attempt.reject_reasons, [])
- # Add the binary overrides
- overrides = []
- for binary in changes.binaries:
- override = {}
- override['package'] = binary.name
- override['priority'] = 'optional'
- override['section'] = 'kernel'
- override['component'] = binary.component
- override['type'] = binary.type
- overrides.append(override)
- queue.add_overrides(overrides, self.suite['unstable'])
- self.session.commit()
- # Third attempt, this time it should succeed and not be NEW
- with self.attempt_upload(changes) as attempt:
- result = attempt.check()
- self.assertTrue(result)
- self.assertFalse(attempt.new)
- self.assertEqual(attempt.reject_reasons, [])
- def classes_to_clean(self):
- for object_ in self.session.query(dbconn.Override):
- self.session.delete(object_)
- if 'suite' in self.__dict__:
- self.clean_suites()
- return [dbconn.Fingerprint, dbconn.Uid]
- if __name__ == '__main__':
- main()
|