]> git.decadent.org.uk Git - dak.git/blobdiff - tests/dbtest_contents.py
Implement and test class ContentsWriter.
[dak.git] / tests / dbtest_contents.py
index f7be2f268fb66fc26dc4764b9eed6a13c590d65c..9b33c04be9655497b132ea6393cf288afb0930ae 100755 (executable)
@@ -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()