2002-04-30 22:22:54 +00:00
|
|
|
#! /usr/local/bin/php
|
|
|
|
<?php
|
2002-10-04 05:30:44 +00:00
|
|
|
// This tests whether the most basic mechanisms are working
|
|
|
|
// Also whether stderr output is reported correctly
|
|
|
|
|
2002-10-03 18:33:46 +00:00
|
|
|
include_once("test.inc");
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2002-10-03 18:33:46 +00:00
|
|
|
$project = new Project;
|
|
|
|
$user = new User();
|
|
|
|
$host = new Host($user);
|
|
|
|
$app = new App("upper_case");
|
|
|
|
$app_version = new App_Version($app);
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2002-10-03 18:33:46 +00:00
|
|
|
$project->add_user($user);
|
|
|
|
$project->add_app($app);
|
|
|
|
$project->add_app_version($app_version);
|
|
|
|
$project->install(); // must install projects before adding to hosts
|
|
|
|
|
2002-10-04 00:16:41 +00:00
|
|
|
$host->log_flags = "log_flags.xml";
|
2002-10-03 18:33:46 +00:00
|
|
|
$host->add_project($project);
|
|
|
|
$host->install();
|
|
|
|
|
|
|
|
echo "adding work\n";
|
|
|
|
|
2002-10-04 00:16:41 +00:00
|
|
|
$work = new Work($app);
|
2002-10-03 18:33:46 +00:00
|
|
|
$work->wu_template = "uc_wu";
|
|
|
|
$work->result_template = "uc_result";
|
|
|
|
$work->nresults = 2;
|
2002-11-07 19:31:34 +00:00
|
|
|
$work->delay_bound = 10;
|
2002-10-03 18:33:46 +00:00
|
|
|
array_push($work->input_files, "input");
|
2002-10-04 00:16:41 +00:00
|
|
|
$work->install($project);
|
2002-10-03 18:33:46 +00:00
|
|
|
|
2002-10-09 04:56:41 +00:00
|
|
|
$project->start_feeder();
|
2002-10-03 18:33:46 +00:00
|
|
|
$host->run("-exit_when_idle");
|
|
|
|
$project->stop();
|
|
|
|
|
2002-10-06 00:43:55 +00:00
|
|
|
$result->state = RESULT_STATE_DONE;
|
|
|
|
$result->stderr_out = "APP: upper_case: starting, argc 1";
|
|
|
|
$result->exit_status = 0;
|
|
|
|
$project->check_results(2, $result);
|
2002-10-03 18:33:46 +00:00
|
|
|
$project->compare_file("uc_wu_0_0", "uc_correct_output");
|
|
|
|
$project->compare_file("uc_wu_1_0", "uc_correct_output");
|
2002-04-30 22:22:54 +00:00
|
|
|
?>
|