BlastJobTest.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace Tests;
  3. use StatonLab\TripalTestSuite\DBTransaction;
  4. use StatonLab\TripalTestSuite\TripalTestCase;
  5. use Faker\Factory;
  6. /**
  7. * Tests running BLAST jobs. Specifically, run_BLAST_tripal_job().
  8. */
  9. class BlastJobTest extends TripalTestCase {
  10. use DBTransaction;
  11. /**
  12. * Tests BLASTN
  13. */
  14. public function testBLASTn() {
  15. $faker = Factory::create();
  16. // Test we have access to the NCBI Blast commands.
  17. // Setting the default to where it is on Travis CI: /usr/local/bin.
  18. $blast_path = variable_get('blast_path', '/usr/local/bin/');
  19. $this->assertFileExists($blast_path . 'blastn', 'NCBI blastn command not found. Expecting it here: '.$blast_path.'blastn');
  20. $this->assertFileExists($blast_path . 'blast_formatter', 'NCBI blast_formatter command not found. Expecting it here: '.$blast_path.'blast_formatter');
  21. // Retrieve paths to files.
  22. $module_path = DRUPAL_ROOT . '/' . drupal_get_path('module','blast_ui');
  23. $file_path = DRUPAL_ROOT . '/' . variable_get('file_public_path', conf_path() . '/files');
  24. // Set parameters for run_BLAST_tripal_job().
  25. $program = 'blastn';
  26. $query = $module_path . '/tests/test_files/Citrus_sinensis-orange1.1g015632m.g.fasta';
  27. $database = $module_path . '/tests/test_files/Citrus_sinensis-scaffold00001';
  28. $output_filestub = $file_path . '/tripal/tripal_blast/' . $faker->word;
  29. // Quick check that the output file doesnt already exists ;-).
  30. $this->assertFileNotExists($output_filestub . '.asn', "Result File, $output_file, already exists before the command is run.");
  31. // We start the test with no options.
  32. $options = array();
  33. // Supress output and tripal errors.
  34. // NOTE: silent() didn't work for some reason.
  35. putenv("TRIPAL_SUPPRESS_ERRORS=TRUE");
  36. ob_start();
  37. run_BLAST_tripal_job($program, $query, $database, $output_filestub, $options);
  38. // Clean the buffer and unset tripal errors suppression.
  39. ob_end_clean();
  40. putenv("TRIPAL_SUPPRESS_ERRORS");
  41. // Loop through each expected output file...
  42. $files_to_check = array();
  43. $files_to_check[] = $output_filestub . '.asn';
  44. $files_to_check[] = $output_filestub . '.xml';
  45. $files_to_check[] = $output_filestub . '.tsv';
  46. $files_to_check[] = $output_filestub . '.html';
  47. $files_to_check[] = $output_filestub . '.gff';
  48. foreach($files_to_check as $output_file) {
  49. // Check that the file exists.
  50. $this->assertFileExists($output_file, "Result File, $output_file, doesn't exist.");
  51. // Check that the file is not empty.
  52. $this->assertNotEquals(0, filesize($output_file), "The Result File, $output_file, is empty.");
  53. // Clean-up by removing the file.
  54. unlink($output_file);
  55. }
  56. }
  57. }