You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.1 KiB

3 years ago
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpFoundation\Test\Constraint;
  11. use PHPUnit\Framework\Constraint\Constraint;
  12. use Symfony\Component\HttpFoundation\Response;
  13. final class ResponseHasHeader extends Constraint
  14. {
  15. private $headerName;
  16. public function __construct(string $headerName)
  17. {
  18. $this->headerName = $headerName;
  19. }
  20. /**
  21. * {@inheritdoc}
  22. */
  23. public function toString(): string
  24. {
  25. return sprintf('has header "%s"', $this->headerName);
  26. }
  27. /**
  28. * @param Response $response
  29. *
  30. * {@inheritdoc}
  31. */
  32. protected function matches($response): bool
  33. {
  34. return $response->headers->has($this->headerName);
  35. }
  36. /**
  37. * @param Response $response
  38. *
  39. * {@inheritdoc}
  40. */
  41. protected function failureDescription($response): string
  42. {
  43. return 'the Response '.$this->toString();
  44. }
  45. }