Fix maintainer listing for versions. getMaintainersForAppIdVersionId() did not check that

additional entries had a superMaintainer = 1 so a maintainer of one version would be listed
as the maintainer for all versions of the application. Correct that issue and update the
unit test.
This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-16 23:19:44 +00:00
committed by WineHQ
parent 46df59f063
commit b584fe1df7
2 changed files with 28 additions and 5 deletions

View File

@@ -461,6 +461,10 @@ function test_maintainer_getMaintainersForAppIdVersionId()
$oUser->addPriv("admin");
$oSecondUser = new user();
$oSecondUser->iUserId = $oUser->iUserId + 1;
$oSecondUser->addPriv("admin");
$oApp = new application();
$oApp->create();
$oFirstVersion = new version();
@@ -519,6 +523,15 @@ function test_maintainer_getMaintainersForAppIdVersionId()
$oFirstVersionMaintainer->iUserId = $oUser->iUserId;
$oFirstVersionMaintainer->create();
/* Become a maintainer for the other version */
$oSecondVersionMaintainer = new maintainer();
$oSecondVersionMaintainer->sMaintainReason = "I need it";
$oSecondVersionMaintainer->iVersionId = $oSecondVersion->iVersionId;
$oSecondVersionMaintainer->iAppId = $oFirstVersion->iAppId;
$oSecondVersionMaintainer->bSuperMaintainer = FALSE;
$oSecondVersionMaintainer->iUserId = $oSecondUser->iUserId;
$oSecondVersionMaintainer->create();
if(!$hResult = maintainer::getMaintainersForAppIdVersionId(null,
$oFirstVersion->iVersionId))
{
@@ -542,8 +555,8 @@ function test_maintainer_getMaintainersForAppIdVersionId()
return FALSE;
}
/* The second version should not have any maintainers */
$iExpected = 0;
/* The second version should have 1 maintainer */
$iExpected = 1;
$iReceived = mysql_num_rows($hResult);
if($iExpected != $iReceived)
{