Some checks failed
CI / Quality (push) Has been cancelled
PHPStan (level 6 + symfony extension) and PHP CS Fixer (Symfony + PHP83Migration ruleset) configs at framework/php/. composer.json exposes phpstan / cs:check / cs:fix / phpunit / quality scripts. PHPStan-clean across the bundle; cs:check is happy after auto-fix applied @Symfony idioms (yoda, leading-backslash JSON_*, blank-line before return). Test mocks consolidated into a HubSpy helper to keep PHPStan happy about by-ref captures. Skeleton's Makefile target `quality` chains `composer quality` (in framework/php/) with cmake's all_qmllint target. Local run is green — 11 tests / 32 assertions, no PHPStan errors, cs-fixer clean, qmllint emits advisory warnings only. Layout fix in skeleton's Main.qml: status-dot Rectangles inside RowLayout now use Layout.preferredWidth/Height instead of width/height to satisfy Quick.layout-positioning checks. .gitea/workflows/ci.yml replaces the placeholder with a real `quality` job: setup-php, composer install (cached), the four PHP checks, Qt 6 via install-qt-action (cached), QML module build, qmllint via the all_qmllint CMake target. Workflow exists from this commit onward even if a runner isn't provisioned yet. bridge:doctor lost the Publisher dependency since it was only used as a "service is wired" marker — the command being injectable already proves that. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
70 lines
2.4 KiB
PHP
70 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpQml\Bridge\Tests\Command;
|
|
|
|
use PhpQml\Bridge\Command\BridgeDoctorCommand;
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
#[CoversClass(BridgeDoctorCommand::class)]
|
|
final class BridgeDoctorCommandTest extends TestCase
|
|
{
|
|
public function testAllPassesWhenEnvIsFullyConfigured(): void
|
|
{
|
|
$command = new BridgeDoctorCommand(
|
|
bridgeToken: 'devtoken',
|
|
mercureUrl: 'http://127.0.0.1:8765/.well-known/mercure',
|
|
mercurePublisherKey: 'devkey',
|
|
mercureSubscriberKey: 'devkey',
|
|
);
|
|
$tester = new CommandTester($command);
|
|
|
|
$exit = $tester->execute([]);
|
|
|
|
self::assertSame(0, $exit);
|
|
$display = $tester->getDisplay();
|
|
self::assertStringContainsString('All checks passed', $display);
|
|
self::assertStringNotContainsString('FAIL', $display);
|
|
}
|
|
|
|
public function testFailsAndShowsHintsWhenEnvIsMissing(): void
|
|
{
|
|
$command = new BridgeDoctorCommand(
|
|
bridgeToken: '',
|
|
mercureUrl: '',
|
|
mercurePublisherKey: '',
|
|
mercureSubscriberKey: '',
|
|
);
|
|
$tester = new CommandTester($command);
|
|
|
|
$exit = $tester->execute([]);
|
|
|
|
self::assertSame(1, $exit);
|
|
$display = $tester->getDisplay();
|
|
self::assertStringContainsString('BRIDGE_TOKEN env set', $display);
|
|
self::assertStringContainsString('MERCURE_URL env set', $display);
|
|
self::assertStringContainsString('Set BRIDGE_TOKEN in .env.local', $display);
|
|
self::assertStringContainsString('Some checks failed', $display);
|
|
}
|
|
|
|
public function testConnectOptionFailsClosedAgainstAnUnreachableUrl(): void
|
|
{
|
|
$command = new BridgeDoctorCommand(
|
|
bridgeToken: 'devtoken',
|
|
mercureUrl: 'http://127.0.0.1:8765/.well-known/mercure',
|
|
mercurePublisherKey: 'devkey',
|
|
mercureSubscriberKey: 'devkey',
|
|
);
|
|
$tester = new CommandTester($command);
|
|
|
|
// Port 1 is reserved and refuses connections — the probe must fail.
|
|
$exit = $tester->execute(['--connect' => true, '--url' => 'http://127.0.0.1:1/healthz']);
|
|
|
|
self::assertSame(1, $exit);
|
|
self::assertStringContainsString('Backend probe failed', $tester->getDisplay());
|
|
}
|
|
}
|