QrCodeControllerTest.php 915 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /*
  3. * (c) Jeroen van den Enden <info@endroid.nl>
  4. *
  5. * This source file is subject to the MIT license that is bundled
  6. * with this source code in the file LICENSE.
  7. */
  8. namespace Endroid\QrCode\Tests\Bundle\Controller;
  9. use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
  10. class QrCodeControllerTest extends WebTestCase
  11. {
  12. /**
  13. * Tests if the QR code generation route returns a success response.
  14. */
  15. public function testCreateQrCode()
  16. {
  17. $client = static::createClient();
  18. $client->request('GET', $client->getContainer()->get('router')->generate('endroid_qrcode', [
  19. 'text' => 'Life is too short to be generating QR codes',
  20. 'extension' => 'png',
  21. 'size' => 150,
  22. 'label' => 'Dit is een label',
  23. 'label_font_size' => 16,
  24. ]));
  25. $this->assertEquals(200, $client->getResponse()->getStatusCode());
  26. }
  27. }