mirror of https://github.com/BOINC/boinc.git
71 lines
2.2 KiB
PHP
71 lines
2.2 KiB
PHP
#! /usr/local/bin/php
|
|
<?php
|
|
// This tests whether the most basic mechanisms are working
|
|
// Also whether stderr output is reported correctly
|
|
// Also tests if water levels are working correctly
|
|
|
|
include_once("test.inc");
|
|
|
|
$project = new Project;
|
|
|
|
$app = new App("upper_case");
|
|
$app_version = new App_Version($app);
|
|
|
|
// the following is optional (makes client web download possible)
|
|
$core_app = new App("core client");
|
|
$core_app_version = new App_Version($core_app);
|
|
$project->add_app($core_app);
|
|
$project->add_app_version($core_app_version);
|
|
|
|
$project->add_app($app);
|
|
$project->add_app_version($app_version);
|
|
|
|
$user = new User();
|
|
$user->project_prefs = "<project_specific>\nfoobar\n</project_specific>\n";
|
|
$user->global_prefs = "<venue name=\"home\">\n".
|
|
"<work_buf_min_days>0</work_buf_min_days>\n".
|
|
"<work_buf_max_days>2</work_buf_max_days>\n".
|
|
"<run_on_batteries/>\n".
|
|
"<max_bytes_sec_down>400000</max_bytes_sec_down>\n".
|
|
"</venue>\n";
|
|
|
|
$project->add_user($user);
|
|
$project->install(); // must install projects before adding to hosts
|
|
$project->install_feeder();
|
|
|
|
$host = new Host();
|
|
$host->log_flags = "log_flags.xml";
|
|
$host->add_user($user, $project);
|
|
$host->install();
|
|
|
|
echo "adding work\n";
|
|
|
|
$work = new Work($app);
|
|
$work->wu_template = "uc_wu";
|
|
$work->result_template = "uc_result";
|
|
$work->redundancy = 10;
|
|
$work->delay_bound = 2;
|
|
// Say that 1 WU takes 1 day on a ref comp
|
|
$work->rsc_fpops = 86400*1e9/2;
|
|
$work->rsc_iops = 86400*1e9/2;
|
|
array_push($work->input_files, "input");
|
|
$work->install($project);
|
|
|
|
$project->start_servers();
|
|
$host->run("-exit_when_idle -no_time_test");
|
|
|
|
$project->stop();
|
|
$project->validate($app, 2);
|
|
$result->state = RESULT_STATE_DONE;
|
|
$result->stderr_out = "APP: upper_case: starting, argc 1";
|
|
$result->exit_status = 0;
|
|
$project->check_results(2, $result);
|
|
$project->compare_file("uc_wu_0_0", "uc_correct_output");
|
|
$project->compare_file("uc_wu_1_0", "uc_correct_output");
|
|
|
|
$project->file_delete();
|
|
// input file should be gone here
|
|
$project->assimilate($app);
|
|
$project->file_delete();
|
|
?>
|