From 580cd62f0a4fac5dba37a8a152afaecd99e8c767 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Thu, 15 Dec 2011 20:07:48 -0500 Subject: removed old libraries - depends on openid_api now --- .../Tests/Auth/OpenID/RPVerify.php | 293 --------------------- 1 file changed, 293 deletions(-) delete mode 100644 models/openid-php-openid-782224d/Tests/Auth/OpenID/RPVerify.php (limited to 'models/openid-php-openid-782224d/Tests/Auth/OpenID/RPVerify.php') diff --git a/models/openid-php-openid-782224d/Tests/Auth/OpenID/RPVerify.php b/models/openid-php-openid-782224d/Tests/Auth/OpenID/RPVerify.php deleted file mode 100644 index 1482af4c4..000000000 --- a/models/openid-php-openid-782224d/Tests/Auth/OpenID/RPVerify.php +++ /dev/null @@ -1,293 +0,0 @@ -assertEquals($expected_discovery_url, $actual_discovery_url); - } - - /* - * There is no wildcard and the realm is the same as the return_to - * URL - */ - function test_trivial() - { - $this->failUnlessDiscoURL('http://example.com/foo', - 'http://example.com/foo'); - } - - /* - * There is a wildcard - */ - function test_wildcard() - { - $this->failUnlessDiscoURL('http://*.example.com/foo', - 'http://www.example.com/foo'); - } -} - -class _MockDiscover { - function _MockDiscover($data) { - $this->data =& $data; - } - - function mockDiscover($uri, $fetcher, $discover_function=null) - { - $result = new Auth_Yadis_DiscoveryResult($uri); - $result->response_text = $this->data; - $result->normalized_uri = $uri; - return $result; - } -} - -class Tests_Auth_OpenID_ExtractReturnToURLs extends PHPUnit_Framework_TestCase { - var $disco_url = 'http://example.com/'; - - function failUnlessXRDSHasReturnURLs($data, $expected_return_urls) - { - $discover_object = new _MockDiscover($data); - $actual_return_urls = Auth_OpenID_getAllowedReturnURLs($this->disco_url, null, array($discover_object, 'mockDiscover')); - - $this->assertEquals($expected_return_urls, $actual_return_urls); - } - - function failUnlessDiscoveryFailure($text) - { - $discover_object = new _MockDiscover($text); - $this->assertFalse(Auth_OpenID_getAllowedReturnURLs($this->disco_url, null, array($discover_object, 'mockDiscover'))); - } - - function test_empty() - { - $this->failUnlessDiscoveryFailure(''); - } - - function test_badXML() - { - $this->failUnlessDiscoveryFailure('>'); - } - - function test_noEntries() - { - $this->failUnlessXRDSHasReturnURLs(' - - - - -', array()); - } - - function test_noReturnToEntries() - { - $this->failUnlessXRDSHasReturnURLs(' - - - - http://specs.openid.net/auth/2.0/server - http://www.myopenid.com/server - - - -', array()); - } - - function test_oneEntry() - { - $this->failUnlessXRDSHasReturnURLs(' - - - - http://specs.openid.net/auth/2.0/return_to - http://rp.example.com/return - - - -', array('http://rp.example.com/return')); - } - - function test_twoEntries() - { - $this->failUnlessXRDSHasReturnURLs(' - - - - http://specs.openid.net/auth/2.0/return_to - http://rp.example.com/return - - - http://specs.openid.net/auth/2.0/return_to - http://other.rp.example.com/return - - - -', array('http://rp.example.com/return', - 'http://other.rp.example.com/return')); - } - - function test_twoEntries_withOther() - { - $this->failUnlessXRDSHasReturnURLs(' - - - - http://specs.openid.net/auth/2.0/return_to - http://rp.example.com/return - - - http://specs.openid.net/auth/2.0/return_to - http://other.rp.example.com/return - - - http://example.com/LOLCATS - http://example.com/invisible+uri - - - -', array('http://rp.example.com/return', - 'http://other.rp.example.com/return')); - } -} - -class Tests_Auth_OpenID_ReturnToMatches extends PHPUnit_Framework_TestCase { - function test_noEntries() - { - $this->assertFalse(Auth_OpenID_returnToMatches(array(), 'anything')); - } - - function test_exactMatch() - { - $r = 'http://example.com/return.to'; - $this->assertTrue(Auth_OpenID_returnToMatches(array($r), $r)); - } - - function test_garbageMatch() - { - $r = 'http://example.com/return.to'; - $this->assertTrue(Auth_OpenID_returnToMatches( - array('This is not a URL at all. In fact, it has characters, ' . - 'like "<" that are not allowed in URLs', $r), $r)); - } - - function test_descendant() - { - $r = 'http://example.com/return.to'; - $this->assertTrue(Auth_OpenID_returnToMatches(array($r), - 'http://example.com/return.to/user:joe')); - } - - function test_wildcard() - { - $this->assertFalse(Auth_OpenID_returnToMatches( - array('http://*.example.com/return.to'), - 'http://example.com/return.to')); - } - - function test_noMatch() - { - $r = 'http://example.com/return.to'; - $this->assertFalse(Auth_OpenID_returnToMatches(array($r), - 'http://example.com/xss_exploit')); - } -} - -class Verifier { - function Verifier($test_case, $return_to) - { - $this->tc =& $test_case; - $this->return_to = $return_to; - } - - function verify($disco_url) - { - $this->tc->assertEquals('http://www.example.com/', $disco_url); - - if ($this->return_to === false) { - return false; - } else { - return array($this->return_to); - } - } -} - -class Tests_Auth_OpenID_VerifyReturnTo extends PHPUnit_Framework_TestCase { - - function test_bogusRealm() - { - $this->assertFalse(Auth_OpenID_verifyReturnTo('', 'http://example.com/', null)); - } - - function test_verifyWithDiscoveryCalled() - { - $realm = 'http://*.example.com/'; - $return_to = 'http://www.example.com/foo'; - - $v = new Verifier($this, $return_to); - - $this->assertTrue(Auth_OpenID_verifyReturnTo($realm, $return_to, null, array($v, 'verify'))); - } - - function test_verifyFailWithDiscoveryCalled() - { - $realm = 'http://*.example.com/'; - $return_to = 'http://www.example.com/foo'; - - $v = new Verifier($this, 'http://something-else.invalid/'); - - $this->assertFalse(Auth_OpenID_verifyReturnTo($realm, $return_to, null, array($v, 'verify'))); - } - - function test_verifyFailIfDiscoveryRedirects() - { - $realm = 'http://*.example.com/'; - $return_to = 'http://www.example.com/foo'; - - $v = new Verifier($this, false); - - $this->assertFalse(Auth_OpenID_verifyReturnTo($realm, $return_to, null, array($v, 'verify'))); - } -} - -class Tests_Auth_OpenID_RPVerify extends PHPUnit_Framework_TestSuite { - function getName() - { - return "Tests_Auth_OpenID_RPVerify"; - } - - function Tests_Auth_OpenID_RPVerify() - { - $this->addTestSuite('Tests_Auth_OpenID_VerifyReturnTo'); - $this->addTestSuite('Tests_Auth_OpenID_ReturnToMatches'); - $this->addTestSuite('Tests_Auth_OpenID_ExtractReturnToURLs'); - $this->addTestSuite('Tests_Auth_OpenID_BuildDiscoveryURL'); - } -} - - -- cgit v1.2.3