You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Mail/MaildirFolderTest.php

455 lines
15 KiB
PHP

<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Mail
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: MaildirFolderTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
/**
* Zend_Mail_Storage_Folder_Maildir
*/
require_once 'Zend/Mail/Storage/Folder/Maildir.php';
/**
* Zend_Config
*/
require_once 'Zend/Config.php';
/**
* PHPUnit test case
*/
require_once 'PHPUnit/Framework/TestCase.php';
/**
* @category Zend
* @package Zend_Mail
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_Mail
*/
class Zend_Mail_MaildirFolderTest extends PHPUnit_Framework_TestCase
{
protected $_params;
protected $_originalDir;
protected $_tmpdir;
protected $_subdirs = array('.', '.subfolder', '.subfolder.test');
public function setUp()
{
$this->_originalDir = dirname(__FILE__) . '/_files/test.maildir/';
if (!is_dir($this->_originalDir . '/cur/')) {
$this->markTestSkipped('You have to unpack maildir.tar in Zend/Mail/_files/test.maildir/ '
. 'directory before enabling the maildir tests');
return;
}
if ($this->_tmpdir == null) {
if (TESTS_ZEND_MAIL_TEMPDIR != null) {
$this->_tmpdir = TESTS_ZEND_MAIL_TEMPDIR;
} else {
$this->_tmpdir = dirname(__FILE__) . '/_files/test.tmp/';
}
if (!file_exists($this->_tmpdir)) {
mkdir($this->_tmpdir);
}
$count = 0;
$dh = opendir($this->_tmpdir);
while (readdir($dh) !== false) {
++$count;
}
closedir($dh);
if ($count != 2) {
$this->markTestSkipped('Are you sure your tmp dir is a valid empty dir?');
return;
}
}
$this->_params = array();
$this->_params['dirname'] = $this->_tmpdir;
foreach ($this->_subdirs as $dir) {
if ($dir != '.') {
mkdir($this->_tmpdir . $dir);
}
foreach (array('cur', 'new') as $subdir) {
if (!file_exists($this->_originalDir . $dir . '/' . $subdir)) {
continue;
}
mkdir($this->_tmpdir . $dir . '/' . $subdir);
$dh = opendir($this->_originalDir . $dir . '/' . $subdir);
while (($entry = readdir($dh)) !== false) {
$entry = $dir . '/' . $subdir . '/' . $entry;
if (!is_file($this->_originalDir . $entry)) {
continue;
}
copy($this->_originalDir . $entry, $this->_tmpdir . $entry);
}
closedir($dh);
}
}
}
public function tearDown()
{
foreach (array_reverse($this->_subdirs) as $dir) {
foreach (array('cur', 'new') as $subdir) {
if (!file_exists($this->_tmpdir . $dir . '/' . $subdir)) {
continue;
}
$dh = opendir($this->_tmpdir . $dir . '/' . $subdir);
while (($entry = readdir($dh)) !== false) {
$entry = $this->_tmpdir . $dir . '/' . $subdir . '/' . $entry;
if (!is_file($entry)) {
continue;
}
unlink($entry);
}
closedir($dh);
rmdir($this->_tmpdir . $dir . '/' . $subdir);
}
if ($dir != '.') {
rmdir($this->_tmpdir . $dir);
}
}
}
public function testLoadOk()
{
try {
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
} catch (Exception $e) {
$this->fail('exception raised while loading Maildir folder');
}
}
public function testLoadConfig()
{
try {
$mail = new Zend_Mail_Storage_Folder_Maildir(new Zend_Config($this->_params));
} catch (Exception $e) {
$this->fail('exception raised while loading Maildir folder');
}
}
public function testNoParams()
{
try {
$mail = new Zend_Mail_Storage_Folder_Maildir(array());
} catch (Exception $e) {
return; // test ok
}
$this->fail('no exception raised with empty params');
}
public function testLoadFailure()
{
try {
$mail = new Zend_Mail_Storage_Folder_Maildir(array('dirname' => 'This/Folder/Does/Not/Exist'));
} catch (Exception $e) {
return; // test ok
}
$this->fail('no exception raised while loading unknown dirname');
}
public function testLoadUnkownFolder()
{
$this->_params['folder'] = 'UnknownFolder';
try {
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
} catch (Exception $e) {
return; // test ok
}
$this->fail('no exception raised while loading unknown folder');
}
public function testChangeFolder()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
try {
$mail->selectFolder('subfolder.test');
} catch (Exception $e) {
$this->fail('exception raised while selecting existing folder');
}
$this->assertEquals($mail->getCurrentFolder(), 'subfolder.test');
}
public function testUnknownFolder()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
try {
$mail->selectFolder('/Unknown/Folder/');
} catch (Exception $e) {
return; // test ok
}
$this->fail('no exception raised while selecting unknown folder');
}
public function testGlobalName()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
try {
// explicit call of __toString() needed for PHP < 5.2
$this->assertEquals($mail->getFolders()->subfolder->__toString(), 'subfolder');
} catch (Exception $e) {
$this->fail('exception raised while selecting existing folder and getting global name');
}
}
public function testLocalName()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
try {
$this->assertEquals($mail->getFolders()->subfolder->key(), 'test');
} catch (Exception $e) {
$this->fail('exception raised while selecting existing folder and getting local name');
}
}
public function testIterator()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$iterator = new RecursiveIteratorIterator($mail->getFolders(), RecursiveIteratorIterator::SELF_FIRST);
// we search for this folder because we can't assume a order while iterating
$search_folders = array('subfolder' => 'subfolder',
'subfolder.test' => 'test',
'INBOX' => 'INBOX');
$found_folders = array();
foreach ($iterator as $localName => $folder) {
if (!isset($search_folders[$folder->getGlobalName()])) {
continue;
}
// explicit call of __toString() needed for PHP < 5.2
$found_folders[$folder->__toString()] = $localName;
}
$this->assertEquals($search_folders, $found_folders);
}
public function testKeyLocalName()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$iterator = new RecursiveIteratorIterator($mail->getFolders(), RecursiveIteratorIterator::SELF_FIRST);
// we search for this folder because we can't assume a order while iterating
$search_folders = array('subfolder' => 'subfolder',
'subfolder.test' => 'test',
'INBOX' => 'INBOX');
$found_folders = array();
foreach ($iterator as $localName => $folder) {
if (!isset($search_folders[$folder->getGlobalName()])) {
continue;
}
// explicit call of __toString() needed for PHP < 5.2
$found_folders[$folder->__toString()] = $localName;
}
$this->assertEquals($search_folders, $found_folders);
}
public function testInboxEquals()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$iterator = new RecursiveIteratorIterator($mail->getFolders('INBOX.subfolder'), RecursiveIteratorIterator::SELF_FIRST);
// we search for this folder because we can't assume a order while iterating
$search_folders = array('subfolder.test' => 'test');
$found_folders = array();
foreach ($iterator as $localName => $folder) {
if (!isset($search_folders[$folder->getGlobalName()])) {
continue;
}
// explicit call of __toString() needed for PHP < 5.2
$found_folders[$folder->__toString()] = $localName;
}
$this->assertEquals($search_folders, $found_folders);
}
public function testSelectable()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$iterator = new RecursiveIteratorIterator($mail->getFolders(), RecursiveIteratorIterator::SELF_FIRST);
foreach ($iterator as $localName => $folder) {
$this->assertEquals($localName, $folder->getLocalName());
}
}
public function testCount()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$count = $mail->countMessages();
$this->assertEquals(5, $count);
$mail->selectFolder('subfolder.test');
$count = $mail->countMessages();
$this->assertEquals(1, $count);
}
public function testSize()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$shouldSizes = array(1 => 397, 89, 694, 452, 497);
$sizes = $mail->getSize();
$this->assertEquals($shouldSizes, $sizes);
$mail->selectFolder('subfolder.test');
$sizes = $mail->getSize();
$this->assertEquals(array(1 => 467), $sizes);
}
public function testFetchHeader()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$subject = $mail->getMessage(1)->subject;
$this->assertEquals('Simple Message', $subject);
$mail->selectFolder('subfolder.test');
$subject = $mail->getMessage(1)->subject;
$this->assertEquals('Message in subfolder', $subject);
}
public function testNotReadableFolder()
{
$stat = stat($this->_params['dirname'] . '.subfolder');
chmod($this->_params['dirname'] . '.subfolder', 0);
clearstatcache();
$statcheck = stat($this->_params['dirname'] . '.subfolder');
if ($statcheck['mode'] % (8 * 8 * 8) !== 0) {
chmod($this->_params['dirname'] . '.subfolder', $stat['mode']);
$this->markTestSkipped('cannot remove read rights, which makes this test useless (maybe you are using Windows?)');
return;
}
$check = false;
try {
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
} catch (Exception $e) {
$check = true;
// test ok
}
chmod($this->_params['dirname'] . '.subfolder', $stat['mode']);
if (!$check) {
$this->fail('no exception while loading invalid dir with subfolder not readable');
}
}
public function testNotReadableMaildir()
{
$stat = stat($this->_params['dirname']);
chmod($this->_params['dirname'], 0);
clearstatcache();
$statcheck = stat($this->_params['dirname']);
if ($statcheck['mode'] % (8 * 8 * 8) !== 0) {
chmod($this->_params['dirname'], $stat['mode']);
$this->markTestSkipped('cannot remove read rights, which makes this test useless (maybe you are using Windows?)');
return;
}
$check = false;
try {
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
} catch (Exception $e) {
$check = true;
// test ok
}
chmod($this->_params['dirname'], $stat['mode']);
if (!$check) {
$this->fail('no exception while loading not readable maildir');
}
}
public function testGetInvalidFolder()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$root = $mail->getFolders();
$root->foobar = new Zend_Mail_Storage_Folder('foobar', DIRECTORY_SEPARATOR . 'foobar');
try {
$mail->selectFolder('foobar');
} catch (Exception $e) {
return; // ok
}
$this->fail('no error while getting invalid folder');
}
public function testGetVanishedFolder()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$root = $mail->getFolders();
$root->foobar = new Zend_Mail_Storage_Folder('foobar', 'foobar');
try {
$mail->selectFolder('foobar');
} catch (Exception $e) {
return; // ok
}
$this->fail('no error while getting vanished folder');
}
public function testGetNotSelectableFolder()
{
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$root = $mail->getFolders();
$root->foobar = new Zend_Mail_Storage_Folder('foobar', 'foobar', false);
try {
$mail->selectFolder('foobar');
} catch (Exception $e) {
return; // ok
}
$this->fail('no error while getting not selectable folder');
}
public function testWithAdditionalFolder()
{
mkdir($this->_params['dirname'] . '.xyyx');
mkdir($this->_params['dirname'] . '.xyyx/cur');
$mail = new Zend_Mail_Storage_Folder_Maildir($this->_params);
$mail->selectFolder('xyyx');
$this->assertEquals($mail->countMessages(), 0);
rmdir($this->_params['dirname'] . '.xyyx/cur');
rmdir($this->_params['dirname'] . '.xyyx');
}
}