X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=tests%2Fdbtest_contents.py;h=622e4aaf80d857fa16247c2e779253a794ec01a7;hb=87bcdbc7dffd6230cb4d49942fbd87ead6f2fffe;hp=7f9aa57f433fc3e640a35d84a02fa1fc1aefbf92;hpb=760893ca243ad5a9a9ff16eae75ce31b5a1c74de;p=dak.git diff --git a/tests/dbtest_contents.py b/tests/dbtest_contents.py index 7f9aa57f..622e4aaf 100755 --- a/tests/dbtest_contents.py +++ b/tests/dbtest_contents.py @@ -5,6 +5,7 @@ from db_test import DBDakTestCase from daklib.dbconn import * from daklib.contents import ContentsWriter, ContentsScanner +from os.path import normpath from sqlalchemy.exc import FlushError, IntegrityError import unittest @@ -144,16 +145,14 @@ class ContentsTestCase(DBDakTestCase): 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'])) + cw.formatline('/usr/bin/hello', 'python/hello')) # test output_filename - self.assertEqual('tests/fixtures/ftp/squeeze/Contents-i386.gz', \ - cw.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/squeeze/main/Contents-i386.gz', \ - cw.output_filename()) + 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()