/** * Test setting Wordpress roles and should return Symfony roles. */ public function testWordpressRoles() { $wordpressRoles = ['author']; $user = new User(); $user->setWordpressRoles($wordpressRoles); $this->assertEquals(['ROLE_WP_AUTHOR'], $user->getRoles()); }
/** * Test onKernelResponse() & checkAuthentication() methods with a user logged in * and Wordpress catchall route is loaded (Wordpress should not be loaded). * * Should sets user token in security context if session key 'token' exists */ public function testOnKernelRequestUserLoggedAndCatchallRoute() { // Fake Wordpress application to return a user logged in identifier $this->listener->expects($this->any())->method('getWordpressLoggedIdentifier')->will($this->returnValue(1)); $user = new User(); $token = new UsernamePasswordToken($user, $user->getPass(), 'secured_area', $user->getRoles()); // Set up a request mock to give to GetResponseEvent class below $session = $this->getMock('\\Symfony\\Component\\HttpFoundation\\Session\\Session'); $session->expects($this->any())->method('getName')->will($this->returnValue('session_test')); $session->expects($this->any())->method('has')->with($this->equalTo('token'))->will($this->returnValue(true)); $session->expects($this->any())->method('get')->with($this->equalTo('token'))->will($this->returnValue($token)); $request = new Request(); $request->setSession($session); $request->attributes->set('_route', 'parenthesis_wp_catchall'); $request->cookies->set($request->getSession()->getName(), true); // Ensure Wordpress is loaded as route is not the catch all route. $this->wordpress->expects($this->never())->method('loadWordpress'); $getResponseEvent = new GetResponseEvent($this->getMock('\\Symfony\\Component\\HttpKernel\\HttpKernelInterface'), $request, HttpKernelInterface::MASTER_REQUEST); // Run onKernelRequest() method $this->assertEquals(null, $this->tokenStorage->getToken(), 'Should returns no token'); $this->listener->onKernelRequest($getResponseEvent); $this->assertEquals($token, $this->tokenStorage->getToken(), 'Should returns previous token initialized'); }