diff options
| author | Horus3 | 2014-02-24 16:42:14 +0100 |
|---|---|---|
| committer | Horus3 | 2014-02-24 16:42:14 +0100 |
| commit | 06f945f27840b53e57795dadbc38e76f7e11ab1c (patch) | |
| tree | 689d5c7f4ffa15460c7e90f47c6a7dd59ce4e8bd /zend/tests/Zend/Gdata/Gapps/LoginTest.php | |
| download | random-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz | |
init
Diffstat (limited to 'zend/tests/Zend/Gdata/Gapps/LoginTest.php')
| -rw-r--r-- | zend/tests/Zend/Gdata/Gapps/LoginTest.php | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/Gapps/LoginTest.php b/zend/tests/Zend/Gdata/Gapps/LoginTest.php new file mode 100644 index 0000000..4847427 --- /dev/null +++ b/zend/tests/Zend/Gdata/Gapps/LoginTest.php @@ -0,0 +1,169 @@ +<?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_Gdata_Gapps + * @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 $ + */ + +require_once 'Zend/Gdata/Gapps/Extension/Login.php'; +require_once 'Zend/Gdata.php'; + +/** + * @category Zend + * @package Zend_Gdata_Gapps + * @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_Gdata + * @group Zend_Gdata_Gapps + */ +class Zend_Gdata_Gapps_LoginTest extends PHPUnit_Framework_TestCase +{ + + public function setUp() { + $this->loginText = file_get_contents( + 'Zend/Gdata/Gapps/_files/LoginElementSample1.xml', + true); + $this->login = new Zend_Gdata_Gapps_Extension_Login(); + } + + public function testEmptyLoginShouldHaveNoExtensionElements() { + $this->assertTrue(is_array($this->login->extensionElements)); + $this->assertTrue(count($this->login->extensionElements) == 0); + } + + public function testEmptyLoginShouldHaveNoExtensionAttributes() { + $this->assertTrue(is_array($this->login->extensionAttributes)); + $this->assertTrue(count($this->login->extensionAttributes) == 0); + } + + public function testSampleLoginShouldHaveNoExtensionElements() { + $this->login->transferFromXML($this->loginText); + $this->assertTrue(is_array($this->login->extensionElements)); + $this->assertTrue(count($this->login->extensionElements) == 0); + } + + public function testSampleLoginShouldHaveNoExtensionAttributes() { + $this->login->transferFromXML($this->loginText); + $this->assertTrue(is_array($this->login->extensionAttributes)); + $this->assertTrue(count($this->login->extensionAttributes) == 0); + } + + public function testNormalLoginShouldHaveNoExtensionElements() { + $this->login->username = "johndoe"; + $this->login->password = "abcdefg1234567890"; + $this->login->hashFunctionName = "Foo"; + $this->login->suspended = true; + $this->login->admin = true; + $this->login->changePasswordAtNextLogin = true; + $this->login->agreedToTerms = false; + + $this->assertEquals("johndoe", $this->login->username); + $this->assertEquals("abcdefg1234567890", $this->login->password); + $this->assertEquals("Foo", $this->login->hashFunctionName); + $this->assertEquals(true, $this->login->suspended); + $this->assertEquals(true, $this->login->admin); + $this->assertEquals(true, $this->login->changePasswordAtNextLogin); + $this->assertEquals(false, $this->login->agreedToTerms); + + $this->assertEquals(0, count($this->login->extensionElements)); + $newLogin = new Zend_Gdata_Gapps_Extension_Login(); + $newLogin->transferFromXML($this->login->saveXML()); + $this->assertEquals(0, count($newLogin->extensionElements)); + $newLogin->extensionElements = array( + new Zend_Gdata_App_Extension_Element('foo', 'atom', null, 'bar')); + $this->assertEquals(1, count($newLogin->extensionElements)); + $this->assertEquals("johndoe", $newLogin->username); + $this->assertEquals("abcdefg1234567890", $newLogin->password); + $this->assertEquals("Foo", $newLogin->hashFunctionName); + $this->assertEquals(true, $newLogin->suspended); + $this->assertEquals(true, $newLogin->admin); + $this->assertEquals(true, $newLogin->changePasswordAtNextLogin); + $this->assertEquals(false, $newLogin->agreedToTerms); + + /* try constructing using magic factory */ + $gdata = new Zend_Gdata_Gapps(); + $newLogin2 = $gdata->newLogin(); + $newLogin2->transferFromXML($newLogin->saveXML()); + $this->assertEquals(1, count($newLogin2->extensionElements)); + $this->assertEquals("johndoe", $newLogin2->username); + $this->assertEquals("abcdefg1234567890", $newLogin2->password); + $this->assertEquals("Foo", $newLogin2->hashFunctionName); + $this->assertEquals(true, $newLogin2->suspended); + $this->assertEquals(true, $newLogin2->admin); + $this->assertEquals(true, $newLogin2->changePasswordAtNextLogin); + $this->assertEquals(false, $newLogin2->agreedToTerms); + } + + public function testEmptyLoginToAndFromStringShouldMatch() { + $loginXml = $this->login->saveXML(); + $newLogin = new Zend_Gdata_Gapps_Extension_Login(); + $newLogin->transferFromXML($loginXml); + $newLoginXml = $newLogin->saveXML(); + $this->assertTrue($loginXml == $newLoginXml); + } + + public function testLoginWithValueToAndFromStringShouldMatch() { + $this->login->username = "johndoe"; + $this->login->password = "abcdefg1234567890"; + $this->login->hashFunctionName = "Foo"; + $this->login->suspended = true; + $this->login->admin = true; + $this->login->changePasswordAtNextLogin = true; + $this->login->agreedToTerms = false; + $loginXml = $this->login->saveXML(); + $newLogin = new Zend_Gdata_Gapps_Extension_Login(); + $newLogin->transferFromXML($loginXml); + $newLoginXml = $newLogin->saveXML(); + $this->assertTrue($loginXml == $newLoginXml); + $this->assertEquals("johndoe", $this->login->username); + $this->assertEquals("abcdefg1234567890", $this->login->password); + $this->assertEquals("Foo", $this->login->hashFunctionName); + $this->assertEquals(true, $this->login->suspended); + $this->assertEquals(true, $this->login->admin); + $this->assertEquals(true, $this->login->changePasswordAtNextLogin); + $this->assertEquals(false, $this->login->agreedToTerms); + + } + + public function testExtensionAttributes() { + $extensionAttributes = $this->login->extensionAttributes; + $extensionAttributes['foo1'] = array('name'=>'foo1', 'value'=>'bar'); + $extensionAttributes['foo2'] = array('name'=>'foo2', 'value'=>'rab'); + $this->login->extensionAttributes = $extensionAttributes; + $this->assertEquals('bar', $this->login->extensionAttributes['foo1']['value']); + $this->assertEquals('rab', $this->login->extensionAttributes['foo2']['value']); + $loginXml = $this->login->saveXML(); + $newLogin = new Zend_Gdata_Gapps_Extension_Login(); + $newLogin->transferFromXML($loginXml); + $this->assertEquals('bar', $newLogin->extensionAttributes['foo1']['value']); + $this->assertEquals('rab', $newLogin->extensionAttributes['foo2']['value']); + } + + public function testConvertFullLoginToAndFromString() { + $this->login->transferFromXML($this->loginText); + $this->assertEquals("SusanJones-1321", $this->login->username); + $this->assertEquals("123\$\$abc", $this->login->password); + $this->assertEquals("SHA-1", $this->login->hashFunctionName); + $this->assertEquals(false, $this->login->suspended); + $this->assertEquals(false, $this->login->admin); + $this->assertEquals(false, $this->login->changePasswordAtNextLogin); + $this->assertEquals(true, $this->login->agreedToTerms); + } + +} |
