UserDisabledCheckCommandTest.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. /**
  3. * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  4. *
  5. * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. declare(strict_types=1);
  23. namespace Test\Authentication\Login;
  24. use OC\Authentication\Login\UserDisabledCheckCommand;
  25. use OC\Core\Controller\LoginController;
  26. use OCP\IUserManager;
  27. use PHPUnit\Framework\MockObject\MockObject;
  28. use Psr\Log\LoggerInterface;
  29. class UserDisabledCheckCommandTest extends ALoginCommandTest {
  30. /** @var IUserManager|MockObject */
  31. private $userManager;
  32. /** @var LoggerInterface|MockObject */
  33. private $logger;
  34. protected function setUp(): void {
  35. parent::setUp();
  36. $this->userManager = $this->createMock(IUserManager::class);
  37. $this->logger = $this->createMock(LoggerInterface::class);
  38. $this->cmd = new UserDisabledCheckCommand(
  39. $this->userManager,
  40. $this->logger
  41. );
  42. }
  43. public function testProcessNonExistingUser() {
  44. $data = $this->getBasicLoginData();
  45. $this->userManager->expects($this->once())
  46. ->method('get')
  47. ->with($this->username)
  48. ->willReturn(null);
  49. $result = $this->cmd->process($data);
  50. $this->assertTrue($result->isSuccess());
  51. }
  52. public function testProcessDisabledUser() {
  53. $data = $this->getBasicLoginData();
  54. $this->userManager->expects($this->once())
  55. ->method('get')
  56. ->with($this->username)
  57. ->willReturn($this->user);
  58. $this->user->expects($this->once())
  59. ->method('isEnabled')
  60. ->willReturn(false);
  61. $result = $this->cmd->process($data);
  62. $this->assertFalse($result->isSuccess());
  63. $this->assertSame(LoginController::LOGIN_MSG_USERDISABLED, $result->getErrorMessage());
  64. }
  65. public function testProcess() {
  66. $data = $this->getBasicLoginData();
  67. $this->userManager->expects($this->once())
  68. ->method('get')
  69. ->with($this->username)
  70. ->willReturn($this->user);
  71. $this->user->expects($this->once())
  72. ->method('isEnabled')
  73. ->willReturn(true);
  74. $result = $this->cmd->process($data);
  75. $this->assertTrue($result->isSuccess());
  76. }
  77. }