class LinkAccessConstraintValidatorTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/link/tests/src/Unit/Plugin/Validation/Constraint/LinkAccessConstraintValidatorTest.php \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest
Tests the LinkAccessConstraintValidator validator.
@coversDefaultClass \Drupal\link\Plugin\Validation\Constraint\LinkAccessConstraintValidator @group validation
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest
Expanded class hierarchy of LinkAccessConstraintValidatorTest
File
- core/
modules/ link/ tests/ src/ Unit/ Plugin/ Validation/ Constraint/ LinkAccessConstraintValidatorTest.php, line 20 - Contains \Drupal\Tests\link\Unit\Plugin\Validation\Constraint\LinkAccessConstraintValidatorTest.
Namespace
Drupal\Tests\link\Unit\Plugin\Validation\ConstraintView source
class LinkAccessConstraintValidatorTest extends UnitTestCase {
/**
* Tests the \Drupal\link\Plugin\Validation\Constraint\LinkAccessConstraintValidator::validate()
* method.
*
* @param \Drupal\link\LinkItemInterface $value
* The link item.
* @param \Drupal\Core\Session\AccountProxyInterface $user
* The user account.
* @param bool $valid
* A boolean indicating if the combination is expected to be valid.
*
* @covers ::validate
* @dataProvider providerValidate
*/
public function testValidate($value, $user, $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 LinkAccessConstraint();
$validate = new LinkAccessConstraintValidator($user);
$validate
->initialize($context);
$validate
->validate($value, $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 function providerValidate() {
$data = [];
$cases = [
[
'may_link_any_page' => TRUE,
'url_access' => TRUE,
'valid' => TRUE,
],
[
'may_link_any_page' => TRUE,
'url_access' => FALSE,
'valid' => TRUE,
],
[
'may_link_any_page' => FALSE,
'url_access' => TRUE,
'valid' => TRUE,
],
[
'may_link_any_page' => FALSE,
'url_access' => FALSE,
'valid' => FALSE,
],
];
foreach ($cases as $case) {
// Mock a Url object that returns a boolean indicating user access.
$url = $this
->getMockBuilder('Drupal\\Core\\Url')
->disableOriginalConstructor()
->getMock();
$url
->expects($this
->once())
->method('access')
->willReturn($case['url_access']);
// Mock a link object that returns the URL object.
$link = $this
->getMock('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
->getMock('Drupal\\Core\\Session\\AccountProxyInterface');
$user
->expects($this
->any())
->method('hasPermission')
->with($this
->equalTo('link to any page'))
->willReturn($case['may_link_any_page']);
$data[] = [
$link,
$user,
$case['valid'],
];
}
return $data;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LinkAccessConstraintValidatorTest:: |
public | function | Data provider for LinkAccessConstraintValidator::validate(). | |
LinkAccessConstraintValidatorTest:: |
public | function | Tests the \Drupal\link\Plugin\Validation\Constraint\LinkAccessConstraintValidator::validate() method. | |
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 |