* @copyright 2005 Janrain, Inc. * @license http://www.gnu.org/copyleft/lesser.html LGPL */ require_once 'PHPUnit.php'; require_once 'Auth/OpenID.php'; class Tests_Auth_OpenID_Util extends PHPUnit_TestCase { function test_base64() { // This is not good for international use, but PHP doesn't // appear to provide access to the local alphabet. $letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; $digits = "0123456789"; $extra = "+/="; $allowed_s = $letters . $digits . $extra; $allowed_d = array(); for ($i = 0; $i < strlen($allowed_s); $i++) { $c = $allowed_s[$i]; $allowed_d[$c] = null; } function checkEncoded($obj, $str, $allowed_array) { for ($i = 0; $i < strlen($str); $i++) { $obj->assertTrue(array_key_exists($str[$i], $allowed_array)); } } $cases = array( "", "x", "\x00", "\x01", str_repeat("\x00", 100), implode("", array_map('chr', range(0, 255))) ); foreach ($cases as $s) { $b64 = base64_encode($s); checkEncoded($this, $b64, $allowed_d); $s_prime = base64_decode($b64); $this->assertEquals($s_prime, $s); } function random_ordinal($unused) { return rand(0, 255); } // Randomized test foreach (range(0, 49) as $i) { $n = rand(0, 2048); $s = implode("", array_map('chr', array_map('random_ordinal', range(0, $n)))); $b64 = base64_encode($s); checkEncoded($this, $b64, $allowed_d); $s_prime = base64_decode($b64); $this->assertEquals($s_prime, $s); } } function test_normalizeUrl() { $this->assertEquals("http://foo.com/", Auth_OpenID::normalizeUrl("foo.com")); $this->assertEquals("http://foo.com/", Auth_OpenID::normalizeUrl("http://foo.com")); $this->assertEquals("https://foo.com/", Auth_OpenID::normalizeUrl("https://foo.com")); $this->assertEquals("http://foo.com/bar", Auth_OpenID::normalizeUrl("foo.com/bar")); $this->assertEquals("http://foo.com/bar", Auth_OpenID::normalizeUrl("http://foo.com/bar")); $this->assertEquals("http://foo.com/", Auth_OpenID::normalizeUrl("http://foo.com/")); $this->assertEquals("https://foo.com/", Auth_OpenID::normalizeUrl("https://foo.com/")); $this->assertEquals("https://foo.com/bar" , Auth_OpenID::normalizeUrl("https://foo.com/bar")); if (0) { $this->assertEquals("http://foo.com/%E8%8D%89", Auth_OpenID::normalizeUrl("foo.com/\u8349")); $this->assertEquals("http://foo.com/%E8%8D%89", Auth_OpenID::normalizeUrl("http://foo.com/\u8349")); } $non_ascii_domain_cases = array( array("http://xn--vl1a.com/", "\u8349.com"), array("http://xn--vl1a.com/", "http://\u8349.com"), array("http://xn--vl1a.com/", "\u8349.com/"), array("http://xn--vl1a.com/", "http://\u8349.com/"), array("http://xn--vl1a.com/%E8%8D%89", "\u8349.com/\u8349"), array("http://xn--vl1a.com/%E8%8D%89", "http://\u8349.com/\u8349"), ); // XXX /* codecs.getencoder('idna') except LookupError: # If there is no idna codec, these cases with # non-ascii-representable domain names should fail. should_raise = True else: should_raise = False for expected, case in non_ascii_domain_cases: try: actual = Auth_OpenID::normalizeUrl(case) except UnicodeError: assert should_raise else: assert not should_raise and actual == expected, case */ $this->assertNull(Auth_OpenID::normalizeUrl(null)); $this->assertNull(Auth_OpenID::normalizeUrl('')); $this->assertNull(Auth_OpenID::normalizeUrl('http://')); } function test_appendArgs() { $simple = 'http://www.example.com/'; $cases = array( array('empty list', array($simple, array()), $simple), array('empty dict', array($simple, array()), $simple), array('one list', array($simple, array(array('a', 'b'))), $simple . '?a=b'), array('one dict', array($simple, array('a' => 'b')), $simple . '?a=b'), array('two list (same)', array($simple, array(array('a', 'b'), array('a', 'c'))), $simple . '?a=b&a=c'), array('two list', array($simple, array(array('a', 'b'), array('b', 'c'))), $simple . '?a=b&b=c'), array('two list (order)', array($simple, array(array('b', 'c'), array('a', 'b'))), $simple . '?b=c&a=b'), array('two dict (order)', array($simple, array('b' => 'c', 'a' => 'b')), $simple . '?a=b&b=c'), array('escape', array($simple, array(array('=', '='))), $simple . '?%3D=%3D'), array('escape (URL)', array($simple, array(array('this_url', $simple))), $simple . '?this_url=http%3A%2F%2Fwww.example.com%2F'), array('use dots', array($simple, array(array('openid.stuff', 'bother'))), $simple . '?openid.stuff=bother'), array('args exist (empty)', array($simple . '?stuff=bother', array()), $simple . '?stuff=bother'), array('args exist', array($simple . '?stuff=bother', array(array('ack', 'ack'))), $simple . '?stuff=bother&ack=ack'), array('args exist', array($simple . '?stuff=bother', array(array('ack', 'ack'))), $simple . '?stuff=bother&ack=ack'), array('args exist (dict)', array($simple . '?stuff=bother', array('ack' => 'ack')), $simple . '?stuff=bother&ack=ack'), array('args exist (dict 2)', array($simple . '?stuff=bother', array('ack' => 'ack', 'zebra' => 'lion')), $simple . '?stuff=bother&ack=ack&zebra=lion'), array('three args (dict)', array($simple, array('stuff' => 'bother', 'ack' => 'ack', 'zebra' => 'lion')), $simple . '?ack=ack&stuff=bother&zebra=lion'), array('three args (list)', array($simple, array( array('stuff', 'bother'), array('ack', 'ack'), array('zebra', 'lion'))), $simple . '?stuff=bother&ack=ack&zebra=lion'), ); // Tests. foreach ($cases as $case) { list($desc, $data, $expected) = $case; list($url, $query) = $data; $this->assertEquals($expected, Auth_OpenID::appendArgs($url, $query)); } } } ?>