. */ namespace App\Tests\Controller; use Symfony\Bundle\FrameworkBundle\KernelBrowser; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class ScanControllerTest extends WebTestCase { private ?KernelBrowser $client = null; public function setUp(): void { $this->client = static::createClient([], [ 'PHP_AUTH_USER' => 'admin', 'PHP_AUTH_PW' => 'test', ]); $this->client->disableReboot(); $this->client->catchExceptions(false); } public function testRedirectOnInputParameter(): void { $this->client->request('GET', '/en/scan?input=0000001'); $this->assertResponseRedirects('/en/part/1'); } public function testScanQRCode(): void { $this->client->request('GET', '/scan/part/1'); $this->assertResponseRedirects('/en/part/1'); } }