Added tests

Small fixes
This commit is contained in:
RainLoop Team 2014-05-29 20:01:10 +04:00
parent c6a9563d81
commit 5236810d6b
16 changed files with 73608 additions and 45 deletions

View file

@ -38,11 +38,11 @@ class FetchType
*/
private static function addHelper(&$aReturn, $mType)
{
if (is_string($mType))
if (\is_string($mType))
{
$aReturn[$mType] = '';
}
else if (is_array($mType) && 2 === count($mType) && is_string($mType[0]) &&
else if (\is_array($mType) && 2 === count($mType) && \is_string($mType[0]) &&
is_callable($mType[1]))
{
$aReturn[$mType[0]] = $mType[1];
@ -58,13 +58,13 @@ class FetchType
public static function BuildBodyCustomHeaderRequest(array $aHeaders, $bPeek = true)
{
$sResult = '';
if (0 < count($aHeaders))
if (0 < \count($aHeaders))
{
$aHeaders = array_map('trim', $aHeaders);
$aHeaders = array_map('strtoupper', $aHeaders);
$aHeaders = \array_map('trim', $aHeaders);
$aHeaders = \array_map('strtoupper', $aHeaders);
$sResult = $bPeek ? self::BODY_PEEK : self::BODY;
$sResult .= '[HEADER.FIELDS ('.implode(' ', $aHeaders).')]';
$sResult .= '[HEADER.FIELDS ('.\implode(' ', $aHeaders).')]';
}
return $sResult;

View file

@ -1697,7 +1697,6 @@ class ImapClient extends \MailSo\Net\NetClient
if ($bFindCapa)
{
// $this->oLogger->WriteDump($oImapResponse);
$this->initCapabilityImapResponse($oImapResponse);
}
@ -2022,6 +2021,21 @@ class ImapClient extends \MailSo\Net\NetClient
break;
}
// TODO
$iClosingPosNext = $iClosingPos + 1;
if (
isset($this->sResponseBuffer[$iClosingPosNext]) &&
' ' !== $this->sResponseBuffer[$iClosingPosNext] &&
"\r" !== $this->sResponseBuffer[$iClosingPosNext] &&
"\n" !== $this->sResponseBuffer[$iClosingPosNext] &&
']' !== $this->sResponseBuffer[$iClosingPosNext] &&
')' !== $this->sResponseBuffer[$iClosingPosNext]
)
{
$iClosingPos++;
continue;
}
$iSlashCount = 0;
while ('\\' === $this->sResponseBuffer[$iClosingPos - $iSlashCount - 1])
{