1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
<?php
/**
* Tests for the combination of Yadis discovery and the OpenID
* protocol.
*/
require_once "Auth/Yadis/XRDS.php";
require_once "Auth/OpenID/Discover.php";
global $__XRDS_BOILERPLATE;
$__XRDS_BOILERPLATE = '<?xml version="1.0" encoding="UTF-8"?>
<xrds:XRDS xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<XRD>
%s
</XRD>
</xrds:XRDS>
';
// Different sets of server URLs for use in the URI tag
global $__server_url_options;
$__server_url_options = array(
array(), // This case should not generate an endpoint object
array('http://server.url/'),
array('https://server.url/'),
array('https://server.url/', 'http://server.url/'),
array('https://server.url/',
'http://server.url/',
'http://example.server.url/'),
);
// A couple of example extension type URIs. These are not at all
// official, but are just here for testing.
global $__ext_types;
$__ext_types = array(
'http://janrain.com/extension/blah',
'http://openid.net/sreg/1.0');
// All valid combinations of Type tags that should produce an OpenID
// endpoint
global $__openid_types;
$__openid_types = array(
Auth_OpenID_TYPE_1_0,
Auth_OpenID_TYPE_1_1);
$temp = array();
foreach (__subsets($__ext_types) as $exts) {
foreach (__subsets($__openid_types) as $ts) {
if ($ts) {
$temp[] = array_merge($exts, $ts);
}
}
}
global $__type_uri_options;
$__type_uri_options = $temp;
// Range of valid Delegate tag values for generating test data
global $__delegate_options;
$__delegate_options = array(
null,
'http://vanity.domain/',
'https://somewhere/yadis/');
$temp = array();
foreach ($__delegate_options as $delegate) {
foreach ($__type_uri_options as $type_uris) {
foreach ($__server_url_options as $uris) {
$temp[] = array($uris, $type_uris, $delegate);
}
}
}
// All combinations of valid URIs, Type URIs and Delegate tags
global $__data;
$__data = $temp;
function _mkXRDS($services_str)
{
global $__XRDS_BOILERPLATE;
return sprintf($__XRDS_BOILERPLATE, $services_str);
}
function _mkService($uris = null, $type_uris = null,
$delegate = null, $dent = ' ')
{
$chunks = array($dent, "<Service>\n");
$dent2 = $dent . ' ';
if ($type_uris) {
foreach ($type_uris as $type_uri) {
$chunks = array_merge($chunks,
array($dent2 . '<Type>',
$type_uri, "</Type>\n"));
}
}
if ($uris) {
foreach ($uris as $uri) {
if (is_array($uri)) {
list($uri, $prio) = $uri;
} else {
$prio = null;
}
$chunks = array_merge($chunks, array($dent2, '<URI'));
if ($prio !== null) {
$chunks = array_merge($chunks, array(' priority="', strval($prio), '"'));
}
$chunks = array_merge($chunks, array('>', $uri, "</URI>\n"));
}
}
if ($delegate) {
$chunks = array_merge($chunks,
array($dent2, '<openid:Delegate>',
$delegate, "</openid:Delegate>\n"));
}
$chunks = array_merge($chunks, array($dent, "</Service>\n"));
return implode("", $chunks);
}
// Used for generating test data
function __subsets($list)
{
// Generate all non-empty sublists of a list
$subsets_list = array(array());
foreach ($list as $elem) {
$temp = array();
foreach ($subsets_list as $t) {
$temp[] = array_merge(array($elem), $t);
}
$subsets_list = array_merge($subsets_list, $temp);
}
return $subsets_list;
}
class Tests_Auth_OpenID_Tester extends PHPUnit_Framework_TestCase {
function Tests_Auth_OpenID_Tester($uris, $type_uris, $delegate)
{
parent::__construct();
$this->uris = $uris;
$this->type_uris = $type_uris;
$this->local_id = $delegate;
}
function setUp()
{
$this->yadis_url = 'http://unit.test/';
// Create an XRDS document to parse
$services = _mkService($this->uris,
$this->type_uris,
$this->local_id);
$this->xrds = _mkXRDS($services);
}
function runTest()
{
// Parse into endpoint objects that we will check
$xrds_object = Auth_Yadis_XRDS::parseXRDS($this->xrds);
$endpoints = array();
if ($xrds_object) {
$endpoints = $xrds_object->services(array('filter_MatchesAnyOpenIDType'));
$endpoints = Auth_OpenID_makeOpenIDEndpoints($this->yadis_url, $endpoints);
}
// make sure there are the same number of endpoints as
// URIs. This assumes that the type_uris contains at least one
// OpenID type.
$this->assertEquals(count($this->uris), count($endpoints),
"URI <-> Endpoint count");
// So that we can check equality on the endpoint types
$type_uris = $this->type_uris;
sort($type_uris);
$seen_uris = array();
foreach ($endpoints as $endpoint) {
$seen_uris[] = $endpoint->server_url;
// All endpoints will have same yadis_url
$this->assertEquals($this->yadis_url, $endpoint->claimed_id);
// and delegate
$this->assertEquals($this->local_id, $endpoint->local_id);
// and types
$actual_types = $endpoint->type_uris;
sort($actual_types);
$this->assertEquals($actual_types, $type_uris);
}
// So that they will compare equal, because we don't care what
// order they are in
sort($seen_uris);
$uris = $this->uris;
sort($uris);
// Make sure we saw all URIs, and saw each one once
$this->assertEquals($uris, $seen_uris);
}
}
class Tests_Auth_OpenID_OpenID_Yadis extends PHPUnit_Framework_TestSuite {
function Tests_Auth_OpenID_OpenID_Yadis()
{
global $__data;
foreach ($__data as $case) {
$this->addTest(new Tests_Auth_OpenID_Tester($case[0], $case[1], $case[2]));
}
}
function getName()
{
return 'Tests_Auth_OpenID_OpenID_Yadis';
}
}
|