| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543 |
- <?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_Attribute
- */
- require_once 'Zend/Ldap/Attribute.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
- */
- class Zend_Ldap_AttributeTest extends PHPUnit_Framework_TestCase
- {
- protected function _assertLocalDateTimeString($timestamp, $value)
- {
- $tsValue = date('YmdHisO', $timestamp);
- if(date('O', strtotime('20120101'))) {
- // Local timezone is +0000 when DST is off. Zend_Ldap converts
- // +0000 to "Z" (see Zend_Ldap_Converter:toLdapDateTime()), so
- // take account of that here
- $tsValue = str_replace('+0000', 'Z', $tsValue);
- }
- $this->assertEquals($tsValue, $value);
- }
- protected function _assertUtcDateTimeString($localTimestamp, $value)
- {
- $localOffset = date('Z', $localTimestamp);
- $utcTimestamp = $localTimestamp - $localOffset;
- $this->assertEquals(date('YmdHis', $utcTimestamp) . 'Z', $value);
- }
- public function testGetAttributeValue()
- {
- $data=array('uid' => array('value'));
- $value=Zend_Ldap_Attribute::getAttribute($data, 'uid', 0);
- $this->assertEquals('value', $value);
- }
- public function testGetNonExistentAttributeValue()
- {
- $data=array('uid' => array('value'));
- $value=Zend_Ldap_Attribute::getAttribute($data, 'uid', 1);
- $this->assertNull($value);
- }
- public function testGetNonExistentAttribute()
- {
- $data=array('uid' => array('value'));
- $value=Zend_Ldap_Attribute::getAttribute($data, 'uid2', 0);
- $this->assertNull($value);
- $array=Zend_Ldap_Attribute::getAttribute($data, 'uid2');
- $this->assertTrue(is_array($array));
- $this->assertEquals(0, count($array));
- }
- public function testGetAttributeWithWrongIndexType()
- {
- $data=array('uid' => array('value'));
- $value=Zend_Ldap_Attribute::getAttribute($data, 'uid', 'index');
- $this->assertNull($value);
- $value=Zend_Ldap_Attribute::getAttribute($data, 'uid', 3.1415);
- $this->assertNull($value);
- }
- public function testGetAttributeArray()
- {
- $data=array('uid' => array('value'));
- $value=Zend_Ldap_Attribute::getAttribute($data, 'uid');
- $this->assertTrue(is_array($value));
- $this->assertEquals(1, count($value));
- $this->assertContains('value', $value);
- }
- public function testSimpleSetAttribute()
- {
- $data=array();
- Zend_Ldap_Attribute::setAttribute($data, 'uid', 'new', false);
- $this->assertArrayHasKey('uid', $data);
- $this->assertTrue(is_array($data['uid']));
- $this->assertEquals(1, count($data['uid']));
- $this->assertContains('new', $data['uid']);
- }
- public function testSimpleOverwriteAttribute()
- {
- $data=array('uid' => array('old'));
- Zend_Ldap_Attribute::setAttribute($data, 'uid', 'new', false);
- $this->assertArrayHasKey('uid', $data);
- $this->assertTrue(is_array($data['uid']));
- $this->assertEquals(1, count($data['uid']));
- $this->assertContains('new', $data['uid']);
- }
- public function testSimpleAppendAttribute()
- {
- $data=array('uid' => array('old'));
- Zend_Ldap_Attribute::setAttribute($data, 'uid', 'new', true);
- $this->assertArrayHasKey('uid', $data);
- $this->assertTrue(is_array($data['uid']));
- $this->assertEquals(2, count($data['uid']));
- $this->assertContains('old', $data['uid']);
- $this->assertContains('new', $data['uid']);
- $this->assertEquals('old', $data['uid'][0]);
- $this->assertEquals('new', $data['uid'][1]);
- }
- public function testBooleanAttributeHandling()
- {
- $data=array(
- 'p1_true' => array('TRUE'),
- 'p1_false' => array('FALSE')
- );
- Zend_Ldap_Attribute::setAttribute($data, 'p2_true', true);
- Zend_Ldap_Attribute::setAttribute($data, 'p2_false', false);
- $this->assertEquals('TRUE', $data['p2_true'][0]);
- $this->assertEquals('FALSE', $data['p2_false'][0]);
- $this->assertEquals(true, Zend_Ldap_Attribute::getAttribute($data, 'p1_true', 0));
- $this->assertEquals(false, Zend_Ldap_Attribute::getAttribute($data, 'p1_false', 0));
- }
- public function testArraySetAttribute()
- {
- $data=array();
- Zend_Ldap_Attribute::setAttribute($data, 'uid', array('new1', 'new2'), false);
- $this->assertArrayHasKey('uid', $data);
- $this->assertTrue(is_array($data['uid']));
- $this->assertEquals(2, count($data['uid']));
- $this->assertContains('new1', $data['uid']);
- $this->assertContains('new2', $data['uid']);
- $this->assertEquals('new1', $data['uid'][0]);
- $this->assertEquals('new2', $data['uid'][1]);
- }
- public function testArrayOverwriteAttribute()
- {
- $data=array('uid' => array('old'));
- Zend_Ldap_Attribute::setAttribute($data, 'uid', array('new1', 'new2'), false);
- $this->assertArrayHasKey('uid', $data);
- $this->assertTrue(is_array($data['uid']));
- $this->assertEquals(2, count($data['uid']));
- $this->assertContains('new1', $data['uid']);
- $this->assertContains('new2', $data['uid']);
- $this->assertEquals('new1', $data['uid'][0]);
- $this->assertEquals('new2', $data['uid'][1]);
- }
- public function testArrayAppendAttribute()
- {
- $data=array('uid' => array('old'));
- Zend_Ldap_Attribute::setAttribute($data, 'uid', array('new1', 'new2'), true);
- $this->assertArrayHasKey('uid', $data);
- $this->assertTrue(is_array($data['uid']));
- $this->assertEquals(3, count($data['uid']));
- $this->assertContains('old', $data['uid']);
- $this->assertContains('new1', $data['uid']);
- $this->assertContains('new2', $data['uid']);
- $this->assertEquals('old', $data['uid'][0]);
- $this->assertEquals('new1', $data['uid'][1]);
- $this->assertEquals('new2', $data['uid'][2]);
- }
- public function testPasswordSettingSHA()
- {
- $data=array();
- Zend_Ldap_Attribute::setPassword($data, 'pa$$w0rd', Zend_Ldap_Attribute::PASSWORD_HASH_SHA);
- $password=Zend_Ldap_Attribute::getAttribute($data, 'userPassword', 0);
- $this->assertEquals('{SHA}vi3X+3ptD4ulrdErXo+3W72mRyE=', $password);
- }
- public function testPasswordSettingMD5()
- {
- $data=array();
- Zend_Ldap_Attribute::setPassword($data, 'pa$$w0rd', Zend_Ldap_Attribute::PASSWORD_HASH_MD5);
- $password=Zend_Ldap_Attribute::getAttribute($data, 'userPassword', 0);
- $this->assertEquals('{MD5}bJuLJ96h3bhF+WqiVnxnVA==', $password);
- }
- public function testPasswordSettingUnicodePwd()
- {
- $data=array();
- Zend_Ldap_Attribute::setPassword($data, 'new', Zend_Ldap_Attribute::PASSWORD_UNICODEPWD);
- $password=Zend_Ldap_Attribute::getAttribute($data, 'unicodePwd', 0);
- $this->assertEquals("\x22\x00\x6E\x00\x65\x00\x77\x00\x22\x00", $password);
- }
- public function testPasswordSettingCustomAttribute()
- {
- $data=array();
- Zend_Ldap_Attribute::setPassword($data, 'pa$$w0rd',
- Zend_Ldap_Attribute::PASSWORD_HASH_SHA, 'myAttribute');
- $password=Zend_Ldap_Attribute::getAttribute($data, 'myAttribute', 0);
- $this->assertNotNull($password);
- }
- public function testSetAttributeWithObject()
- {
- $data=array();
- $object=new stdClass();
- $object->a=1;
- $object->b=1.23;
- $object->c='string';
- Zend_Ldap_Attribute::setAttribute($data, 'object', $object);
- $this->assertEquals(serialize($object), $data['object'][0]);
- }
- public function testSetAttributeWithFilestream()
- {
- $data=array();
- $stream=fopen(dirname(__FILE__) . '/_files/AttributeTest.input.txt', 'r');
- Zend_Ldap_Attribute::setAttribute($data, 'file', $stream);
- fclose($stream);
- $this->assertEquals('String from file', $data['file'][0]);
- }
- public function testSetDateTimeValueLocal()
- {
- $ts=mktime(12, 30, 30, 6, 25, 2008);
- $data=array();
- Zend_Ldap_Attribute::setDateTimeAttribute($data, 'ts', $ts, false);
- $this->_assertLocalDateTimeString($ts, $data['ts'][0]);
- }
- public function testSetDateTimeValueUtc()
- {
- $ts=mktime(12, 30, 30, 6, 25, 2008);
- $data=array();
- Zend_Ldap_Attribute::setDateTimeAttribute($data, 'ts', $ts, true);
- $this->_assertUtcDateTimeString($ts, $data['ts'][0]);
- }
- public function testSetDateTimeValueLocalArray()
- {
- $ts=array();
- $ts[]=mktime(12, 30, 30, 6, 25, 2008);
- $ts[]=mktime(1, 25, 30, 1, 2, 2008);
- $data=array();
- Zend_Ldap_Attribute::setDateTimeAttribute($data, 'ts', $ts, false);
- $this->_assertLocalDateTimeString($ts[0], $data['ts'][0]);
- $this->_assertLocalDateTimeString($ts[1], $data['ts'][1]);
- }
- public function testSetDateTimeValueIllegal()
- {
- $ts='dummy';
- $data=array();
- Zend_Ldap_Attribute::setDateTimeAttribute($data, 'ts', $ts, false);
- $this->assertEquals(0, count($data['ts']));
- }
- public function testGetDateTimeValueFromLocal()
- {
- $ts=mktime(12, 30, 30, 6, 25, 2008);
- $data=array();
- Zend_Ldap_Attribute::setDateTimeAttribute($data, 'ts', $ts, false);
- $this->_assertLocalDateTimeString($ts, $data['ts'][0]);
- $retTs=Zend_Ldap_Attribute::getDateTimeAttribute($data, 'ts', 0);
- $this->assertEquals($ts, $retTs);
- }
- public function testGetDateTimeValueFromUtc()
- {
- $ts=mktime(12, 30, 30, 6, 25, 2008);
- $data=array();
- Zend_Ldap_Attribute::setDateTimeAttribute($data, 'ts', $ts, true);
- $this->_assertUtcDateTimeString($ts, $data['ts'][0]);
- $retTs=Zend_Ldap_Attribute::getDateTimeAttribute($data, 'ts', 0);
- $this->assertEquals($ts, $retTs);
- }
- public function testGetDateTimeValueFromArray()
- {
- $ts=array();
- $ts[]=mktime(12, 30, 30, 6, 25, 2008);
- $ts[]=mktime(1, 25, 30, 1, 2, 2008);
- $data=array();
- Zend_Ldap_Attribute::setDateTimeAttribute($data, 'ts', $ts, false);
- $this->_assertLocalDateTimeString($ts[0], $data['ts'][0]);
- $this->_assertLocalDateTimeString($ts[1], $data['ts'][1]);
- $retTs=Zend_Ldap_Attribute::getDateTimeAttribute($data, 'ts');
- $this->assertEquals($ts[0], $retTs[0]);
- $this->assertEquals($ts[1], $retTs[1]);
- }
- public function testGetDateTimeValueIllegal()
- {
- $data=array('ts' => array('dummy'));
- $retTs=Zend_Ldap_Attribute::getDateTimeAttribute($data, 'ts', 0);
- $this->assertEquals('dummy', $retTs);
- }
- public function testGetDateTimeValueNegativeOffet()
- {
- $data=array('ts' => array('20080612143045-0700'));
- $retTs=Zend_Ldap_Attribute::getDateTimeAttribute($data, 'ts', 0);
- $tsCompare=gmmktime(21, 30, 45, 6, 12, 2008);
- $this->assertEquals($tsCompare, $retTs);
- }
- public function testGetDateTimeValueNegativeOffet2()
- {
- $data=array('ts' => array('20080612143045-0715'));
- $retTs=Zend_Ldap_Attribute::getDateTimeAttribute($data, 'ts', 0);
- $tsCompare=gmmktime(21, 45, 45, 6, 12, 2008);
- $this->assertEquals($tsCompare, $retTs);
- }
- public function testRemoveAttributeValueSimple()
- {
- $data=array('test' => array('value1', 'value2', 'value3', 'value3'));
- Zend_Ldap_Attribute::removeFromAttribute($data, 'test', 'value2');
- $this->assertArrayHasKey('test', $data);
- $this->assertTrue(is_array($data['test']));
- $this->assertEquals(3, count($data['test']));
- $this->assertContains('value1', $data['test']);
- $this->assertContains('value3', $data['test']);
- $this->assertNotContains('value2', $data['test']);
- }
- public function testRemoveAttributeValueArray()
- {
- $data=array('test' => array('value1', 'value2', 'value3', 'value3'));
- Zend_Ldap_Attribute::removeFromAttribute($data, 'test', array('value1', 'value2'));
- $this->assertArrayHasKey('test', $data);
- $this->assertTrue(is_array($data['test']));
- $this->assertEquals(2, count($data['test']));
- $this->assertContains('value3', $data['test']);
- $this->assertNotContains('value1', $data['test']);
- $this->assertNotContains('value2', $data['test']);
- }
- public function testRemoveAttributeMultipleValueSimple()
- {
- $data=array('test' => array('value1', 'value2', 'value3', 'value3'));
- Zend_Ldap_Attribute::removeFromAttribute($data, 'test', 'value3');
- $this->assertArrayHasKey('test', $data);
- $this->assertTrue(is_array($data['test']));
- $this->assertEquals(2, count($data['test']));
- $this->assertContains('value1', $data['test']);
- $this->assertContains('value2', $data['test']);
- $this->assertNotContains('value3', $data['test']);
- }
- public function testRemoveAttributeMultipleValueArray()
- {
- $data=array('test' => array('value1', 'value2', 'value3', 'value3'));
- Zend_Ldap_Attribute::removeFromAttribute($data, 'test', array('value1', 'value3'));
- $this->assertArrayHasKey('test', $data);
- $this->assertTrue(is_array($data['test']));
- $this->assertEquals(1, count($data['test']));
- $this->assertContains('value2', $data['test']);
- $this->assertNotContains('value1', $data['test']);
- $this->assertNotContains('value3', $data['test']);
- }
- public function testRemoveAttributeValueBoolean()
- {
- $data=array('test' => array('TRUE', 'FALSE', 'TRUE', 'FALSE'));
- Zend_Ldap_Attribute::removeFromAttribute($data, 'test', false);
- $this->assertArrayHasKey('test', $data);
- $this->assertTrue(is_array($data['test']));
- $this->assertEquals(2, count($data['test']));
- $this->assertContains('TRUE', $data['test']);
- $this->assertNotContains('FALSE', $data['test']);
- }
- public function testRemoveAttributeValueInteger()
- {
- $data=array('test' => array('1', '2', '3', '4'));
- Zend_Ldap_Attribute::removeFromAttribute($data, 'test', array(2, 4));
- $this->assertArrayHasKey('test', $data);
- $this->assertTrue(is_array($data['test']));
- $this->assertEquals(2, count($data['test']));
- $this->assertContains('1', $data['test']);
- $this->assertContains('3', $data['test']);
- $this->assertNotContains('2', $data['test']);
- $this->assertNotContains('4', $data['test']);
- }
- public function testConvertFromLdapValue()
- {
- $this->assertEquals(true, Zend_Ldap_Attribute::convertFromLdapValue('TRUE'));
- $this->assertEquals(false, Zend_Ldap_Attribute::convertFromLdapValue('FALSE'));
- }
- public function testConvertToLdapValue()
- {
- $this->assertEquals('string', Zend_Ldap_Attribute::convertToLdapValue('string'));
- $this->assertEquals('1', Zend_Ldap_Attribute::convertToLdapValue(1));
- $this->assertEquals('TRUE', Zend_Ldap_Attribute::convertToLdapValue(true));
- }
- public function testConvertFromLdapDateTimeValue()
- {
- $ldap='20080625123030+0200';
- $this->assertEquals(gmmktime(10, 30, 30, 6, 25, 2008),
- Zend_Ldap_Attribute::convertFromLdapDateTimeValue($ldap));
- }
- public function testConvertFromLdapDateTimeValueActiveDirectory()
- {
- $ldap='20080625123030.0+0200';
- $this->assertEquals(gmmktime(10, 30, 30, 6, 25, 2008),
- Zend_Ldap_Attribute::convertFromLdapDateTimeValue($ldap));
- }
- public function testConvertToLdapDateTimeValue()
- {
- $ts=mktime(12, 30, 30, 6, 25, 2008);
- $this->_assertLocalDateTimeString($ts, Zend_Ldap_Attribute::convertToLdapDateTimeValue($ts));
- }
- public function testRemoveDuplicates()
- {
- $data=array(
- 'strings1' => array('value1', 'value2', 'value2', 'value3'),
- 'strings2' => array('value1', 'value2', 'value3', 'value4'),
- 'boolean1' => array('TRUE', 'TRUE', 'TRUE', 'TRUE'),
- 'boolean2' => array('TRUE', 'FALSE', 'TRUE', 'FALSE'),
- );
- $expected=array(
- 'strings1' => array('value1', 'value2', 'value3'),
- 'strings2' => array('value1', 'value2', 'value3', 'value4'),
- 'boolean1' => array('TRUE'),
- 'boolean2' => array('TRUE', 'FALSE'),
- );
- Zend_Ldap_Attribute::removeDuplicatesFromAttribute($data, 'strings1');
- Zend_Ldap_Attribute::removeDuplicatesFromAttribute($data, 'strings2');
- Zend_Ldap_Attribute::removeDuplicatesFromAttribute($data, 'boolean1');
- Zend_Ldap_Attribute::removeDuplicatesFromAttribute($data, 'boolean2');
- $this->assertEquals($expected, $data);
- }
- public function testHasValue()
- {
- $data=array(
- 'strings1' => array('value1', 'value2', 'value2', 'value3'),
- 'strings2' => array('value1', 'value2', 'value3', 'value4'),
- 'boolean1' => array('TRUE', 'TRUE', 'TRUE', 'TRUE'),
- 'boolean2' => array('TRUE', 'FALSE', 'TRUE', 'FALSE'),
- );
- $this->assertTrue(Zend_Ldap_Attribute::attributeHasValue($data, 'strings1', 'value1'));
- $this->assertFalse(Zend_Ldap_Attribute::attributeHasValue($data, 'strings1', 'value4'));
- $this->assertTrue(Zend_Ldap_Attribute::attributeHasValue($data, 'boolean1', true));
- $this->assertFalse(Zend_Ldap_Attribute::attributeHasValue($data, 'boolean1', false));
- $this->assertTrue(Zend_Ldap_Attribute::attributeHasValue($data, 'strings1',
- array('value1', 'value2')));
- $this->assertTrue(Zend_Ldap_Attribute::attributeHasValue($data, 'strings1',
- array('value1', 'value2', 'value3')));
- $this->assertFalse(Zend_Ldap_Attribute::attributeHasValue($data, 'strings1',
- array('value1', 'value2', 'value3', 'value4')));
- $this->assertTrue(Zend_Ldap_Attribute::attributeHasValue($data, 'strings2',
- array('value1', 'value2', 'value3', 'value4')));
- $this->assertTrue(Zend_Ldap_Attribute::attributeHasValue($data, 'boolean2',
- array(true, false)));
- $this->assertFalse(Zend_Ldap_Attribute::attributeHasValue($data, 'boolean1',
- array(true, false)));
- }
- public function testPasswordGenerationSSHA()
- {
- $password = 'pa$$w0rd';
- $ssha = Zend_Ldap_Attribute::createPassword($password, Zend_Ldap_Attribute::PASSWORD_HASH_SSHA);
- $encoded = substr($ssha, strpos($ssha, '}'));
- $binary = base64_decode($encoded);
- $this->assertEquals(24, strlen($binary));
- $hash = substr($binary, 0, 20);
- $salt = substr($binary, 20);
- $this->assertEquals(4, strlen($salt));
- $this->assertEquals(sha1($password . $salt, true), $hash);
- }
- public function testPasswordGenerationSHA()
- {
- $password = 'pa$$w0rd';
- $sha = Zend_Ldap_Attribute::createPassword($password, Zend_Ldap_Attribute::PASSWORD_HASH_SHA);
- $encoded = substr($sha, strpos($sha, '}'));
- $binary = base64_decode($encoded);
- $this->assertEquals(20, strlen($binary));
- $this->assertEquals(sha1($password, true), $binary);
- }
- public function testPasswordGenerationSMD5()
- {
- $password = 'pa$$w0rd';
- $smd5 = Zend_Ldap_Attribute::createPassword($password, Zend_Ldap_Attribute::PASSWORD_HASH_SMD5);
- $encoded = substr($smd5, strpos($smd5, '}'));
- $binary = base64_decode($encoded);
- $this->assertEquals(20, strlen($binary));
- $hash = substr($binary, 0, 16);
- $salt = substr($binary, 16);
- $this->assertEquals(4, strlen($salt));
- $this->assertEquals(md5($password . $salt, true), $hash);
- }
- public function testPasswordGenerationMD5()
- {
- $password = 'pa$$w0rd';
- $md5 = Zend_Ldap_Attribute::createPassword($password, Zend_Ldap_Attribute::PASSWORD_HASH_MD5);
- $encoded = substr($md5, strpos($md5, '}'));
- $binary = base64_decode($encoded);
- $this->assertEquals(16, strlen($binary));
- $this->assertEquals(md5($password, true), $binary);
- }
- public function testPasswordGenerationUnicodePwd()
- {
- $password = 'new';
- $unicodePwd = Zend_Ldap_Attribute::createPassword($password, Zend_Ldap_Attribute::PASSWORD_UNICODEPWD);
- $this->assertEquals(10, strlen($unicodePwd));
- $this->assertEquals("\x22\x00\x6E\x00\x65\x00\x77\x00\x22\x00", $unicodePwd);
- }
- }
|