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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
<?php
require_once 'PHPUnit.php';
require_once 'Tests/Auth/OpenID/TestUtil.php';
require_once 'Auth/OpenID/Association.php';
require_once 'Auth/OpenID/Consumer.php';
class AuthRequest_DummyEndpoint {
var $preferred_namespace = null;
var $local_id = null;
var $server_url = null;
var $is_op_identifier = false;
function preferredNamespace()
{
return $this->preferred_namespace;
}
function getLocalID()
{
return $this->local_id;
}
function isOPIdentifier()
{
return $this->is_op_identifier;
}
}
class AuthRequest_DummyAssoc {
var $handle = "assoc-handle";
}
/**
* Base for AuthRequest tests for OpenID 1 and 2.
*/
class TestAuthRequestMixin extends OpenIDTestMixin {
var $preferred_namespace = null;
var $immediate = false;
var $expected_mode = 'checkid_setup';
function setUp()
{
$this->endpoint = new AuthRequest_DummyEndpoint();
$this->endpoint->local_id = 'http://server.unittest/joe';
$this->endpoint->claimed_id = 'http://joe.vanity.example/';
$this->endpoint->server_url = 'http://server.unittest/';
$this->endpoint->preferred_namespace = $this->preferred_namespace;
$this->realm = 'http://example/';
$this->return_to = 'http://example/return/';
$this->assoc = new AuthRequest_DummyAssoc();
$this->authreq = new Auth_OpenID_AuthRequest($this->endpoint, $this->assoc);
}
function failUnlessAnonymous($msg)
{
foreach (array('claimed_id', 'identity') as $key) {
$this->failIfOpenIDKeyExists($msg, $key);
}
}
function failUnlessHasRequiredFields($msg)
{
$this->assertEquals($this->preferred_namespace,
$this->authreq->message->getOpenIDNamespace());
$this->assertEquals($this->preferred_namespace,
$msg->getOpenIDNamespace());
$this->failUnlessOpenIDValueEquals($msg, 'mode',
$this->expected_mode);
// Implement these in subclasses because they depend on
// protocol differences!
$this->failUnlessHasRealm($msg);
$this->failUnlessIdentifiersPresent($msg);
}
// TESTS
function test_checkNoAssocHandle()
{
$this->authreq->assoc = null;
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
$this->failIfOpenIDKeyExists($msg, 'assoc_handle');
}
function test_checkWithAssocHandle()
{
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
$this->failUnlessOpenIDValueEquals($msg, 'assoc_handle',
$this->assoc->handle);
}
function test_addExtensionArg()
{
$this->authreq->addExtensionArg('bag:', 'color', 'brown');
$this->authreq->addExtensionArg('bag:', 'material', 'paper');
$this->assertTrue($this->authreq->message->namespaces->contains('bag:'));
$this->assertEquals($this->authreq->message->getArgs('bag:'),
array('color' => 'brown',
'material' => 'paper'));
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
// XXX: this depends on the way that Message assigns
// namespaces. Really it doesn't care that it has alias "0",
// but that is tested anyway
$post_args = $msg->toPostArgs();
$this->assertEquals('brown', $post_args['openid.ext0.color']);
$this->assertEquals('paper', $post_args['openid.ext0.material']);
}
function test_standard()
{
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
$this->failUnlessHasIdentifiers(
$msg, $this->endpoint->local_id,
$this->endpoint->claimed_id);
}
}
class TestAuthRequestOpenID2 extends TestAuthRequestMixin {
var $preferred_namespace = Auth_OpenID_OPENID2_NS;
function failUnlessHasRealm($msg)
{
// check presence of proper realm key and absence of the wrong
// one.
$this->failUnlessOpenIDValueEquals($msg, 'realm', $this->realm);
$this->failIfOpenIDKeyExists($msg, 'trust_root');
}
function failUnlessIdentifiersPresent($msg)
{
$identity_present = $msg->hasKey(Auth_OpenID_OPENID_NS, 'identity');
$claimed_present = $msg->hasKey(Auth_OpenID_OPENID_NS, 'claimed_id');
$this->assertEquals($claimed_present, $identity_present);
}
function failUnlessHasIdentifiers($msg, $op_specific_id, $claimed_id)
{
$this->failUnlessOpenIDValueEquals($msg, 'identity', $op_specific_id);
$this->failUnlessOpenIDValueEquals($msg, 'claimed_id', $claimed_id);
}
// TESTS
function test_markup_checkidImmediate()
{
$result = $this->authreq->formMarkup($this->realm,
null, true);
$this->assertTrue(Auth_OpenID::isFailure($result));
}
function test_markup_returnToArgs()
{
$this->authreq->return_to_args = array('extra' => 'args');
$result = $this->authreq->formMarkup($this->realm,
null, false);
$this->assertTrue(Auth_OpenID::isFailure($result));
}
function test_setAnonymousWorksForOpenID2()
{
// OpenID AuthRequests should be able to set 'anonymous' to true.
$this->assertTrue($this->authreq->message->isOpenID2());
$this->assertTrue($this->authreq->setAnonymous(true));
$this->assertTrue($this->authreq->setAnonymous(false));
}
function test_userAnonymousIgnoresIdentfier()
{
$this->authreq->setAnonymous(true);
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
$this->failUnlessHasRequiredFields($msg);
$this->failUnlessAnonymous($msg);
}
function test_opAnonymousIgnoresIdentifier()
{
$this->endpoint->is_op_identifier = true;
$this->authreq->setAnonymous(true);
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
$this->failUnlessHasRequiredFields($msg);
$this->failUnlessAnonymous($msg);
}
function test_opIdentifierSendsIdentifierSelect()
{
$this->endpoint->is_op_identifier = true;
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
$this->failUnlessHasRequiredFields($msg);
$this->failUnlessHasIdentifiers($msg,
Auth_OpenID_IDENTIFIER_SELECT,
Auth_OpenID_IDENTIFIER_SELECT);
}
}
class TestAuthRequestOpenID1 extends TestAuthRequestMixin {
var $preferred_namespace = Auth_OpenID_OPENID1_NS;
function setUpEndpoint()
{
parent::setUpEndpoint();
$this->endpoint->preferred_namespace = Auth_OpenID_OPENID1_NS;
}
function failUnlessHasIdentifiers($msg, $op_specific_id, $claimed_id)
{
// Make sure claimed_is is *absent* in request.
$this->failUnlessOpenIDValueEquals($msg, 'identity', $op_specific_id);
$this->failIfOpenIDKeyExists($msg, 'claimed_id');
}
function failUnlessIdentifiersPresent($msg)
{
$this->failIfOpenIDKeyExists($msg, 'claimed_id');
$this->assertTrue($msg->hasKey(Auth_OpenID_OPENID_NS, 'identity'));
}
function failUnlessHasRealm($msg)
{
// check presence of proper realm key and absence of the wrong
// one.
$this->failUnlessOpenIDValueEquals($msg, 'trust_root', $this->realm);
$this->failIfOpenIDKeyExists($msg, 'realm');
}
// TESTS
function test_markup_missingReturnTo()
{
$result = $this->authreq->formMarkup($this->realm,
null, false);
$this->assertTrue(Auth_OpenID::isFailure($result));
}
function test_setAnonymousFailsForOpenID1()
{
// OpenID 1 requests MUST NOT be able to set anonymous to True
$this->assertTrue($this->authreq->message->isOpenID1());
$this->assertFalse($this->authreq->setAnonymous(true));
$this->assertTrue($this->authreq->setAnonymous(false));
}
function test_identifierSelect()
{
// Identfier select SHOULD NOT be sent, but this pathway is in
// here in case some special discovery stuff is done to
// trigger it with OpenID 1. If it is triggered, it will send
// identifier_select just like OpenID 2.
$this->endpoint->is_op_identifier = true;
$msg = $this->authreq->getMessage($this->realm, $this->return_to,
$this->immediate);
$this->failUnlessHasRequiredFields($msg);
$this->assertEquals(Auth_OpenID_IDENTIFIER_SELECT,
$msg->getArg(Auth_OpenID_OPENID1_NS,
'identity'));
}
}
class TestAuthRequestOpenID1Immediate extends TestAuthRequestOpenID1 {
var $immediate = true;
var $expected_mode = 'checkid_immediate';
}
class TestAuthRequestOpenID2Immediate extends TestAuthRequestOpenID2 {
var $immediate = true;
var $expected_mode = 'checkid_immediate';
}
class Tests_Auth_OpenID_AuthRequest extends PHPUnit_TestSuite {
function getName()
{
return "Tests_Auth_OpenID_AuthRequest";
}
function Tests_Auth_OpenID_AuthRequest()
{
$this->addTestSuite('TestAuthRequestOpenID1');
$this->addTestSuite('TestAuthRequestOpenID1Immediate');
$this->addTestSuite('TestAuthRequestOpenID2');
$this->addTestSuite('TestAuthRequestOpenID2Immediate');
}
}
?>
|