class LinkAccessConstraintValidatorTest
Same name and namespace in other branches
- 11.x core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest
- 10 core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest
- 9 core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest
- 8.9.x core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest
Tests the LinkAccessConstraintValidator validator.
Attributes
#[CoversMethod(LinkAccessConstraintValidator::class, 'validate')]
#[Group('validation')]
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\DrupalTestCaseTrait, \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of LinkAccessConstraintValidatorTest
File
-
core/
modules/ link/ tests/ src/ Unit/ Plugin/ Validation/ Constraint/ LinkAccessConstraintValidatorTest.php, line 22
Namespace
Drupal\Tests\link\Unit\Plugin\Validation\ConstraintView source
class LinkAccessConstraintValidatorTest extends UnitTestCase {
/**
* Tests the access validation constraint for links.
*/
public function testValidate(bool $mayLinkAnyPage, bool $urlAccess, bool $valid) : void {
// Mock a Url object that returns a boolean indicating user access.
$url = $this->getMockBuilder('Drupal\\Core\\Url')
->disableOriginalConstructor()
->getMock();
if ($mayLinkAnyPage) {
$url->expects($this->never())
->method('access');
}
else {
$url->expects($this->once())
->method('access')
->willReturn($urlAccess);
}
// Mock a link object that returns the URL object.
$link = $this->createMock('Drupal\\link\\LinkItemInterface');
$link->expects($this->any())
->method('getUrl')
->willReturn($url);
// Mock a user object that returns a boolean indicating user access to all
// links.
$user = $this->createMock('Drupal\\Core\\Session\\AccountProxyInterface');
$user->expects($this->any())
->method('hasPermission')
->with($this->equalTo('link to any page'))
->willReturn($mayLinkAnyPage);
$context = $this->createMock(ExecutionContextInterface::class);
$constraintViolationBuilder = $this->createMock(ConstraintViolationBuilderInterface::class);
$constraintViolationBuilder->method('atPath')
->with('uri')
->willReturn($constraintViolationBuilder);
if ($valid) {
$context->expects($this->never())
->method('buildViolation');
}
else {
$context->expects($this->once())
->method('buildViolation')
->willReturn($constraintViolationBuilder);
}
$constraint = new LinkAccessConstraint();
$validate = new LinkAccessConstraintValidator($user);
$validate->initialize($context);
$validate->validate($link, $constraint);
}
/**
* Data provider for LinkAccessConstraintValidator::validate().
*
* @return array
* An array of tests, matching the parameter inputs for testValidate.
*
* @see \Drupal\Tests\link\LinkAccessConstraintValidatorTest::validate()
*/
public static function providerValidate() : \Generator {
yield [
TRUE,
TRUE,
TRUE,
];
yield [
TRUE,
FALSE,
TRUE,
];
yield [
FALSE,
TRUE,
TRUE,
];
yield [
FALSE,
FALSE,
FALSE,
];
}
/**
* Tests validating a value that isn't a LinkItemInterface.
*/
public function testUnexpectedValue() : void {
$this->expectException(UnexpectedValueException::class);
$user = $this->createMock(AccountProxyInterface::class);
$validator = new LinkAccessConstraintValidator($user);
$context = $this->createMock(ExecutionContextInterface::class);
$validator->initialize($context);
$constraint = new LinkAccessConstraint();
$validator->validate('bad value', $constraint);
}
/**
* Tests validating an empty Link field.
*/
public function testEmptyField() : void {
$link = $this->createMock(LinkItemInterface::class);
$link->expects($this->once())
->method('isEmpty')
->willReturn(TRUE);
$link->expects($this->never())
->method('getUrl');
$user = $this->createMock(AccountProxyInterface::class);
$validator = new LinkAccessConstraintValidator($user);
$context = $this->createMock(ExecutionContextInterface::class);
$validator->initialize($context);
$constraint = new LinkAccessConstraint();
$validator->validate($link, $constraint);
}
}
Members
| Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overrides |
|---|---|---|---|---|---|
| DrupalTestCaseTrait::checkErrorHandlerOnTearDown | public | function | Checks the test error handler after test execution. | ||
| ExpectDeprecationTrait::expectDeprecation | Deprecated | public | function | Adds an expected deprecation. | |
| ExpectDeprecationTrait::regularExpressionForFormatDescription | private | function | |||
| LinkAccessConstraintValidatorTest::providerValidate | public static | function | Data provider for LinkAccessConstraintValidator::validate(). | ||
| LinkAccessConstraintValidatorTest::testEmptyField | public | function | Tests validating an empty Link field. | ||
| LinkAccessConstraintValidatorTest::testUnexpectedValue | public | function | Tests validating a value that isn't a LinkItemInterface. | ||
| LinkAccessConstraintValidatorTest::testValidate | public | function | Tests the access validation constraint for links. | ||
| RandomGeneratorTrait::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | ||
| RandomGeneratorTrait::randomMachineName | protected | function | Generates a unique random string containing letters and numbers. | ||
| RandomGeneratorTrait::randomObject | public | function | Generates a random PHP object. | ||
| RandomGeneratorTrait::randomString | public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | ||
| UnitTestCase::$root | protected | property | The app root. | ||
| UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | ||
| UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | ||
| UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | ||
| UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | ||
| UnitTestCase::setDebugDumpHandler | public static | function | Registers the dumper CLI handler when the DebugDump extension is enabled. | ||
| UnitTestCase::setUp | protected | function | 366 | ||
| UnitTestCase::setupMockIterator | protected | function | Set up a traversable class mock to return specific items when iterated. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.