/**
  * wait4jobs
  *
  * Are there any jobs running?
  *
  * Wait for 2 hours for the test jobs to finish, check every 5 minutes
  * to see if they are done.
  *
  * @return boolean TRUE/FALSE
  *
  * @version "$Id: fossologyTestCase.php 4020 2011-03-31 21:30:29Z rrando $"
  *
  * @TODO: make a general program that can wait an arbitrary time, should
  * also allow for an interval, e.g. check for 2 hours every 7 min.
  *
  * Created on Jan. 15, 2009
  */
 public function wait4jobs()
 {
     require_once 'testClasses/check4jobs.php';
     define("FiveMIN", "300");
     $Jq = new check4jobs();
     /* wait at most 2 hours for test jobs to finish */
     $done = FALSE;
     for ($i = 1; $i <= 24; $i++) {
         //print "DB:W4Q: checking Q...\n";
         $number = $Jq->Check();
         if ($number != 0) {
             //print "sleeping 10 min...\n";
             sleep(FiveMIN);
         } else {
             //print "$number jobs found in the Queue\n";
             $done = TRUE;
             break;
         }
     }
     if ($done === FALSE) {
         print "{$argv[0]} waited for 2 hours and the jobs are still not done\n" . "Please investigate\n";
         return FALSE;
     }
     if ($done === TRUE) {
         return TRUE;
     }
 }
Example #2
0
 * point.
 *
 * @return boolean (0 = success, 1 failure)
 *
 * @version "$Id: wait4jobs.php 2511 2009-09-10 00:25:40Z rrando $"
 *
 * @TODO: make a general program that can wait an arbitrary time, should
 * also allow for an interval, e.g. check for 2 hours every 7 min.
 *
 * Created on Jan. 15, 2009
 */
require_once 'TestEnvironment.php';
require_once 'testClasses/check4jobs.php';
define("TenMIN", "600");
//print "I am:{$argv[0]}\n";
$Jq = new check4jobs();
/* check every 10 minutes, wait at most 3 hours for test jobs to finish */
$done = FALSE;
for ($i = 1; $i <= 18; $i++) {
    //print "DB:W4Q: checking Q...\n";
    $number = $Jq->Check();
    if ($number != 0) {
        //print "sleeping 10 min...\n";
        sleep(TenMIN);
    } else {
        print "no jobs found in the Q:{$number}\n";
        $done = TRUE;
        break;
    }
}
if ($done === FALSE) {