//This tests the exponential backoff mechanism on the client in case of downloadURLs going down
//This test is not automated. It has to be run, and then client.out (in the host directory) must be looked at to examine wether everything is working correctly.
include_once("test.inc");
$project=newProject;
$user=newUser();
$host=newHost($user);
$app=newApp("upper_case");
$app_version=newApp_Version($app);
// the following is optional (makes client web download possible)
$core_app=newApp("core client");
$core_app_version=newApp_Version($core_app);
$project->add_app($core_app);
$project->add_app_version($core_app_version);
$project->add_user($user);
$project->add_app($app);
$project->add_app_version($app_version);
$project->install();// must install projects before adding to hosts