X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=tests%2Fdbtest_contents.py;h=90fe49666484a6e35ee19ac688fe0a440f7dfc4b;hb=4577b5c4be4e7899f092a6d4fbca6c9c0380c333;hp=d6619e70e630d1d46970da8799b52ec8fe33c438;hpb=9d7967ab9281ba8f125d9e03b360d23f288bff5b;p=dak.git diff --git a/tests/dbtest_contents.py b/tests/dbtest_contents.py index d6619e70..90fe4966 100755 --- a/tests/dbtest_contents.py +++ b/tests/dbtest_contents.py @@ -1,10 +1,13 @@ #!/usr/bin/env python -from db_test import DBDakTestCase +from db_test import DBDakTestCase, fixture -from daklib.dbconn import DBConn, BinContents +from daklib.dbconn import * +from daklib.contents import ContentsWriter, ContentsScanner, UnpackedSource +from os.path import normpath from sqlalchemy.exc import FlushError, IntegrityError +from subprocess import CalledProcessError import unittest class ContentsTestCase(DBDakTestCase): @@ -57,5 +60,137 @@ class ContentsTestCase(DBDakTestCase): self.session.add(contents2) self.session.flush() + def test_overridetype(self): + ''' + Test the OverrideType class. + ''' + self.setup_overridetypes() + self.assertEqual('deb', self.otype['deb'].overridetype) + self.assertEqual(0, self.otype['deb'].overrides.count()) + self.assertEqual(self.otype['deb'], get_override_type('deb', self.session)) + + def test_section(self): + ''' + Test Section class. + ''' + self.setup_sections() + self.assertEqual('python', self.section['python'].section) + self.assertEqual('python', self.section['python']) + self.assertTrue(self.section['python'] != 'java') + self.assertEqual(self.section['python'], get_section('python', self.session)) + all_sections = get_sections(self.session) + self.assertEqual(self.section['python'].section_id, all_sections['python']) + self.assertEqual(0, self.section['python'].overrides.count()) + + def test_priority(self): + ''' + Test Priority class. + ''' + self.setup_priorities() + self.assertEqual('standard', self.prio['standard'].priority) + self.assertEqual(7, self.prio['standard'].level) + self.assertEqual('standard', self.prio['standard']) + self.assertTrue(self.prio['standard'] != 'extra') + self.assertEqual(self.prio['standard'], get_priority('standard', self.session)) + all_priorities = get_priorities(self.session) + self.assertEqual(self.prio['standard'].priority_id, all_priorities['standard']) + self.assertEqual(0, self.prio['standard'].overrides.count()) + + def test_override(self): + ''' + Test Override class. + ''' + self.setup_overrides() + list = get_override('hello', session = self.session) + self.assertEqual(3, len(list)) + self.assertTrue(self.override['hello_sid_main_udeb'] in list) + self.assertTrue(self.override['hello_squeeze_main_deb'] in list) + list = get_override('hello', suite = 'sid', session = self.session) + self.assertEqual([self.override['hello_sid_main_udeb']], list) + list = get_override('hello', suite = ['sid'], session = self.session) + self.assertEqual([self.override['hello_sid_main_udeb']], list) + list = get_override('hello', component = 'contrib', session = self.session) + self.assertEqual([self.override['hello_lenny_contrib_deb']], list) + list = get_override('hello', component = ['contrib'], session = self.session) + self.assertEqual([self.override['hello_lenny_contrib_deb']], list) + list = get_override('hello', overridetype = 'deb', session = self.session) + self.assertEqual(2, len(list)) + self.assertTrue(self.override['hello_sid_main_udeb'] not in list) + self.assertTrue(self.override['hello_squeeze_main_deb'] in list) + list = get_override('hello', overridetype = ['deb'], session = self.session) + self.assertEqual(2, len(list)) + self.assertTrue(self.override['hello_sid_main_udeb'] not in list) + self.assertTrue(self.override['hello_squeeze_main_deb'] in list) + # test the backrefs + self.assertEqual(self.override['hello_sid_main_udeb'], \ + self.suite['sid'].overrides.one()) + self.assertEqual(2, self.comp['main'].overrides.count()) + self.assertEqual(self.override['hello_sid_main_udeb'], \ + self.comp['main'].overrides.filter_by(suite = self.suite['sid']).one()) + self.assertEqual(self.override['hello_sid_main_udeb'], \ + self.otype['udeb'].overrides.one()) + + def test_contentswriter(self): + ''' + Test the ContentsWriter class. + ''' + self.setup_suites() + self.setup_architectures() + self.setup_overridetypes() + self.setup_binaries() + self.setup_overrides() + self.binary['hello_2.2-1_i386'].contents.append(BinContents(file = '/usr/bin/hello')) + self.session.commit() + cw = ContentsWriter(self.suite['squeeze'], self.arch['i386'], self.otype['deb']) + self.assertEqual(['/usr/bin/hello python/hello\n'], \ + cw.get_list()) + # test formatline and sort order + self.assertEqual('/usr/bin/hello python/hello\n', \ + cw.formatline('/usr/bin/hello', 'python/hello')) + # test output_filename + self.assertEqual('tests/fixtures/ftp/dists/squeeze/Contents-i386.gz', \ + normpath(cw.output_filename())) + cw = ContentsWriter(self.suite['squeeze'], self.arch['i386'], \ + self.otype['udeb'], self.comp['main']) + self.assertEqual('tests/fixtures/ftp/dists/squeeze/main/Contents-i386.gz', \ + normpath(cw.output_filename())) + # test unicode support + self.binary['hello_2.2-1_i386'].contents.append(BinContents(file = '\xc3\xb6')) + self.session.commit() + # test delete cascading + self.session.delete(self.binary['hello_2.2-1_i386']) + self.session.commit() + + def test_scan_contents(self): + self.setup_binaries() + filelist = [f for f in self.binary['hello_2.2-1_i386'].scan_contents()] + self.assertEqual(['usr/bin/hello', 'usr/share/doc/hello/copyright'], + filelist) + self.session.commit() + ContentsScanner(self.binary['hello_2.2-1_i386'].binary_id).scan() + bin_contents_list = self.binary['hello_2.2-1_i386'].contents.order_by('file').all() + self.assertEqual(2, len(bin_contents_list)) + self.assertEqual('usr/bin/hello', bin_contents_list[0].file) + self.assertEqual('usr/share/doc/hello/copyright', bin_contents_list[1].file) + + def test_unpack(self): + ''' + Tests the UnpackedSource class. + ''' + self.setup_poolfiles() + dscfilename = fixture('ftp/pool/' + self.file['hello_2.2-1.dsc'].filename) + unpacked = UnpackedSource(dscfilename) + self.assertTrue(len(unpacked.get_root_directory()) > 0) + self.assertEqual('hello (2.2-1) unstable; urgency=low\n', + unpacked.get_changelog_file().readline()) + all_filenames = set(unpacked.get_all_filenames()) + self.assertEqual(8, len(all_filenames)) + self.assertTrue('debian/rules' in all_filenames) + self.assertRaises(CalledProcessError, lambda: UnpackedSource('invalidname')) + + def classes_to_clean(self): + return [Override, Suite, BinContents, DBBinary, DBSource, Architecture, Section, \ + OverrideType, Maintainer, Component, Priority, PoolFile] + if __name__ == '__main__': unittest.main()