X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=tests%2Fdbtest_packages.py;h=8264127017df3001e84621d919953ab258d44fec;hb=7c5adcf962fe99d6a42307595f263f47d0112fbc;hp=8764bc78a4139152d790baf867cf1835711f9107;hpb=1d3791dfe0910312c0e192f1cd81c2f55690b8f6;p=dak.git diff --git a/tests/dbtest_packages.py b/tests/dbtest_packages.py index 8764bc78..82641270 100755 --- a/tests/dbtest_packages.py +++ b/tests/dbtest_packages.py @@ -1,65 +1,46 @@ #!/usr/bin/env python from db_test import DBDakTestCase +from base_test import fixture -from daklib.dbconn import Architecture, Suite, get_suite_architectures, \ - get_architecture_suites, Maintainer, DBSource, Location, PoolFile, \ - check_poolfile, get_poolfile_like_name +from daklib.dbconn import * +from daklib.queue import get_suite_version_by_source, get_suite_version_by_package +from sqlalchemy.orm.exc import MultipleResultsFound import unittest +class Pkg(): + 'fake package class used for testing' + + def __init__(self): + self.dsc = {} + self.files = {} + self.changes = {} + +class Upload(): + 'fake Upload class used for testing' + + def __init__(self, pkg): + self.pkg = pkg + class PackageTestCase(DBDakTestCase): """ PackageTestCase checks the handling of source and binary packages in dak's database. """ - def setup_architectures(self): - "setup a hash of Architecture objects in self.arch" - - self.arch = {} - for arch_string in ('source', 'all', 'i386', 'amd64', 'kfreebsd-i386'): - self.arch[arch_string] = Architecture(arch_string) - # hard code ids for source and all - self.arch['source'].arch_id = 1 - self.arch['all'].arch_id = 2 - self.session.add_all(self.arch.values()) - - def setup_suites(self): - "setup a hash of Suite objects in self.suite" - - self.suite = {} - for suite_name in ('lenny', 'squeeze', 'sid'): - self.suite[suite_name] = Suite(suite_name = suite_name, version = '-') - self.session.add_all(self.suite.values()) - def setUp(self): super(PackageTestCase, self).setUp() - self.setup_architectures() - self.setup_suites() - - def connect_suite_architectures(self): - """ - Gonnect all suites and all architectures except for kfreebsd-i386 which - should not be in lenny. - """ - - for arch_string, architecture in self.arch.items(): - if arch_string != 'kfreebsd-i386': - architecture.suites = self.suite.values() - else: - architecture.suites = [self.suite['squeeze'], self.suite['sid']] + self.setup_binaries() + # flush to make sure that the setup is correct + self.session.flush() def test_suite_architecture(self): # check the id for architectures source and all self.assertEqual(1, self.arch['source'].arch_id) self.assertEqual(2, self.arch['all'].arch_id) # check the many to many relation between Suite and Architecture - self.arch['source'].suites.append(self.suite['lenny']) self.assertEqual('source', self.suite['lenny'].architectures[0]) - self.arch['source'].suites = [] - self.assertEqual([], self.suite['lenny'].architectures) - self.connect_suite_architectures() self.assertEqual(4, len(self.suite['lenny'].architectures)) self.assertEqual(3, len(self.arch['i386'].suites)) # check the function get_suite_architectures() @@ -77,32 +58,8 @@ class PackageTestCase(DBDakTestCase): architectures = get_suite_architectures('lenny', skipall = True, session = self.session) self.assertEqual(3, len(architectures)) self.assertTrue(self.arch['all'] not in architectures) - # check the function get_architecture_suites() - suites = get_architecture_suites('i386', self.session) - self.assertEqual(3, len(suites)) - self.assertTrue(self.suite['lenny'] in suites) - suites = get_architecture_suites('kfreebsd-i386', self.session) - self.assertEqual(2, len(suites)) - self.assertTrue(self.suite['lenny'] not in suites) - - def setup_locations(self): - 'create some Location objects, TODO: add component' - - self.loc = {} - self.loc['main'] = Location(path = \ - '/srv/ftp-master.debian.org/ftp/pool/') - self.session.add(self.loc['main']) - - def setup_poolfiles(self): - 'create some PoolFile objects' - - self.setup_locations() - self.file = {} - self.file['hello'] = PoolFile(filename = 'main/h/hello/hello_2.2-2.dsc', \ - location = self.loc['main'], filesize = 0, md5sum = '') - self.file['sl'] = PoolFile(filename = 'main/s/sl/sl_3.03-16.dsc', \ - location = self.loc['main'], filesize = 0, md5sum = '') - self.session.add_all(self.file.values()) + # check overrides + self.assertEqual(0, self.suite['lenny'].overrides.count()) def test_poolfiles(self): ''' @@ -117,68 +74,45 @@ class PackageTestCase(DBDakTestCase): somelocation.files.append(somefile) ''' - self.setup_poolfiles() - location = self.session.query(Location)[0] - self.assertEqual('/srv/ftp-master.debian.org/ftp/pool/', location.path) - self.assertEqual(2, location.files.count()) - poolfile = location.files. \ - filter(PoolFile.filename.like('%/hello/hello%')).one() - self.assertEqual('main/h/hello/hello_2.2-2.dsc', poolfile.filename) - self.assertEqual(location, poolfile.location) + main = self.loc['main'] + contrib = self.loc['contrib'] + self.assertEqual(fixture('ftp/pool/'), main.path) + count = len(self.file.keys()) - 2 + self.assertEqual(count, main.files.count()) + self.assertEqual(2, contrib.files.count()) + poolfile = main.files. \ + filter(PoolFile.filename.like('%/hello/hello%')). \ + order_by(PoolFile.filename)[0] + self.assertEqual('main/h/hello/hello_2.2-1.dsc', poolfile.filename) + self.assertEqual(main, poolfile.location) # test get() self.assertEqual(poolfile, \ self.session.query(PoolFile).get(poolfile.file_id)) self.assertEqual(None, self.session.query(PoolFile).get(-1)) # test remove() and append() - location.files.remove(self.file['sl']) - # TODO: deletion should cascade automatically - self.session.delete(self.file['sl']) - self.session.refresh(location) - self.assertEqual(1, location.files.count()) - # please note that we intentionally do not specify 'location' here - self.file['sl'] = PoolFile(filename = 'main/s/sl/sl_3.03-16.dsc', \ - filesize = 0, md5sum = '') - location.files.append(self.file['sl']) - self.session.refresh(location) - self.assertEqual(2, location.files.count()) + main.files.remove(self.file['sl_3.03-16.dsc']) + contrib.files.append(self.file['sl_3.03-16.dsc']) + self.assertEqual(count - 1, main.files.count()) + self.assertEqual(3, contrib.files.count()) # test fullpath - self.assertEqual('/srv/ftp-master.debian.org/ftp/pool/main/s/sl/sl_3.03-16.dsc', \ - self.file['sl'].fullpath) + self.assertEqual(fixture('ftp/pool/main/s/sl/sl_3.03-16.dsc'), \ + self.file['sl_3.03-16.dsc'].fullpath) # test check_poolfile() - self.assertEqual((True, self.file['sl']), \ + self.assertEqual((True, self.file['sl_3.03-16.dsc']), \ check_poolfile('main/s/sl/sl_3.03-16.dsc', 0, '', \ - location.location_id, self.session)) + contrib.location_id, self.session)) + # test string value of 2nd argument + self.assertEqual((True, self.file['sl_3.03-16.dsc']), \ + check_poolfile('main/s/sl/sl_3.03-16.dsc', '0', '', \ + contrib.location_id, self.session)) self.assertEqual((False, None), \ - check_poolfile('foobar', 0, '', location.location_id, self.session)) - self.assertEqual((False, self.file['sl']), \ + check_poolfile('foobar', 0, '', contrib.location_id, self.session)) + self.assertEqual((False, self.file['sl_3.03-16.dsc']), \ check_poolfile('main/s/sl/sl_3.03-16.dsc', 42, '', \ - location.location_id, self.session)) - self.assertEqual((False, self.file['sl']), \ + contrib.location_id, self.session)) + self.assertEqual((False, self.file['sl_3.03-16.dsc']), \ check_poolfile('main/s/sl/sl_3.03-16.dsc', 0, 'deadbeef', \ - location.location_id, self.session)) - # test get_poolfile_like_name() - self.assertEqual([self.file['sl']], \ - get_poolfile_like_name('sl_3.03-16.dsc', self.session)) - self.assertEqual([], get_poolfile_like_name('foobar', self.session)) - - def setup_maintainers(self): - 'create some Maintainer objects' - - self.maintainer = {} - self.maintainer['maintainer'] = Maintainer(name = 'Mr. Maintainer') - self.maintainer['uploader'] = Maintainer(name = 'Mrs. Uploader') - self.maintainer['lazyguy'] = Maintainer(name = 'Lazy Guy') - self.session.add_all(self.maintainer.values()) - - def setup_sources(self): - 'create a DBSource object; but it cannot be stored in the DB yet' - - self.setup_maintainers() - self.setup_poolfiles() - self.source = DBSource(source = 'hello', version = '2.2-2', \ - maintainer = self.maintainer['maintainer'], \ - changedby = self.maintainer['uploader'], \ - poolfile = self.file['hello'], install_date = self.now()) + contrib.location_id, self.session)) def test_maintainers(self): ''' @@ -187,8 +121,6 @@ class PackageTestCase(DBDakTestCase): TODO: add relations to changes_pending_source ''' - self.setup_sources() - self.session.flush() maintainer = self.maintainer['maintainer'] self.assertEqual(maintainer, self.session.query(Maintainer).get(maintainer.maintainer_id)) @@ -198,21 +130,203 @@ class PackageTestCase(DBDakTestCase): lazyguy = self.maintainer['lazyguy'] self.assertEqual(lazyguy, self.session.query(Maintainer).get(lazyguy.maintainer_id)) - self.assertEqual(maintainer.maintains_sources, [self.source]) + self.assertEqual(4, len(maintainer.maintains_sources)) + self.assertTrue(self.source['hello_2.2-2'] in maintainer.maintains_sources) self.assertEqual(maintainer.changed_sources, []) self.assertEqual(uploader.maintains_sources, []) - self.assertEqual(uploader.changed_sources, [self.source]) + self.assertEqual(4, len(uploader.changed_sources)) + self.assertTrue(self.source['sl_3.03-16'] in uploader.changed_sources) self.assertEqual(lazyguy.maintains_sources, []) self.assertEqual(lazyguy.changed_sources, []) + def get_source_in_suite_fail(self): + ''' + This function throws the MultipleResultsFound exception because + get_source_in_suite is broken. + + TODO: fix get_source_in_suite + ''' + + return get_source_in_suite('hello', 'sid', self.session) + def test_sources(self): - 'test relation between DBSource and PoolFile' + 'test relation between DBSource and PoolFile or Suite' + + # test PoolFile + self.assertEqual(self.file['hello_2.2-2.dsc'], self.source['hello_2.2-2'].poolfile) + self.assertEqual(self.source['hello_2.2-2'], self.file['hello_2.2-2.dsc'].source) + self.assertEqual(None, self.file['python2.6_2.6.6-8.dsc'].source) + # test Suite + squeeze = self.session.query(Suite). \ + filter(Suite.sources.contains(self.source['sl_3.03-16'])). \ + order_by(Suite.suite_name)[1] + self.assertEqual(self.suite['squeeze'], squeeze) + self.assertEqual(1, squeeze.sources.count()) + self.assertEqual(self.source['sl_3.03-16'], squeeze.sources[0]) + sl = self.session.query(DBSource). \ + filter(DBSource.suites.contains(self.suite['squeeze'])).one() + self.assertEqual(self.source['sl_3.03-16'], sl) + self.assertEqual(2, len(sl.suites)) + self.assertTrue(self.suite['sid'] in sl.suites) + # test get_source_in_suite() + self.assertRaises(MultipleResultsFound, self.get_source_in_suite_fail) + self.assertEqual(None, \ + get_source_in_suite('hello', 'squeeze', self.session)) + self.assertEqual(self.source['sl_3.03-16'], \ + get_source_in_suite('sl', 'sid', self.session)) + # test get_suites_source_in() + self.assertEqual([self.suite['sid']], \ + get_suites_source_in('hello', self.session)) + self.assertEqual(2, len(get_suites_source_in('sl', self.session))) + self.assertTrue(self.suite['squeeze'] in \ + get_suites_source_in('sl', self.session)) + + def test_add_dsc_to_db(self): + 'tests function add_dsc_to_db()' + + pkg = Pkg() + pkg.dsc['source'] = 'hello' + pkg.dsc['version'] = '2.2-3' + pkg.dsc['maintainer'] = self.maintainer['maintainer'].name + pkg.changes['changed-by'] = self.maintainer['uploader'].name + pkg.changes['fingerprint'] = 'deadbeef' + pkg.changes['distribution'] = { 'sid': '' } + pkg.files['hello_2.2-3.dsc'] = { \ + 'component': 'main', + 'location id': self.loc['main'].location_id, + 'files id': self.file['hello_2.2-3.dsc'].file_id } + pkg.dsc_files = {} + upload = Upload(pkg) + (source, dsc_component, dsc_location_id, pfs) = \ + add_dsc_to_db(upload, 'hello_2.2-3.dsc', self.session) + self.assertEqual('hello', source.source) + self.assertEqual('2.2-3', source.version) + self.assertEqual('sid', source.suites[0].suite_name) + self.assertEqual('main', dsc_component) + self.assertEqual(self.loc['main'].location_id, dsc_location_id) + self.assertEqual([], pfs) + + def test_get_suite_version_by_source(self): + 'test function get_suite_version_by_source()' + + result = get_suite_version_by_source('hello', self.session) + self.assertEqual(2, len(result)) + self.assertTrue(('sid', '2.2-1') in result) + self.assertTrue(('sid', '2.2-2') in result) + result = get_suite_version_by_source('sl', self.session) + self.assertEqual(2, len(result)) + self.assertTrue(('squeeze', '3.03-16') in result) + self.assertTrue(('sid', '3.03-16') in result) + + def test_binaries(self): + ''' + tests class DBBinary; TODO: test relation with Architecture, Maintainer, + PoolFile, and Fingerprint + ''' + + # test Suite relation + self.assertEqual(3, self.suite['sid'].binaries.count()) + self.assertTrue(self.binary['hello_2.2-1_i386'] in \ + self.suite['sid'].binaries.all()) + self.assertEqual(0, self.suite['lenny'].binaries.count()) + # test DBSource relation + self.assertEqual(3, len(self.source['hello_2.2-1'].binaries)) + self.assertTrue(self.binary['hello_2.2-1_i386'] in \ + self.source['hello_2.2-1'].binaries) + self.assertEqual(0, len(self.source['hello_2.2-2'].binaries)) + # test get_suites_binary_in() + self.assertEqual(2, len(get_suites_binary_in('hello', self.session))) + self.assertTrue(self.suite['sid'] in \ + get_suites_binary_in('hello', self.session)) + self.assertEqual(2, len(get_suites_binary_in('gnome-hello', self.session))) + self.assertTrue(self.suite['squeeze'] in \ + get_suites_binary_in('gnome-hello', self.session)) + self.assertEqual(0, len(get_suites_binary_in('sl', self.session))) + + def test_add_deb_to_db(self): + 'tests function add_deb_to_db()' + + pkg = Pkg() + pkg.changes['fingerprint'] = 'deadbeef' + pkg.changes['distribution'] = { 'sid': '' } + pkg.files['hello_2.2-2_i386.deb'] = { \ + 'package': 'hello', + 'version': '2.2-2', + 'maintainer': self.maintainer['maintainer'].name, + 'architecture': 'i386', + 'dbtype': 'deb', + 'pool name': 'main/h/hello/', + 'location id': self.loc['main'].location_id, + 'source package': 'hello', + 'source version': '2.2-2', + 'size': 0, + 'md5sum': 'deadbeef', + 'sha1sum': 'deadbeef', + 'sha256sum': 'deadbeef'} + upload = Upload(pkg) + bin, poolfile = add_deb_to_db(upload, 'hello_2.2-2_i386.deb', self.session) + self.session.refresh(poolfile) + self.session.refresh(poolfile.binary) + self.assertEqual('main/h/hello/hello_2.2-2_i386.deb', poolfile.filename) + self.assertEqual('hello', poolfile.binary.package) + self.assertEqual('2.2-2', poolfile.binary.version) + self.assertEqual(['sid'], poolfile.binary.suites) + self.assertEqual('Mr. Maintainer', poolfile.binary.maintainer.name) + self.assertEqual('i386', poolfile.binary.architecture.arch_string) + self.assertEqual('deb', poolfile.binary.binarytype) + self.assertEqual(self.loc['main'], poolfile.location) + self.assertEqual(self.source['hello_2.2-2'], poolfile.binary.source) + self.assertEqual(0, poolfile.filesize) + self.assertEqual('deadbeef', poolfile.md5sum) + self.assertEqual('deadbeef', poolfile.sha1sum) + self.assertEqual('deadbeef', poolfile.sha256sum) + + def test_get_suite_version_by_package(self): + 'test function get_suite_version_by_package()' + + result = get_suite_version_by_package('hello', 'i386', self.session) + self.assertEqual(2, len(result)) + self.assertTrue(('sid', '2.2-1') in result) + result = get_suite_version_by_package('hello', 'amd64', self.session) + self.assertEqual(0, len(result)) + result = get_suite_version_by_package('python-hello', 'i386', self.session) + self.assertEqual([('squeeze', '2.2-1')], result) + result = get_suite_version_by_package('python-hello', 'amd64', self.session) + self.assertEqual([('squeeze', '2.2-1')], result) + + def test_components(self): + 'test class Component' + + self.assertEqual([self.loc['main']], self.comp['main'].location) + self.assertEqual([self.loc['contrib']], self.comp['contrib'].location) + self.assertEqual(0, self.comp['main'].overrides.count()) - self.setup_sources() - self.assertEqual(self.file['hello'], self.source.poolfile) - self.assertEqual(self.source, self.file['hello'].source) - self.assertEqual(None, self.file['sl'].source) + def test_get_component_by_package_suite(self): + 'test get_component_by_package_suite()' + result = get_component_by_package_suite('hello', ['sid'], \ + session = self.session) + self.assertEqual('main', result) + result = get_component_by_package_suite('hello', ['hamm'], \ + session = self.session) + self.assertEqual(None, result) + result = get_component_by_package_suite('foobar', ['sid'], \ + session = self.session) + self.assertEqual(None, result) + # test that the newest version is returned + result = get_component_by_package_suite('gnome-hello', ['squeeze'], \ + session = self.session) + self.assertEqual('main', result) + result = get_component_by_package_suite('gnome-hello', ['sid'], \ + session = self.session) + self.assertEqual('contrib', result) + # test arch_list + result = get_component_by_package_suite('hello', ['sid'], \ + arch_list = ['i386'], session = self.session) + self.assertEqual('main', result) + result = get_component_by_package_suite('hello', ['sid'], \ + arch_list = ['amd64'], session = self.session) + self.assertEqual(None, result) if __name__ == '__main__': unittest.main()