363 lines
15 KiB
PHP
363 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_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: CopyRenameTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Zend_Ldap_OnlineTestCase
|
||
|
*/
|
||
|
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'OnlineTestCase.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Ldap_Dn
|
||
|
*/
|
||
|
require_once 'Zend/Ldap/Dn.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
|
||
|
*/
|
||
|
class Zend_Ldap_CopyRenameTest extends Zend_Ldap_OnlineTestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $_orgDn;
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $_newDn;
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $_orgSubTreeDn;
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $_newSubTreeDn;
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $_targetSubTreeDn;
|
||
|
|
||
|
/**
|
||
|
* @var array
|
||
|
*/
|
||
|
private $_nodes;
|
||
|
|
||
|
protected function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
$this->_prepareLdapServer();
|
||
|
|
||
|
$this->_orgDn=$this->_createDn('ou=OrgTest,');
|
||
|
$this->_newDn=$this->_createDn('ou=NewTest,');
|
||
|
$this->_orgSubTreeDn=$this->_createDn('ou=OrgSubtree,');
|
||
|
$this->_newSubTreeDn=$this->_createDn('ou=NewSubtree,');
|
||
|
$this->_targetSubTreeDn=$this->_createDn('ou=Target,');
|
||
|
|
||
|
$this->_nodes=array(
|
||
|
$this->_orgDn => array("objectClass" => "organizationalUnit", "ou" => "OrgTest"),
|
||
|
$this->_orgSubTreeDn => array("objectClass" => "organizationalUnit", "ou" => "OrgSubtree"),
|
||
|
'ou=Subtree1,' . $this->_orgSubTreeDn =>
|
||
|
array("objectClass" => "organizationalUnit", "ou" => "Subtree1"),
|
||
|
'ou=Subtree11,ou=Subtree1,' . $this->_orgSubTreeDn =>
|
||
|
array("objectClass" => "organizationalUnit", "ou" => "Subtree11"),
|
||
|
'ou=Subtree12,ou=Subtree1,' . $this->_orgSubTreeDn =>
|
||
|
array("objectClass" => "organizationalUnit", "ou" => "Subtree12"),
|
||
|
'ou=Subtree13,ou=Subtree1,' . $this->_orgSubTreeDn =>
|
||
|
array("objectClass" => "organizationalUnit", "ou" => "Subtree13"),
|
||
|
'ou=Subtree2,' . $this->_orgSubTreeDn =>
|
||
|
array("objectClass" => "organizationalUnit", "ou" => "Subtree2"),
|
||
|
'ou=Subtree3,' . $this->_orgSubTreeDn =>
|
||
|
array("objectClass" => "organizationalUnit", "ou" => "Subtree3"),
|
||
|
$this->_targetSubTreeDn => array("objectClass" => "organizationalUnit", "ou" => "Target")
|
||
|
);
|
||
|
|
||
|
$ldap=$this->_getLdap()->getResource();
|
||
|
foreach ($this->_nodes as $dn => $entry) {
|
||
|
ldap_add($ldap, $dn, $entry);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected function tearDown()
|
||
|
{
|
||
|
if ($this->_getLdap()->exists($this->_newDn))
|
||
|
$this->_getLdap()->delete($this->_newDn, false);
|
||
|
if ($this->_getLdap()->exists($this->_orgDn))
|
||
|
$this->_getLdap()->delete($this->_orgDn, false);
|
||
|
if ($this->_getLdap()->exists($this->_orgSubTreeDn))
|
||
|
$this->_getLdap()->delete($this->_orgSubTreeDn, true);
|
||
|
if ($this->_getLdap()->exists($this->_newSubTreeDn))
|
||
|
$this->_getLdap()->delete($this->_newSubTreeDn, true);
|
||
|
if ($this->_getLdap()->exists($this->_targetSubTreeDn))
|
||
|
$this->_getLdap()->delete($this->_targetSubTreeDn, true);
|
||
|
|
||
|
|
||
|
$this->_cleanupLdapServer();
|
||
|
parent::tearDown();
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafRename()
|
||
|
{
|
||
|
$org=$this->_getLdap()->getEntry($this->_orgDn, array(), true);
|
||
|
$this->_getLdap()->rename($this->_orgDn, $this->_newDn, false);
|
||
|
$this->assertFalse($this->_getLdap()->exists($this->_orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_newDn));
|
||
|
$new=$this->_getLdap()->getEntry($this->_newDn);
|
||
|
$this->assertEquals($org['objectclass'], $new['objectclass']);
|
||
|
$this->assertEquals(array('NewTest'), $new['ou']);
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafMoveAlias()
|
||
|
{
|
||
|
$this->_getLdap()->move($this->_orgDn, $this->_newDn, false);
|
||
|
$this->assertFalse($this->_getLdap()->exists($this->_orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_newDn));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafMoveToSubtree()
|
||
|
{
|
||
|
$this->_getLdap()->moveToSubtree($this->_orgDn, $this->_orgSubTreeDn, false);
|
||
|
$this->assertFalse($this->_getLdap()->exists($this->_orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgTest,' . $this->_orgSubTreeDn));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException Zend_Ldap_Exception
|
||
|
*/
|
||
|
public function testRenameSourceNotExists()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_createDn('ou=DoesNotExist,'), $this->_newDn, false);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException Zend_Ldap_Exception
|
||
|
*/
|
||
|
public function testRenameTargetExists()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_orgDn, $this->_createDn('ou=Test1,'), false);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException Zend_Ldap_Exception
|
||
|
*/
|
||
|
public function testRenameTargetParentNotExists()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_orgDn, $this->_createDn('ou=Test1,ou=ParentDoesNotExist,'), false);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException Zend_Ldap_Exception
|
||
|
*/
|
||
|
public function testRenameEmulationSourceNotExists()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_createDn('ou=DoesNotExist,'), $this->_newDn, false, true);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException Zend_Ldap_Exception
|
||
|
*/
|
||
|
public function testRenameEmulationTargetExists()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_orgDn, $this->_createDn('ou=Test1,'), false, true);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @expectedException Zend_Ldap_Exception
|
||
|
*/
|
||
|
public function testRenameEmulationTargetParentNotExists()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_orgDn, $this->_createDn('ou=Test1,ou=ParentDoesNotExist,'),
|
||
|
false, true);
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafRenameEmulation()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_orgDn, $this->_newDn, false, true);
|
||
|
$this->assertFalse($this->_getLdap()->exists($this->_orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_newDn));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafCopyToSubtree()
|
||
|
{
|
||
|
$this->_getLdap()->copyToSubtree($this->_orgDn, $this->_orgSubTreeDn, false);
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgTest,' . $this->_orgSubTreeDn));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafCopy()
|
||
|
{
|
||
|
$this->_getLdap()->copy($this->_orgDn, $this->_newDn, false);
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_newDn));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveRename()
|
||
|
{
|
||
|
$this->_getLdap()->rename($this->_orgSubTreeDn, $this->_newSubTreeDn, true);
|
||
|
$this->assertFalse($this->_getLdap()->exists($this->_orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($this->_newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $this->_newSubTreeDn));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveMoveToSubtree()
|
||
|
{
|
||
|
$this->_getLdap()->moveToSubtree($this->_orgSubTreeDn, $this->_targetSubTreeDn, true);
|
||
|
$this->assertFalse($this->_getLdap()->exists($this->_orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgSubtree,' . $this->_targetSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=OrgSubtree,' . $this->_targetSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,ou=OrgSubtree,' . $this->_targetSubTreeDn));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveCopyToSubtree()
|
||
|
{
|
||
|
$this->_getLdap()->copyToSubtree($this->_orgSubTreeDn, $this->_targetSubTreeDn, true);
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgSubtree,' . $this->_targetSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($this->_orgSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $this->_orgSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=OrgSubtree,' . $this->_targetSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,ou=OrgSubtree,' . $this->_targetSubTreeDn));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveCopy()
|
||
|
{
|
||
|
$this->_getLdap()->copy($this->_orgSubTreeDn, $this->_newSubTreeDn, true);
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($this->_newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($this->_orgSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $this->_orgSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($this->_newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $this->_newSubTreeDn));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafRenameWithDnObjects()
|
||
|
{
|
||
|
$orgDn=Zend_Ldap_Dn::fromString($this->_orgDn);
|
||
|
$newDn=Zend_Ldap_Dn::fromString($this->_newDn);
|
||
|
|
||
|
$this->_getLdap()->rename($orgDn, $newDn, false);
|
||
|
$this->assertFalse($this->_getLdap()->exists($orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($newDn));
|
||
|
|
||
|
$this->_getLdap()->move($newDn, $orgDn, false);
|
||
|
$this->assertTrue($this->_getLdap()->exists($orgDn));
|
||
|
$this->assertFalse($this->_getLdap()->exists($newDn));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafMoveToSubtreeWithDnObjects()
|
||
|
{
|
||
|
$orgDn=Zend_Ldap_Dn::fromString($this->_orgDn);
|
||
|
$orgSubTreeDn=Zend_Ldap_Dn::fromString($this->_orgSubTreeDn);
|
||
|
|
||
|
$this->_getLdap()->moveToSubtree($orgDn, $orgSubTreeDn, false);
|
||
|
$this->assertFalse($this->_getLdap()->exists($orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgTest,' . $orgSubTreeDn->toString()));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafRenameEmulationWithDnObjects()
|
||
|
{
|
||
|
$orgDn=Zend_Ldap_Dn::fromString($this->_orgDn);
|
||
|
$newDn=Zend_Ldap_Dn::fromString($this->_newDn);
|
||
|
|
||
|
$this->_getLdap()->rename($orgDn, $newDn, false, true);
|
||
|
$this->assertFalse($this->_getLdap()->exists($orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($newDn));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafCopyToSubtreeWithDnObjects()
|
||
|
{
|
||
|
$orgDn=Zend_Ldap_Dn::fromString($this->_orgDn);
|
||
|
$orgSubTreeDn=Zend_Ldap_Dn::fromString($this->_orgSubTreeDn);
|
||
|
|
||
|
$this->_getLdap()->copyToSubtree($orgDn, $orgSubTreeDn, false);
|
||
|
$this->assertTrue($this->_getLdap()->exists($orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgTest,' . $orgSubTreeDn->toString()));
|
||
|
}
|
||
|
|
||
|
public function testSimpleLeafCopyWithDnObjects()
|
||
|
{
|
||
|
$orgDn=Zend_Ldap_Dn::fromString($this->_orgDn);
|
||
|
$newDn=Zend_Ldap_Dn::fromString($this->_newDn);
|
||
|
|
||
|
$this->_getLdap()->copy($orgDn, $newDn, false);
|
||
|
$this->assertTrue($this->_getLdap()->exists($orgDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($newDn));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveRenameWithDnObjects()
|
||
|
{
|
||
|
$orgSubTreeDn=Zend_Ldap_Dn::fromString($this->_orgSubTreeDn);
|
||
|
$newSubTreeDn=Zend_Ldap_Dn::fromString($this->_newSubTreeDn);
|
||
|
|
||
|
$this->_getLdap()->rename($orgSubTreeDn, $newSubTreeDn, true);
|
||
|
$this->assertFalse($this->_getLdap()->exists($orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $newSubTreeDn->toString()));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveMoveToSubtreeWithDnObjects()
|
||
|
{
|
||
|
$orgSubTreeDn=Zend_Ldap_Dn::fromString($this->_orgSubTreeDn);
|
||
|
$targetSubTreeDn=Zend_Ldap_Dn::fromString($this->_targetSubTreeDn);
|
||
|
|
||
|
$this->_getLdap()->moveToSubtree($orgSubTreeDn, $targetSubTreeDn, true);
|
||
|
$this->assertFalse($this->_getLdap()->exists($orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgSubtree,' . $targetSubTreeDn->toString()));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=OrgSubtree,' . $targetSubTreeDn->toString()));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,ou=OrgSubtree,' . $targetSubTreeDn->toString()));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveCopyToSubtreeWithDnObjects()
|
||
|
{
|
||
|
$orgSubTreeDn=Zend_Ldap_Dn::fromString($this->_orgSubTreeDn);
|
||
|
$targetSubTreeDn=Zend_Ldap_Dn::fromString($this->_targetSubTreeDn);
|
||
|
|
||
|
$this->_getLdap()->copyToSubtree($orgSubTreeDn, $targetSubTreeDn, true);
|
||
|
$this->assertTrue($this->_getLdap()->exists($orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists('ou=OrgSubtree,' . $targetSubTreeDn->toString()));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($orgSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $orgSubTreeDn->toString()));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=OrgSubtree,' . $targetSubTreeDn->toString()));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,ou=OrgSubtree,' . $targetSubTreeDn->toString()));
|
||
|
}
|
||
|
|
||
|
public function testRecursiveCopyWithDnObjects()
|
||
|
{
|
||
|
$orgSubTreeDn=Zend_Ldap_Dn::fromString($this->_orgSubTreeDn);
|
||
|
$newSubTreeDn=Zend_Ldap_Dn::fromString($this->_newSubTreeDn);
|
||
|
|
||
|
$this->_getLdap()->copy($orgSubTreeDn, $newSubTreeDn, true);
|
||
|
$this->assertTrue($this->_getLdap()->exists($orgSubTreeDn));
|
||
|
$this->assertTrue($this->_getLdap()->exists($newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($orgSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $orgSubTreeDn->toString()));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren($newSubTreeDn));
|
||
|
$this->assertEquals(3, $this->_getLdap()->countChildren('ou=Subtree1,' . $newSubTreeDn->toString()));
|
||
|
}
|
||
|
}
|