X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=tests%2Fdbtest_contents.py;fp=tests%2Fdbtest_contents.py;h=9b33c04be9655497b132ea6393cf288afb0930ae;hb=1b3315533c0a701972e1636e809cf30106ee5424;hp=f7be2f268fb66fc26dc4764b9eed6a13c590d65c;hpb=e80699c1162ee22906a90717e2195d90b7606497;p=dak.git diff --git a/tests/dbtest_contents.py b/tests/dbtest_contents.py index f7be2f26..9b33c04b 100755 --- a/tests/dbtest_contents.py +++ b/tests/dbtest_contents.py @@ -2,9 +2,8 @@ from db_test import DBDakTestCase -from daklib.dbconn import DBConn, BinContents, OverrideType, get_override_type, \ - Section, get_section, get_sections, Priority, get_priority, get_priorities, \ - Override, get_override +from daklib.dbconn import * +from daklib.contents import ContentsWriter from sqlalchemy.exc import FlushError, IntegrityError import unittest @@ -129,5 +128,36 @@ class ContentsTestCase(DBDakTestCase): 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'])) + self.assertEqual('/usr/bin/hello editors/emacs,python/hello,utils/sl\n', \ + cw.formatline('/usr/bin/hello', ['editors/emacs', 'python/hello', 'utils/sl'])) + # test output_filename + self.assertEqual('tests/fixtures/ftp/squeeze/Contents-i386.gz', \ + cw.output_filename()) + cw = ContentsWriter(self.suite['squeeze'], self.arch['i386'], \ + self.otype['udeb'], self.comp['main']) + self.assertEqual('tests/fixtures/ftp/squeeze/main/Contents-i386.gz', \ + cw.output_filename()) + + def classes_to_clean(self): + return [Override, Suite, BinContents, DBBinary, DBSource, Architecture, Section, \ + OverrideType, Maintainer, Component, Priority, PoolFile] + if __name__ == '__main__': unittest.main()