1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /**
- * ownCloud
- *
- * @author Robin Appelman
- * @copyright 2012 Robin Appelman icewind@owncloud.com
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
- *
- * You should have received a copy of the GNU Affero General Public
- * License along with this library. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- use OC\HintException;
- use Symfony\Component\EventDispatcher\EventDispatcher;
- use Symfony\Component\EventDispatcher\GenericEvent;
- /**
- * Class Test_User_Database
- *
- * @group DB
- */
- class Test_User_Database extends Test_User_Backend {
- /** @var array */
- private $users;
- /** @var EventDispatcher | PHPUnit_Framework_MockObject_MockObject */
- private $eventDispatcher;
- public function getUser() {
- $user = parent::getUser();
- $this->users[]=$user;
- return $user;
- }
- protected function setUp() {
- parent::setUp();
- $this->eventDispatcher = $this->getMock('Symfony\Component\EventDispatcher\EventDispatcher');
- $this->backend=new OC_User_Database($this->eventDispatcher);
- }
- protected function tearDown() {
- if(!isset($this->users)) {
- return;
- }
- foreach($this->users as $user) {
- $this->backend->deleteUser($user);
- }
- parent::tearDown();
- }
- public function testVerifyPasswordEvent() {
- $user = $this->getUser();
- $this->backend->createUser($user, 'pass1');
- $this->eventDispatcher->expects($this->once())->method('dispatch')
- ->willReturnCallback(
- function ($eventName, GenericEvent $event) {
- $this->assertSame('OCP\PasswordPolicy::validate', $eventName);
- $this->assertSame('newpass', $event->getSubject());
- }
- );
- $this->backend->setPassword($user, 'newpass');
- $this->assertSame($user, $this->backend->checkPassword($user, 'newpass'));
- }
- /**
- * @expectedException \OC\HintException
- * @expectedExceptionMessage password change failed
- */
- public function testVerifyPasswordEventFail() {
- $user = $this->getUser();
- $this->backend->createUser($user, 'pass1');
- $this->eventDispatcher->expects($this->once())->method('dispatch')
- ->willReturnCallback(
- function ($eventName, GenericEvent $event) {
- $this->assertSame('OCP\PasswordPolicy::validate', $eventName);
- $this->assertSame('newpass', $event->getSubject());
- throw new HintException('password change failed', 'password change failed');
- }
- );
- $this->backend->setPassword($user, 'newpass');
- $this->assertSame($user, $this->backend->checkPassword($user, 'newpass'));
- }
- }
|