ebs/tests/Integration/Command/EndMembershipCommandTest.php
Loïc Vernet 32d91e49a0
Symfony 6.4 update (#590)
* symfony 6.3: removed sensio/framework-extra-bundle

* symfony 6.3: update

* Symfony 6.3.1 update

* chore: composer up

* symfony 6.4 update

* cs: php-code-fixer update

* fix composer.lock

* add php-http required dependencies

* Fix Stan and CS

---------

Co-authored-by: Jérôme Tanghe <jerome.tanghe@les-tilleuls.coop>
2024-10-08 09:50:06 +02:00

44 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Tests\Integration\Command;
use App\Command\EndMembershipCommand;
use App\Test\ContainerRepositoryTrait;
use App\Test\ContainerTrait;
use Hautelook\AliceBundle\PhpUnit\RefreshDatabaseTrait;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Symfony\Component\Console\Tester\CommandTester;
final class EndMembershipCommandTest extends KernelTestCase
{
use ContainerTrait;
use ContainerRepositoryTrait;
use RefreshDatabaseTrait;
public function testExecute(): void
{
$kernel = self::bootKernel();
$this->fixDoctrineBug($kernel->getContainer());
$application = new Application($kernel);
$command = $application->find(EndMembershipCommand::CMD);
$commandTester = new CommandTester($command);
$commandTester->execute([]);
$commandTester->assertCommandIsSuccessful();
self::assertEmailCount(1);
self::assertNotificationCount(1);
$output = $commandTester->getDisplay();
self::assertStringContainsString(\sprintf('%d deletion', 1), $output);
// already deleted
$commandTester->execute([]);
$commandTester->assertCommandIsSuccessful();
self::assertEmailCount(1); // not +1
self::assertNotificationCount(1);
$output = $commandTester->getDisplay();
self::assertStringContainsString(\sprintf('%d deletion', 0), $output);
}
}