createUser() drew a random mobile and recovered from a collision by catching the unique-constraint violation and calling resetManager(). That hands back a brand-new EntityManager, which detaches every entity the running test had built so far; its next flush died with "Multiple non-persisted new entities were found", always in a different test and never reproducible in isolation. The number is now checked before the insert, so the collision never reaches the database and the manager stays open. testParentIdAddsNoQueryPerSpecialty counted queries on the first request of each size, so one-shot per-process caches — site config, subscription plan, Doctrine metadata — landed inside the count or not depending on which tests had run before it. Both requests are now warmed first; the assertion measures steady-state growth, which is what it was always about. The 23 PHPUnit notices were all one complaint: doubles created with createMock() that never had an expectation. The ones that only stub return values became createStub(); in SmsServiceLookupOnlyTest the provider and the bus got the expectations they were missing, since "dispatch does not touch the provider" and "sendNow does not enqueue" are exactly what that suite is there to prove. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
26 lines
735 B
PHP
26 lines
735 B
PHP
<?php
|
|
|
|
namespace App\Tests\Payment;
|
|
|
|
use App\Config\Repository\SiteConfigRepository;
|
|
use App\Payment\Gateway\MellatGateway;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psr\Log\LoggerInterface;
|
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
|
|
|
class MellatGatewayTest extends TestCase
|
|
{
|
|
public function testConstructorAcceptsNullCredentials(): void
|
|
{
|
|
$httpClient = $this->createStub(HttpClientInterface::class);
|
|
$configRepo = $this->createStub(SiteConfigRepository::class);
|
|
$logger = $this->createStub(LoggerInterface::class);
|
|
|
|
$configRepo->method('get')->willReturn(null);
|
|
|
|
$gateway = new MellatGateway($httpClient, $configRepo, $logger, null, null, null);
|
|
|
|
$this->assertFalse($gateway->isConfigured());
|
|
}
|
|
}
|