8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
125 lines
4.2 KiB
PHP
125 lines
4.2 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_Ldap
|
|
* @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: ChildrenIterationTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
|
*/
|
|
|
|
/**
|
|
* Zend_Ldap_OnlineTestCase
|
|
*/
|
|
require_once dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'OnlineTestCase.php';
|
|
/**
|
|
* @see Zend_Ldap_Node
|
|
*/
|
|
require_once 'Zend/Ldap/Node.php';
|
|
|
|
/**
|
|
* @category Zend
|
|
* @package Zend_Ldap
|
|
* @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_Ldap
|
|
* @group Zend_Ldap_Node
|
|
*/
|
|
class Zend_Ldap_Node_ChildrenIterationTest extends Zend_Ldap_OnlineTestCase
|
|
{
|
|
protected function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->_prepareLdapServer();
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
$this->_cleanupLdapServer();
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testSimpleIteration()
|
|
{
|
|
$node=$this->_getLdap()->getBaseNode();
|
|
$children=$node->getChildren();
|
|
|
|
$i=1;
|
|
foreach ($children as $rdn => $n) {
|
|
$dn=$n->getDn()->toString(Zend_Ldap_Dn::ATTR_CASEFOLD_LOWER);
|
|
$rdn=Zend_Ldap_Dn::implodeRdn($n->getRdnArray(), Zend_Ldap_Dn::ATTR_CASEFOLD_LOWER);
|
|
if ($i==1) {
|
|
$this->assertEquals('ou=Node', $rdn);
|
|
$this->assertEquals($this->_createDn('ou=Node,'), $dn);
|
|
}
|
|
else {
|
|
$this->assertEquals('ou=Test' . ($i-1), $rdn);
|
|
$this->assertEquals($this->_createDn('ou=Test' . ($i-1) . ','), $dn);
|
|
}
|
|
$i++;
|
|
}
|
|
$this->assertEquals(6, $i-1);
|
|
}
|
|
|
|
public function testSimpleRecursiveIteration()
|
|
{
|
|
$node=$this->_getLdap()->getBaseNode();
|
|
$ri=new RecursiveIteratorIterator($node, RecursiveIteratorIterator::SELF_FIRST);
|
|
$i=0;
|
|
foreach ($ri as $rdn => $n) {
|
|
$dn=$n->getDn()->toString(Zend_Ldap_Dn::ATTR_CASEFOLD_LOWER);
|
|
$rdn=Zend_Ldap_Dn::implodeRdn($n->getRdnArray(), Zend_Ldap_Dn::ATTR_CASEFOLD_LOWER);
|
|
if ($i==0) {
|
|
$this->assertEquals(Zend_Ldap_Dn::fromString(TESTS_ZEND_LDAP_WRITEABLE_SUBTREE)
|
|
->toString(Zend_Ldap_Dn::ATTR_CASEFOLD_LOWER), $dn);
|
|
}
|
|
else if ($i==1) {
|
|
$this->assertEquals('ou=Node', $rdn);
|
|
$this->assertEquals($this->_createDn('ou=Node,'), $dn);
|
|
}
|
|
else {
|
|
if ($i<4) {
|
|
$j=$i-1;
|
|
$base=$this->_createDn('ou=Node,');
|
|
}
|
|
else {
|
|
$j=$i-3;
|
|
$base=Zend_Ldap_Dn::fromString(TESTS_ZEND_LDAP_WRITEABLE_SUBTREE)
|
|
->toString(Zend_Ldap_Dn::ATTR_CASEFOLD_LOWER);
|
|
}
|
|
$this->assertEquals('ou=Test' . $j, $rdn);
|
|
$this->assertEquals('ou=Test' . $j . ',' . $base, $dn);
|
|
}
|
|
$i++;
|
|
}
|
|
$this->assertEquals(9, $i);
|
|
}
|
|
|
|
/**
|
|
* Test issue reported by Lance Hendrix on
|
|
* http://framework.zend.com/wiki/display/ZFPROP/Zend_Ldap+-+Extended+support+-+Stefan+Gehrig?
|
|
* focusedCommentId=13107431#comment-13107431
|
|
*/
|
|
public function testCallingNextAfterIterationShouldNotThrowException()
|
|
{
|
|
$node = $this->_getLdap()->getBaseNode();
|
|
$nodes = $node->searchChildren('(objectClass=*)');
|
|
foreach ($nodes as $rdn => $n) {
|
|
// do nothing - just iterate
|
|
}
|
|
$nodes->next();
|
|
}
|
|
}
|