1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Move test files directly under tests/ directory

This commit is contained in:
Yassine Guedidi 2024-02-19 00:45:58 +01:00
parent a37b385c23
commit 24da70e338
117 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,85 @@
<?php
namespace Tests\Wallabag\CoreBundle\Command;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Tester\CommandTester;
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
use Wallabag\CoreBundle\Entity\User;
class ShowUserCommandTest extends WallabagCoreTestCase
{
public function testRunShowUserCommandWithoutUsername()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Not enough arguments');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:show');
$tester = new CommandTester($command);
$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',
]);
$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',
]);
$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();
$em = $client->getContainer()->get(EntityManagerInterface::class);
$this->logInAs('admin');
/** @var User $user */
$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',
]);
$this->assertStringContainsString('Display name: Bug boss', $tester->getDisplay());
}
}