207 lines
7.0 KiB
PHP
207 lines
7.0 KiB
PHP
|
|
<?php
|
||
|
|
/**************************************************/
|
||
|
|
/* code to submit, view and resubmit Test Results */
|
||
|
|
/**************************************************/
|
||
|
|
|
||
|
|
include("path.php");
|
||
|
|
require(BASE."include/incl.php");
|
||
|
|
require(BASE."include/tableve.php");
|
||
|
|
require(BASE."include/application.php");
|
||
|
|
require(BASE."include/mail.php");
|
||
|
|
require_once(BASE."include/testResults.php");
|
||
|
|
require_once(BASE."include/distributions.php");
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
if ($_REQUEST['sub'])
|
||
|
|
{
|
||
|
|
$oTest = new testData($_REQUEST['iTestingId']);
|
||
|
|
if($_REQUEST['iVersionId'])
|
||
|
|
$oTest->iVersionId = $_REQUEST['iVersionId'];
|
||
|
|
$errors = "";
|
||
|
|
|
||
|
|
// Submit or Resubmit the new testing results
|
||
|
|
if (($_REQUEST['sub'] == 'Submit') || ($_REQUEST['sub'] == 'Resubmit'))
|
||
|
|
{
|
||
|
|
$errors = $oTest->CheckOutputEditorInput();
|
||
|
|
$oTest->GetOutputEditorValues(); // retrieve the values from the current $_REQUEST
|
||
|
|
if(empty($errors))
|
||
|
|
{
|
||
|
|
$sDistribution = trim($_REQUEST['sDistribution']);
|
||
|
|
if(!empty($sDistribution))
|
||
|
|
{
|
||
|
|
$oDistribution = new distribution();
|
||
|
|
$oDistribution->sName = $sDistribution;
|
||
|
|
$oDistribution->create();
|
||
|
|
$oTest->iDistributionId = $oDistribution->iDistributionId;
|
||
|
|
}
|
||
|
|
if($_REQUEST['sub'] == 'Submit')
|
||
|
|
{
|
||
|
|
$oTest->create();
|
||
|
|
} else if($_REQUEST['sub'] == 'Resubmit')
|
||
|
|
{
|
||
|
|
$oTest->update(true);
|
||
|
|
$oTest->ReQueue();
|
||
|
|
}
|
||
|
|
redirect($_SERVER['PHP_SELF']);
|
||
|
|
} else
|
||
|
|
{
|
||
|
|
$_REQUEST['sub'] = 'view';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Delete testing results
|
||
|
|
if ($_REQUEST['sub'] == 'Delete')
|
||
|
|
{
|
||
|
|
if(is_numeric($_REQUEST['iTestingId']))
|
||
|
|
{
|
||
|
|
$oTest = new testData($_REQUEST['iTestingId']);
|
||
|
|
$oTest->delete();
|
||
|
|
}
|
||
|
|
|
||
|
|
redirect($_SERVER['PHP_SELF']);
|
||
|
|
}
|
||
|
|
|
||
|
|
// is this an old test?
|
||
|
|
if(is_numeric($_REQUEST['iTestingId']))
|
||
|
|
{
|
||
|
|
// make sure the user has permission to view this testing result
|
||
|
|
if(!$_SESSION['current']->hasPriv("admin") &&
|
||
|
|
!$_SESSION['current']->hasAppVersionModifyPermission($oTest->iVersionId)&&
|
||
|
|
!(($_SESSION['current']->iUserId == $oTest->iSubmitterId) && !($oTest->sQueued == 'false')))
|
||
|
|
{
|
||
|
|
errorpage("Insufficient privileges.");
|
||
|
|
exit;
|
||
|
|
} else
|
||
|
|
$oVersion = new version($oTest->iVersionId);
|
||
|
|
} else
|
||
|
|
{
|
||
|
|
$oTest->iVersionId = $_REQUEST['iVersionId'];
|
||
|
|
$oVersion = new version($_REQUEST['iVersionId']);
|
||
|
|
$oTest->sQueued = "new";
|
||
|
|
}
|
||
|
|
if ($_REQUEST['sub'] == 'view')
|
||
|
|
{
|
||
|
|
$oApp = new application($oVersion->iAppId);
|
||
|
|
$sVersionInfo = $oApp->sName." ".$oVersion->sName;
|
||
|
|
|
||
|
|
switch($oTest->sQueued)
|
||
|
|
{
|
||
|
|
case "new":
|
||
|
|
apidb_header("Submit new testing results for ".$sVersionInfo);
|
||
|
|
$oTest->sTestedDate = date('Y-m-d H:i:s');
|
||
|
|
break;
|
||
|
|
case "true":
|
||
|
|
apidb_header("Edit new testing results for ".$sVersionInfo);
|
||
|
|
break;
|
||
|
|
case "rejected":
|
||
|
|
apidb_header("Resubmit testing results for ".$sVersionInfo);
|
||
|
|
break;
|
||
|
|
case "False":
|
||
|
|
apidb_header("Edit testing results for ".$sVersionInfo);
|
||
|
|
break;
|
||
|
|
default:
|
||
|
|
apidb_header("Edit testing results for ");
|
||
|
|
}
|
||
|
|
echo '<form name="qform" action="'.$_SERVER['PHP_SELF'].'" method="post" enctype="multipart/form-data">',"\n";
|
||
|
|
|
||
|
|
|
||
|
|
//help
|
||
|
|
echo "<p>This is the Screen for imputting testing information so that others looking at the database will know \n";
|
||
|
|
echo "what was working or a particular release of Wine.</p>\n";
|
||
|
|
echo "<p>Please be as detailed as you can.</p>\n";
|
||
|
|
echo "<p>If you can not find your distribution on the list of existing Distributions please add it add it in the \n";
|
||
|
|
echo "field provided.</p>\n\n";
|
||
|
|
|
||
|
|
if(!empty($errors))
|
||
|
|
{
|
||
|
|
echo '<font color="red">',"\n";
|
||
|
|
echo '<p class="red"> We found the following errors:</p><ul>'.$errors.'</ul>Please correct them.';
|
||
|
|
echo '</font><br />',"\n";
|
||
|
|
echo '<p></p>',"\n";
|
||
|
|
}
|
||
|
|
|
||
|
|
// View Testing Details
|
||
|
|
$oTest->OutputEditor($_REQUEST['sDistribution'],true);
|
||
|
|
|
||
|
|
echo '<a href="'.BASE."appview.php?versionId=".$oTest->iVersionId.'">Back to Version</a>';
|
||
|
|
|
||
|
|
echo '<tr valign=top><td class=color3 align=center colspan=2>',"\n";
|
||
|
|
|
||
|
|
|
||
|
|
// Submit Buttons
|
||
|
|
switch($oTest->sQueued)
|
||
|
|
{
|
||
|
|
case "new":
|
||
|
|
echo '<input name="sub" type="submit" value="Submit" class="button" > ',"\n";
|
||
|
|
break;
|
||
|
|
case "true":
|
||
|
|
case "rejected":
|
||
|
|
case "False":
|
||
|
|
echo '<input name="sub" type="submit" value="Resubmit" class="button" > ',"\n";
|
||
|
|
echo '<input name="sub" type="submit" value="Delete" class="button" >',"\n";
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
echo '</td></tr>',"\n";
|
||
|
|
echo "</form>";
|
||
|
|
|
||
|
|
echo html_frame_end(" ");
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
// error no sub!
|
||
|
|
addmsg("Internal Routine Not Found!!", "red");
|
||
|
|
redirect($_SERVER['PHP_SELF']);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
else // if ($_REQUEST['sub']) is not defined, display the Testing results queue page
|
||
|
|
{
|
||
|
|
apidb_header("Testing Results");
|
||
|
|
|
||
|
|
// Get queued testing results.
|
||
|
|
$oTest = new TestData();
|
||
|
|
$hResult = $oTest->getTestingQueue("true");
|
||
|
|
|
||
|
|
if(!$hResult)
|
||
|
|
{
|
||
|
|
// no Tests in queue
|
||
|
|
echo html_frame_start("Submitted Testing Results","90%");
|
||
|
|
echo '<p><b>The Submitted Testng Results Queue is empty.</b></p>',"\n";
|
||
|
|
echo html_frame_end(" ");
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
// help
|
||
|
|
echo "<div align=center><table width='90%' border=0 cellpadding=3 cellspacing=0><tr><td>\n\n";
|
||
|
|
echo "<p>This is the list of Test Results waiting for submition, or to be deleted.</p>\n";
|
||
|
|
echo "<p>To view a submission, click on its name. From that page you can delete or edit and\n";
|
||
|
|
echo "re-submit it into the AppDB .<br>\n";
|
||
|
|
echo "</td></tr></table></div>\n\n";
|
||
|
|
|
||
|
|
$oTest->ShowListofTests($hResult,"Submitted Testing Results");
|
||
|
|
}
|
||
|
|
// Get rejected testing results.
|
||
|
|
$hResult = $oTest->getTestingQueue("rejected");
|
||
|
|
|
||
|
|
if(!$hResult || !mysql_num_rows($hResult))
|
||
|
|
{
|
||
|
|
//no Test Results in queue
|
||
|
|
echo html_frame_start("Rejected Testing Results","90%");
|
||
|
|
echo '<p><b>The Rejected Testng Results Queue is empty.</b></p>',"\n";
|
||
|
|
echo html_frame_end(" ");
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
//help
|
||
|
|
echo "<div align=center><table width='90%' border=0 cellpadding=3 cellspacing=0><tr><td>\n\n";
|
||
|
|
echo "<p>This is the list of Rejected Test Results waiting for re-submition or deletion.</p>\n";
|
||
|
|
echo "<p>To view a submission, click on its name. From that page you can delete or edit and re-submit it into \n";
|
||
|
|
echo "the AppDB .<br>\n";
|
||
|
|
echo "</td></tr></table></div>\n\n";
|
||
|
|
|
||
|
|
$oTest->ShowListofTests($hResult,"Rejected Testing Results");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
apidb_footer();
|
||
|
|
?>
|