wallabag/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php

86 lines
2.7 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Wallabag\CoreBundle\Command;
2022-08-28 00:01:46 +00:00
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Console\Application;
2022-08-28 14:59:43 +00:00
use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Tester\CommandTester;
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
use Wallabag\UserBundle\Entity\User;
class ShowUserCommandTest extends WallabagCoreTestCase
{
public function testRunShowUserCommandWithoutUsername()
{
2022-08-28 14:59:43 +00:00
$this->expectException(RuntimeException::class);
2020-06-15 11:37:50 +00:00
$this->expectExceptionMessage('Not enough arguments');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:show');
$tester = new CommandTester($command);
2022-09-03 00:28:07 +00:00
$tester->execute([]);
}
public function testRunShowUserCommandWithBadUsername()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:show');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'unknown',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('User "unknown" not found', $tester->getDisplay());
}
public function testRunShowUserCommandForUser()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:show');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Username: admin', $tester->getDisplay());
$this->assertStringContainsString('Email: bigboss@wallabag.org', $tester->getDisplay());
$this->assertStringContainsString('Display name: Big boss', $tester->getDisplay());
$this->assertStringContainsString('2FA (email) activated', $tester->getDisplay());
$this->assertStringContainsString('2FA (OTP) activated', $tester->getDisplay());
}
public function testShowUser()
{
$client = $this->getTestClient();
2022-08-28 00:01:46 +00:00
$em = $client->getContainer()->get(EntityManagerInterface::class);
$this->logInAs('admin');
/** @var User $user */
2022-08-25 19:37:10 +00:00
$user = $em->getRepository(User::class)->findOneById($this->getLoggedInUserId());
$user->setName('Bug boss');
$em->persist($user);
$em->flush();
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:show');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Display name: Bug boss', $tester->getDisplay());
}
}