123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
- *
- * @author 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
- *
- * @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 Test\Core\Command\TwoFactorAuth;
- use OC\Authentication\TwoFactorAuth\ProviderManager;
- use OC\Core\Command\TwoFactorAuth\Enable;
- use OCP\IUser;
- use OCP\IUserManager;
- use PHPUnit\Framework\MockObject\MockObject;
- use Symfony\Component\Console\Tester\CommandTester;
- use Test\TestCase;
- class EnableTest extends TestCase {
- /** @var ProviderManager|MockObject */
- private $providerManager;
- /** @var IUserManager|MockObject */
- private $userManager;
- /** @var CommandTester */
- private $command;
- protected function setUp(): void {
- parent::setUp();
- $this->providerManager = $this->createMock(ProviderManager::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $cmd = new Enable($this->providerManager, $this->userManager);
- $this->command = new CommandTester($cmd);
- }
- public function testInvalidUID() {
- $this->userManager->expects($this->once())
- ->method('get')
- ->with('nope')
- ->willReturn(null);
- $rc = $this->command->execute([
- 'uid' => 'nope',
- 'provider_id' => 'nope',
- ]);
- $this->assertEquals(1, $rc);
- $this->assertStringContainsString("Invalid UID", $this->command->getDisplay());
- }
- public function testEnableNotSupported() {
- $user = $this->createMock(IUser::class);
- $this->userManager->expects($this->once())
- ->method('get')
- ->with('belle')
- ->willReturn($user);
- $this->providerManager->expects($this->once())
- ->method('tryEnableProviderFor')
- ->with('totp', $user)
- ->willReturn(false);
- $rc = $this->command->execute([
- 'uid' => 'belle',
- 'provider_id' => 'totp',
- ]);
- $this->assertEquals(2, $rc);
- $this->assertStringContainsString("The provider does not support this operation", $this->command->getDisplay());
- }
- public function testEnabled() {
- $user = $this->createMock(IUser::class);
- $this->userManager->expects($this->once())
- ->method('get')
- ->with('belle')
- ->willReturn($user);
- $this->providerManager->expects($this->once())
- ->method('tryEnableProviderFor')
- ->with('totp', $user)
- ->willReturn(true);
- $rc = $this->command->execute([
- 'uid' => 'belle',
- 'provider_id' => 'totp',
- ]);
- $this->assertEquals(0, $rc);
- $this->assertStringContainsString("Two-factor provider totp enabled for user belle", $this->command->getDisplay());
- }
- }
|