galaxy-dist commit 99f33c73bf81: Removed binseq.zip test and replace it with a zip test.
# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User Nate Coraor <nate@bx.psu.edu> # Date 1277989166 14400 # Node ID 99f33c73bf815468400426870da113991e459efc # Parent e110168a83c91f14a2923149e195aa4e8855fde5 Removed binseq.zip test and replace it with a zip test. --- a/test/functional/test_get_data.py +++ b/test/functional/test_get_data.py @@ -90,35 +90,36 @@ class UploadData( TwillTestCase ): self.check_history_for_string( "File Format' to 'Scf' when uploading scf files" ) self.delete_history( id=self.security.encode_id( history.id ) ) def test_0025_upload_file( self ): - """Test uploading 1.scf.zip, manually setting the file format""" + """Test uploading 4.bed.zip, manually setting the file format""" self.check_history_for_string( 'Your history is empty' ) history = sa_session.query( galaxy.model.History ) \ .filter( and_( galaxy.model.History.table.c.deleted==False, galaxy.model.History.table.c.user_id==admin_user.id ) ) \ .order_by( desc( galaxy.model.History.table.c.create_time ) ) \ .first() - self.upload_file( '1.scf.zip', ftype='binseq.zip' ) + self.upload_file( '4.bed.zip', ftype='bed' ) hda = sa_session.query( galaxy.model.HistoryDatasetAssociation ) \ .order_by( desc( galaxy.model.HistoryDatasetAssociation.table.c.create_time ) ) \ .first() assert hda is not None, "Problem retrieving hda from database" - self.verify_dataset_correctness( '1.scf.zip', hid=str( hda.hid ) ) - self.check_history_for_string( "Archive of 1 binary sequence files</pre>" ) + self.verify_dataset_correctness( '4.bed', hid=str( hda.hid ) ) + self.check_history_for_string( "<th>1.Chrom</th><th>2.Start</th><th>3.End</th>" ) self.delete_history( id=self.security.encode_id( history.id ) ) def test_0030_upload_file( self ): - """Test uploading 1.scf.zip, NOT setting the file format""" + """Test uploading 4.bed.zip, NOT setting the file format""" self.check_history_for_string( 'Your history is empty' ) history = sa_session.query( galaxy.model.History ) \ .filter( and_( galaxy.model.History.table.c.deleted==False, galaxy.model.History.table.c.user_id==admin_user.id ) ) \ .order_by( desc( galaxy.model.History.table.c.create_time ) ) \ .first() - self.upload_file( '1.scf.zip' ) + self.upload_file( '4.bed.zip' ) hda = sa_session.query( galaxy.model.HistoryDatasetAssociation ) \ .order_by( desc( galaxy.model.HistoryDatasetAssociation.table.c.create_time ) ) \ .first() assert hda is not None, "Problem retrieving hda from database" - self.check_history_for_string( "'File Format' for archive consisting of binary files - use 'Binseq.zip'" ) + self.verify_dataset_correctness( '4.bed', hid=str( hda.hid ) ) + self.check_history_for_string( "<th>1.Chrom</th><th>2.Start</th><th>3.End</th>" ) self.delete_history( id=self.security.encode_id( history.id ) ) def test_0035_upload_file( self ): """Test uploading 1.sam NOT setting the file format""" Binary file test-data/1.scf.zip has changed Binary file test-data/4.bed.zip has changed
participants (1)
-
commits-noreply@bitbucket.org