class LinkNotExistingInternalConstraintValidatorTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkNotExistingInternalConstraintValidatorTest.php \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidatorTest
@coversDefaultClass \Drupal\link\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidator @group Link
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidatorTest
Expanded class hierarchy of LinkNotExistingInternalConstraintValidatorTest
File
- core/
modules/ link/ tests/ src/ Unit/ Plugin/ Validation/ Constraint/ LinkNotExistingInternalConstraintValidatorTest.php, line 20 - Contains \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkNotExistingInternalConstraintValidatorTest.
Namespace
Drupal\Tests\link\Unit\Plugin\Validation\ConstraintView source
class LinkNotExistingInternalConstraintValidatorTest extends UnitTestCase {
/**
* @covers ::validate
* @dataProvider providerValidate
*/
public function testValidate($value, $valid) {
$context = $this
->getMock('Symfony\\Component\\Validator\\ExecutionContextInterface');
if ($valid) {
$context
->expects($this
->never())
->method('addViolation');
}
else {
$context
->expects($this
->once())
->method('addViolation');
}
$constraint = new LinkNotExistingInternalConstraint();
$validator = new LinkNotExistingInternalConstraintValidator();
$validator
->initialize($context);
$validator
->validate($value, $constraint);
}
/**
* Data provider for ::testValidate
*/
public function providerValidate() {
$data = [];
// External URL
$data[] = [
Url::fromUri('https://www.drupal.org'),
TRUE,
];
// Existing routed URL.
$url = Url::fromRoute('example.existing_route');
$url_generator = $this
->getMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$url_generator
->expects($this
->any())
->method('generateFromRoute')
->with('example.existing_route', [], [])
->willReturn('/example/existing');
$url
->setUrlGenerator($url_generator);
$data[] = [
$url,
TRUE,
];
// Not existing routed URL.
$url = Url::fromRoute('example.not_existing_route');
$url_generator = $this
->getMock('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$url_generator
->expects($this
->any())
->method('generateFromRoute')
->with('example.not_existing_route', [], [])
->willThrowException(new RouteNotFoundException());
$url
->setUrlGenerator($url_generator);
$data[] = [
$url,
FALSE,
];
foreach ($data as &$single_data) {
$link = $this
->getMock('Drupal\\link\\LinkItemInterface');
$link
->expects($this
->any())
->method('getUrl')
->willReturn($single_data[0]);
$single_data[0] = $link;
}
return $data;
}
/**
* @covers ::validate
*
* @see \Drupal\Core\Url::fromUri
*/
public function testValidateWithMalformedUri() {
$link = $this
->getMock('Drupal\\link\\LinkItemInterface');
$link
->expects($this
->any())
->method('getUrl')
->willThrowException(new \InvalidArgumentException());
$context = $this
->getMock('Symfony\\Component\\Validator\\ExecutionContextInterface');
$context
->expects($this
->never())
->method('addViolation');
$constraint = new LinkNotExistingInternalConstraint();
$validator = new LinkNotExistingInternalConstraintValidator();
$validator
->initialize($context);
$validator
->validate($link, $constraint);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LinkNotExistingInternalConstraintValidatorTest:: |
public | function | Data provider for ::testValidate | |
LinkNotExistingInternalConstraintValidatorTest:: |
public | function | @covers ::validate @dataProvider providerValidate | |
LinkNotExistingInternalConstraintValidatorTest:: |
public | function | @covers ::validate | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 259 |