123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace Symfony\Component\DomCrawler\Test\Constraint;
- use PHPUnit\Framework\Constraint\Constraint;
- use Symfony\Component\DomCrawler\Crawler;
- final class CrawlerSelectorAttributeValueSame extends Constraint
- {
- private $selector;
- private $attribute;
- private $expectedText;
- public function __construct(string $selector, string $attribute, string $expectedText)
- {
- $this->selector = $selector;
- $this->attribute = $attribute;
- $this->expectedText = $expectedText;
- }
-
- public function toString(): string
- {
- return sprintf('has a node matching selector "%s" with attribute "%s" of value "%s"', $this->selector, $this->attribute, $this->expectedText);
- }
-
- protected function matches($crawler): bool
- {
- $crawler = $crawler->filter($this->selector);
- if (!\count($crawler)) {
- return false;
- }
- return $this->expectedText === trim($crawler->getNode(0)->getAttribute($this->attribute));
- }
-
- protected function failureDescription($crawler): string
- {
- return 'the Crawler '.$this->toString();
- }
- }
|