Bolt\Tests\Controller\Backend\AuthenticationTest::testResetRequest PHP Метод

testResetRequest() публичный Метод

public testResetRequest ( )
    public function testResetRequest()
    {
        $dispatcher = $this->getService('swiftmailer.transport.eventdispatcher');
        $this->setService('swiftmailer.transport', new \Swift_Transport_NullTransport($dispatcher));
        $this->setSessionUser(new Entity\Users());
        $loginMock = $this->getMockLogin();
        $loginMock->expects($this->any())->method('login')->will($this->returnValue(true));
        $this->setService('access_control.login', $loginMock);
        $passwordMock = $this->getMockPassword(['resetPasswordRequest']);
        $passwordMock->expects($this->once())->method('resetPasswordRequest')->with($this->equalTo('admin'))->will($this->returnValue(true));
        $this->setService('access_control.password', $passwordMock);
        // Test missing username fails
        $this->setRequest(Request::create('/bolt/login', 'POST', ['action' => 'reset']));
        $flash = $this->prophesize(FlashLogger::class);
        $flash->get('info')->shouldBeCalled();
        $flash->get('success')->shouldBeCalled();
        $flash->get('error')->shouldBeCalled();
        $flash->error('Please provide a username')->shouldBeCalled();
        $this->setService('logger.flash', $flash->reveal());
        $this->controller()->postLogin($this->getRequest());
        // Test normal operation
        $this->setRequest(Request::create('/bolt/login', 'POST', ['action' => 'reset', 'username' => 'admin']));
        $response = $this->controller()->postLogin($this->getRequest());
        $this->assertRegExp('|Redirecting to /bolt/login|', $response->getContent());
    }