Skip to content

[AssetMapper] Adding 'Everything up to date' message #59178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$packagesUpdateInfos = $this->updateChecker->getAvailableUpdates($packages);
$packagesUpdateInfos = array_filter($packagesUpdateInfos, fn ($packageUpdateInfo) => $packageUpdateInfo->hasUpdate());
if (0 === \count($packagesUpdateInfos)) {
if ('json' === $input->getOption('format')) {
$io->writeln('[]');
} else {
$io->writeln('No updates found.');
}

return Command::SUCCESS;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\AssetMapper\Tests\ImportMap;

use PHPUnit\Framework\TestCase;
use Symfony\Component\AssetMapper\Command\ImportMapOutdatedCommand;
use Symfony\Component\AssetMapper\ImportMap\ImportMapUpdateChecker;
use Symfony\Component\Console\Tester\CommandTester;

class ImportMapOutdatedCommandTest extends TestCase
{
/**
* @dataProvider provideNoOutdatedPackageCases
*/
public function testCommandWhenNoOutdatedPackages(string $display, ?string $format = null)
{
$updateChecker = $this->createMock(ImportMapUpdateChecker::class);
$command = new ImportMapOutdatedCommand($updateChecker);

$commandTester = new CommandTester($command);
$commandTester->execute(\is_string($format) ? ['--format' => $format] : []);

$commandTester->assertCommandIsSuccessful();
$this->assertEquals($display, trim($commandTester->getDisplay(true)));
}

/**
* @return iterable<array{string, string|null}>
*/
public static function provideNoOutdatedPackageCases(): iterable
{
yield 'default' => ['No updates found.', null];
yield 'txt' => ['No updates found.', 'txt'];
yield 'json' => ['[]', 'json'];
}
}