Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2016-08-15 22:07:57 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2016-08-17 11:21:18 +0300
commit789082e014bc7b4ecea53be088521d41407fed7b (patch)
tree0c84dd63b225d8434f7ce5569626ddbf40b29cef /tests
parent32a6f5f1829ec9d1037fc7a0144631702ce598c2 (diff)
Add tests for ChangePasswordController
Diffstat (limited to 'tests')
-rw-r--r--tests/Core/Controller/ChangePasswordControllerTest.php161
1 files changed, 161 insertions, 0 deletions
diff --git a/tests/Core/Controller/ChangePasswordControllerTest.php b/tests/Core/Controller/ChangePasswordControllerTest.php
new file mode 100644
index 00000000000..8dd4ca8db95
--- /dev/null
+++ b/tests/Core/Controller/ChangePasswordControllerTest.php
@@ -0,0 +1,161 @@
+<?php
+/**
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program 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 program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+namespace Tests\Core\Controller;
+
+use OC\Settings\Controller\ChangePasswordController;
+use OC\User\Session;
+use OCP\App\IAppManager;
+use OCP\IGroupManager;
+use OCP\IL10N;
+use OCP\IUserManager;
+
+class ChangePasswordControllerTest extends \Test\TestCase {
+
+ /** @var string */
+ private $userId = 'currentUser';
+
+ /** @var IUserManager */
+ private $userManager;
+
+ /** @var Session */
+ private $userSession;
+
+ /** @var IGroupManager */
+ private $groupManager;
+
+ /** @var IAppManager */
+ private $appManager;
+
+ /** @var IL10N */
+ private $l;
+
+ /** @var ChangePasswordController */
+ private $controller;
+
+ public function setUp() {
+ parent::setUp();
+
+ $this->userManager = $this->getMockBuilder('OCP\IUserManager')->getMock();
+ $this->userSession = $this->getMockBuilder('OC\User\Session')->disableOriginalConstructor()->getMock();
+ $this->groupManager = $this->getMockBuilder('OCP\IGroupManager')->getMock();
+ $this->appManager = $this->getMockBuilder('OCP\App\IAppManager')->getMock();
+ $this->l = $this->getMockBuilder('OCP\IL10N')->getMock();
+
+ $this->l->method('t')->will($this->returnArgument(0));
+
+ $request = $this->getMockBuilder('OCP\IRequest')->getMock();
+
+ $this->controller = new ChangePasswordController(
+ 'core',
+ $request,
+ $this->userId,
+ $this->userManager,
+ $this->userSession,
+ $this->groupManager,
+ $this->appManager,
+ $this->l
+ );
+ }
+
+ public function testChangePersonalPasswordWrongPassword() {
+ $this->userManager->expects($this->once())
+ ->method('checkPassword')
+ ->with($this->userId, 'old')
+ ->willReturn(false);
+
+ $expects = [
+ 'status' => 'error',
+ 'data' => [
+ 'message' => 'Wrong password',
+ ],
+ ];
+
+ $res = $this->controller->changePersonalPassword('old', 'new');
+
+ $this->assertEquals($expects, $res->getData());
+ }
+
+ public function testChangePersonalPasswordNoNewPassword() {
+ $user = $this->getMockBuilder('OCP\IUser')->getMock();
+ $this->userManager->expects($this->once())
+ ->method('checkPassword')
+ ->with($this->userId, 'old')
+ ->willReturn($user);
+
+ $expects = [
+ 'status' => 'error',
+ ];
+
+ $res = $this->controller->changePersonalPassword('old');
+
+ $this->assertEquals($expects, $res->getData());
+ }
+
+ public function testChangePersonalPasswordCantSetPassword() {
+ $user = $this->getMockBuilder('OCP\IUser')->getMock();
+ $this->userManager->expects($this->once())
+ ->method('checkPassword')
+ ->with($this->userId, 'old')
+ ->willReturn($user);
+
+ $user->expects($this->once())
+ ->method('setPassword')
+ ->with('new')
+ ->willReturn(false);
+
+ $expects = [
+ 'status' => 'error',
+ ];
+
+ $res = $this->controller->changePersonalPassword('old', 'new');
+
+ $this->assertEquals($expects, $res->getData());
+ }
+
+ public function testChangePersonalPassword() {
+ $user = $this->getMockBuilder('OCP\IUser')->getMock();
+ $this->userManager->expects($this->once())
+ ->method('checkPassword')
+ ->with($this->userId, 'old')
+ ->willReturn($user);
+
+ $user->expects($this->once())
+ ->method('setPassword')
+ ->with('new')
+ ->willReturn(true);
+
+ $this->userSession->expects($this->once())
+ ->method('updateSessionTokenPassword')
+ ->with('new');
+
+ $expects = [
+ 'status' => 'success',
+ 'data' => [
+ 'message' => 'Saved',
+ ],
+ ];
+
+ $res = $this->controller->changePersonalPassword('old', 'new');
+
+ $this->assertEquals($expects, $res->getData());
+ }
+}