class ConstraintsTest in Media entity Pinterest 8
Same name and namespace in other branches
- 8.2 tests/src/Unit/ConstraintsTest.php \Drupal\Tests\media_entity_pinterest\Unit\ConstraintsTest
Tests media_entity_pinterest constrains.
@group media_entity
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\media_entity_pinterest\Unit\ConstraintsTest
Expanded class hierarchy of ConstraintsTest
File
- tests/
src/ Unit/ ConstraintsTest.php, line 16
Namespace
Drupal\Tests\media_entity_pinterest\UnitView source
class ConstraintsTest extends UnitTestCase {
/**
* Tests PinEmbedCode constraints.
*
* @covers \Drupal\media_entity_pinterest\Plugin\Validation\Constraint\PinEmbedCodeConstraint
* @covers \Drupal\media_entity_pinterest\Plugin\Validation\Constraint\PinEmbedCodeConstraintValidator
*
* @dataProvider embedCodeProvider
*/
public function testPinEmbedCodeConstraint($embed_code, $expected_violation_count) {
// Check message in constraint.
$constraint = new PinEmbedCodeConstraint();
$this
->assertEquals(addslashes('Not valid Pin URL/embed code.'), addslashes($constraint->message), 'Correct constraint message found.');
$execution_context = $this
->getMockBuilder('\\Drupal\\Core\\TypedData\\Validation\\ExecutionContext')
->disableOriginalConstructor()
->getMock();
if ($expected_violation_count) {
$execution_context
->expects($this
->exactly($expected_violation_count))
->method('addViolation')
->with($constraint->message);
}
else {
$execution_context
->expects($this
->exactly($expected_violation_count))
->method('addViolation');
}
$validator = new PinEmbedCodeConstraintValidator();
$validator
->initialize($execution_context);
$definition = $this
->getMock(ComplexDataDefinitionInterface::class);
$definition
->method('getPropertyDefinitions')
->willReturn([]);
$data = new StringLongItem($definition);
$data
->set('value', $embed_code);
$validator
->validate($data, $constraint);
}
/**
* Provides test data for testPinEmbedCodeConstraint().
*/
public function embedCodeProvider() {
return [
'valid URL' => [
'https://www.pinterest.com/pin/424605071105031218/',
0,
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConstraintsTest:: |
public | function | Provides test data for testPinEmbedCodeConstraint(). | |
ConstraintsTest:: |
public | function | Tests PinEmbedCode constraints. | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed 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 | 340 |