EmailAttachmentCount.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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\Mime\Test\Constraint;
  11. use PHPUnit\Framework\Constraint\Constraint;
  12. use Symfony\Component\Mime\RawMessage;
  13. final class EmailAttachmentCount extends Constraint
  14. {
  15. private $expectedValue;
  16. private $transport;
  17. public function __construct(int $expectedValue, string $transport = null)
  18. {
  19. $this->expectedValue = $expectedValue;
  20. $this->transport = $transport;
  21. }
  22. /**
  23. * {@inheritdoc}
  24. */
  25. public function toString(): string
  26. {
  27. return sprintf('has sent "%d" attachment(s)', $this->expectedValue);
  28. }
  29. /**
  30. * @param RawMessage $message
  31. *
  32. * {@inheritdoc}
  33. */
  34. protected function matches($message): bool
  35. {
  36. if (RawMessage::class === \get_class($message) || Message::class === \get_class($message)) {
  37. throw new \LogicException('Unable to test a message attachment on a RawMessage or Message instance.');
  38. }
  39. return $this->expectedValue === \count($message->getAttachments());
  40. }
  41. /**
  42. * @param RawMessage $message
  43. *
  44. * {@inheritdoc}
  45. */
  46. protected function failureDescription($message): string
  47. {
  48. return 'the Email '.$this->toString();
  49. }
  50. }