| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?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-2012 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';
- /**
- * @category Zend
- * @package Zend_Ldap
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2012 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_RootDseTest extends Zend_Ldap_OnlineTestCase
- {
- public function testLoadRootDseNode()
- {
- $root1=$this->_getLdap()->getRootDse();
- $root2=$this->_getLdap()->getRootDse();
- $this->assertEquals($root1, $root2);
- $this->assertSame($root1, $root2);
- }
- public function testSupportCheckMethods()
- {
- $root=$this->_getLdap()->getRootDse();
- $this->assertType('boolean', $root->supportsSaslMechanism('GSSAPI'));
- $this->assertType('boolean', $root->supportsSaslMechanism(array('GSSAPI', 'DIGEST-MD5')));
- $this->assertType('boolean', $root->supportsVersion('3'));
- $this->assertType('boolean', $root->supportsVersion(3));
- $this->assertType('boolean', $root->supportsVersion(array('3', '2')));
- $this->assertType('boolean', $root->supportsVersion(array(3, 2)));
- switch ($root->getServerType()) {
- case Zend_Ldap_Node_RootDse::SERVER_TYPE_ACTIVEDIRECTORY:
- $this->assertType('boolean', $root->supportsControl('1.2.840.113556.1.4.319'));
- $this->assertType('boolean', $root->supportsControl(array('1.2.840.113556.1.4.319',
- '1.2.840.113556.1.4.473')));
- $this->assertType('boolean', $root->supportsCapability('1.3.6.1.4.1.4203.1.9.1.1'));
- $this->assertType('boolean', $root->supportsCapability(array('1.3.6.1.4.1.4203.1.9.1.1',
- '2.16.840.1.113730.3.4.18')));
- $this->assertType('boolean', $root->supportsPolicy('unknown'));
- $this->assertType('boolean', $root->supportsPolicy(array('unknown', 'unknown')));
- break;
- case Zend_Ldap_Node_RootDse::SERVER_TYPE_EDIRECTORY:
- $this->assertType('boolean', $root->supportsExtension('1.3.6.1.4.1.1466.20037'));
- $this->assertType('boolean', $root->supportsExtension(array('1.3.6.1.4.1.1466.20037',
- '1.3.6.1.4.1.4203.1.11.1')));
- break;
- case Zend_Ldap_Node_RootDse::SERVER_TYPE_OPENLDAP:
- $this->assertType('boolean', $root->supportsControl('1.3.6.1.4.1.4203.1.9.1.1'));
- $this->assertType('boolean', $root->supportsControl(array('1.3.6.1.4.1.4203.1.9.1.1',
- '2.16.840.1.113730.3.4.18')));
- $this->assertType('boolean', $root->supportsExtension('1.3.6.1.4.1.1466.20037'));
- $this->assertType('boolean', $root->supportsExtension(array('1.3.6.1.4.1.1466.20037',
- '1.3.6.1.4.1.4203.1.11.1')));
- $this->assertType('boolean', $root->supportsFeature('1.3.6.1.1.14'));
- $this->assertType('boolean', $root->supportsFeature(array('1.3.6.1.1.14',
- '1.3.6.1.4.1.4203.1.5.1')));
- break;
- }
- }
- public function testGetters()
- {
- $root=$this->_getLdap()->getRootDse();
- $this->assertType('array', $root->getNamingContexts());
- $this->assertType('string', $root->getSubschemaSubentry());
- switch ($root->getServerType()) {
- case Zend_Ldap_Node_RootDse::SERVER_TYPE_ACTIVEDIRECTORY:
- $this->assertType('string', $root->getConfigurationNamingContext());
- $this->assertType('string', $root->getCurrentTime());
- $this->assertType('string', $root->getDefaultNamingContext());
- $this->assertType('string', $root->getDnsHostName());
- $this->assertType('string', $root->getDomainControllerFunctionality());
- $this->assertType('string', $root->getDomainFunctionality());
- $this->assertType('string', $root->getDsServiceName());
- $this->assertType('string', $root->getForestFunctionality());
- $this->assertType('string', $root->getHighestCommittedUSN());
- $this->assertType('boolean', $root->getIsGlobalCatalogReady());
- $this->assertType('boolean', $root->getIsSynchronized());
- $this->assertType('string', $root->getLdapServiceName());
- $this->assertType('string', $root->getRootDomainNamingContext());
- $this->assertType('string', $root->getSchemaNamingContext());
- $this->assertType('string', $root->getServerName());
- break;
- case Zend_Ldap_Node_RootDse::SERVER_TYPE_EDIRECTORY:
- $this->assertType('string', $root->getVendorName());
- $this->assertType('string', $root->getVendorVersion());
- $this->assertType('string', $root->getDsaName());
- $this->assertType('string', $root->getStatisticsErrors());
- $this->assertType('string', $root->getStatisticsSecurityErrors());
- $this->assertType('string', $root->getStatisticsChainings());
- $this->assertType('string', $root->getStatisticsReferralsReturned());
- $this->assertType('string', $root->getStatisticsExtendedOps());
- $this->assertType('string', $root->getStatisticsAbandonOps());
- $this->assertType('string', $root->getStatisticsWholeSubtreeSearchOps());
- break;
- case Zend_Ldap_Node_RootDse::SERVER_TYPE_OPENLDAP:
- $this->_assertNullOrString($root->getConfigContext());
- $this->_assertNullOrString($root->getMonitorContext());
- break;
- }
- }
- protected function _assertNullOrString($value)
- {
- if ($value===null) {
- $this->assertNull($value);
- } else {
- $this->assertType('string', $value);
- }
- }
- /**
- * @expectedException BadMethodCallException
- */
- public function testSetterWillThrowException()
- {
- $root=$this->_getLdap()->getRootDse();
- $root->objectClass='illegal';
- }
- /**
- * @expectedException BadMethodCallException
- */
- public function testOffsetSetWillThrowException()
- {
- $root=$this->_getLdap()->getRootDse();
- $root['objectClass']='illegal';
- }
- /**
- * @expectedException BadMethodCallException
- */
- public function testUnsetterWillThrowException()
- {
- $root=$this->_getLdap()->getRootDse();
- unset($root->objectClass);
- }
- /**
- * @expectedException BadMethodCallException
- */
- public function testOffsetUnsetWillThrowException()
- {
- $root=$this->_getLdap()->getRootDse();
- unset($root['objectClass']);
- }
- }
|