8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
114 lines
3.7 KiB
PHP
114 lines
3.7 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_OpenId
|
|
* @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: ExtensionTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
|
*/
|
|
|
|
/**
|
|
* Zend_OpenId
|
|
*/
|
|
require_once 'Zend/OpenId/Extension.php';
|
|
require_once 'Zend/OpenId/Extension/Sreg.php';
|
|
|
|
|
|
/**
|
|
* PHPUnit test case
|
|
*/
|
|
require_once 'PHPUnit/Framework.php';
|
|
|
|
/**
|
|
* @category Zend
|
|
* @package Zend_OpenId
|
|
* @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_OpenId
|
|
*/
|
|
class Zend_OpenId_ExtensionTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* testing forAll
|
|
*
|
|
*/
|
|
public function testForAll()
|
|
{
|
|
$params = array();
|
|
$this->assertTrue( Zend_OpenId_Extension::forAll(null, 'getTrustData', $params) );
|
|
$this->assertSame( array(), $params );
|
|
|
|
$params = array();
|
|
$this->assertTrue( Zend_OpenId_Extension::forAll(array(), 'getTrustData', $params) );
|
|
$this->assertSame( array(), $params );
|
|
|
|
$params = array();
|
|
$this->assertFalse( Zend_OpenId_Extension::forAll(array(1), 'getTrustData', $params) );
|
|
|
|
$params = array();
|
|
$this->assertFalse( Zend_OpenId_Extension::forAll(new stdClass(), 'getTrustData', $params) );
|
|
|
|
$ext = new Zend_OpenId_Extension_Sreg();
|
|
$params = array();
|
|
$this->assertTrue( Zend_OpenId_Extension::forAll($ext, 'getTrustData', $params) );
|
|
$this->assertSame( array('Zend_OpenId_Extension_Sreg'=>array()), $params );
|
|
|
|
$ext = new Zend_OpenId_Extension_Sreg();
|
|
$params = array();
|
|
$this->assertTrue( Zend_OpenId_Extension::forAll(array($ext), 'getTrustData', $params) );
|
|
$this->assertSame( array('Zend_OpenId_Extension_Sreg'=>array()), $params );
|
|
|
|
$ext = new Zend_OpenId_Extension_Helper();
|
|
$params = array();
|
|
$this->assertTrue( Zend_OpenId_Extension::forAll(array($ext), 'getTrustData', $params) );
|
|
$this->assertSame( array(), $params );
|
|
$this->assertFalse( Zend_OpenId_Extension::forAll(array($ext), 'wrong', $params) );
|
|
$this->assertSame( array(), $params );
|
|
}
|
|
|
|
/**
|
|
* testing extension callbacks
|
|
*
|
|
*/
|
|
public function testCallbacks()
|
|
{
|
|
$ext = new Zend_OpenId_Extension_Helper();
|
|
$a = array();
|
|
$this->assertTrue( $ext->prepareRequest($a) );
|
|
$this->assertSame( array(), $a );
|
|
$this->assertTrue( $ext->parseRequest($a) );
|
|
$this->assertSame( array(), $a );
|
|
$this->assertTrue( $ext->prepareResponse($a) );
|
|
$this->assertSame( array(), $a );
|
|
$this->assertTrue( $ext->parseResponse($a) );
|
|
$this->assertSame( array(), $a );
|
|
$this->assertTrue( $ext->getTrustData($a) );
|
|
$this->assertSame( array(), $a );
|
|
$this->assertTrue( $ext->checkTrustData($a) );
|
|
$this->assertSame( array(), $a );
|
|
$this->assertFalse( $ext->wrong($a) );
|
|
$this->assertSame( array(), $a );
|
|
}
|
|
}
|
|
|
|
class Zend_OpenId_Extension_Helper extends Zend_OpenId_Extension
|
|
{
|
|
function wrong($data)
|
|
{
|
|
return false;
|
|
}
|
|
}
|