_tempDir = APP_DIR . '/tests/temp'; } public function setUp() { TestHarness::setUp(); Application::$front->returnResponse(true); $this->_response = new Zend_Controller_Response_Http(); $this->_response->headersSentThrowsException = false; Application::$front->setResponse($this->_response); $users = new Users_Model_Users(); $users->deleteTestEntries(); $this->_user = $users->createRow(); $this->_user->test = 1; $this->_user->username = 'testuser'; $this->_user->role = Users_Model_User::ROLE_REGISTERED; $this->_user->openid = 'http://localhost/communityid/identity/'.$this->_user->username; $this->_user->setClearPassword(self::USER_PASSWORD); $this->_user->accepted_eula = 1; $this->_user->firstname = 'firstnametest'; $this->_user->lastname = 'lastnametest'; $this->_user->email = 'usertest@mailinator.com'; $this->_user->token = ''; $this->_user->save(); Zend_Registry::set('user', $this->_user); // php-openid lib sucks $GLOBALS['Auth_OpenID_registered_aliases'] = array(); $GLOBALS['_Auth_OpenID_Request_Modes'] = array('checkid_setup', 'checkid_immediate'); $GLOBALS['Auth_OpenID_sreg_data_fields'] = array( 'fullname' => 'Full Name', 'nickname' => 'Nickname', 'dob' => 'Date of Birth', 'email' => 'E-mail Address', 'gender' => 'Gender', 'postcode' => 'Postal Code', 'country' => 'Country', 'language' => 'Language', 'timezone' => 'Time Zone'); } public function testIndexAction() { Application::$front->setRequest(new TestRequest('/openid')); try { Application::dispatch(); } catch (Monkeys_BadUrlException $e) { $this->assertTrue(true); return; } $this->fail('Expected Monkeys_BadUrlException was not raised'); } public function testProviderAssociateAction() { $_GET = array( 'openid.ns' => 'http://specs.openid.net/auth/2.0', 'openid.mode' => 'associate', 'openid.assoc_type' => 'HMAC-SHA256', 'openid.session_type' => 'DH-SHA256', 'openid.dh_modulus' => 'ANz5OguIOXLsDhmYmsWizjEOHTdxfo2Vcbt2I3MYZuYe91ouJ4mLBX+YkcLiemOcPym2CBRYHNOyyjmG0mg3BVd9RcLn5S3IHHoXGHblzqdLFEi/368Ygo79JRnxTkXjgmY0rxlJ5bU1zIKaSDuKdiI+XUkKJX8Fvf8W8vsixYOr', 'openid.dh_gen' => 'Ag==', 'openid.dh_consumer_public' => 'MFzHUMsSa4YSQ3JrcPSqyUaTQ3Z+QWKH6knvrREW7b6zQ2qMdOrpckgnUgo0pILMQpls8Ty/3JDv+IO29qASk2PwwZwxC2kXK/MQC/om5gs/IpjPSw1wK4bz2QTUHTRSxmtTxiq0tHYmIIqadz4TTMfXohMU2VCuYBqDNMHZFpk=', ); $_SERVER['REQUEST_METHOD'] = 'GET'; $_SERVER['QUERY_STRING'] = http_build_query($_GET); Application::$front->setRequest(new TestRequest('/openid/provider')); Application::dispatch(); $this->assertEquals( preg_match( "% assoc_handle:(\{HMAC-SHA256\}\{[a-f0-9]+\}\{.*==\})\\x0A assoc_type:HMAC-SHA256\\x0A dh_server_public:.*\\x0A enc_mac_key:.*\\x0A expires_in:\d+\\x0A ns:http://specs\.openid\.net/auth/2\.0\\x0A session_type:DH-SHA256\\x0A %x", $this->_response->getBody(), $matches ), 1 ); self::$assocHandle = urlencode($matches[1]); } public function testProviderCheckidSetupAction() { Zend_Auth::getInstance()->clearIdentity(); Zend_Registry::getInstance()->offsetUnset('user'); $_SERVER['REQUEST_METHOD'] = 'GET'; $_SERVER['QUERY_STRING'] = 'openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.mode=checkid_setup&openid.identity=http%3A%2F%2Flocalhost%2Fcommunityid%2Fidentity%2Ftestuser&openid.claimed_id=http%3A%2F%2Flocalhost%2Fcommunityid%2Fidentity%2Ftestuser&openid.assoc_handle='.self::$assocHandle.'&openid.return_to=http%3A%2F%2Fwww.example.com&openid.realm=http%3A%2F%2Fwww.example.com'; Zend_OpenId::$exitOnRedirect = false; Application::$front->setRequest(new TestRequest('/openid/provider?' . $_SERVER['QUERY_STRING'])); Application::dispatch(); $this->assertContains('