| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?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-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * 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-2015 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();
- }
- }
|