class ConditionAccessResolverTraitTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Condition/ConditionAccessResolverTraitTest.php \Drupal\Tests\Core\Condition\ConditionAccessResolverTraitTest
- 10 core/tests/Drupal/Tests/Core/Condition/ConditionAccessResolverTraitTest.php \Drupal\Tests\Core\Condition\ConditionAccessResolverTraitTest
@coversDefaultClass \Drupal\Core\Condition\ConditionAccessResolverTrait @group Condition
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\Condition\ConditionAccessResolverTraitTest
Expanded class hierarchy of ConditionAccessResolverTraitTest
File
- core/
tests/ Drupal/ Tests/ Core/ Condition/ ConditionAccessResolverTraitTest.php, line 17 - Contains \Drupal\Tests\Core\Condition\ConditionAccessResolverTraitTest.
Namespace
Drupal\Tests\Core\ConditionView source
class ConditionAccessResolverTraitTest extends UnitTestCase {
/**
* Tests the resolveConditions() method.
*
* @covers ::resolveConditions
*
* @dataProvider providerTestResolveConditions
*/
public function testResolveConditions($conditions, $logic, $expected) {
$trait_object = new TestConditionAccessResolverTrait();
$this
->assertEquals($expected, $trait_object
->resolveConditions($conditions, $logic));
}
public function providerTestResolveConditions() {
$data = [];
$condition_true = $this
->createMock('Drupal\\Core\\Condition\\ConditionInterface');
$condition_true
->expects($this
->any())
->method('execute')
->will($this
->returnValue(TRUE));
$condition_false = $this
->createMock('Drupal\\Core\\Condition\\ConditionInterface');
$condition_false
->expects($this
->any())
->method('execute')
->will($this
->returnValue(FALSE));
$condition_exception = $this
->createMock('Drupal\\Core\\Condition\\ConditionInterface');
$condition_exception
->expects($this
->any())
->method('execute')
->will($this
->throwException(new ContextException()));
$condition_exception
->expects($this
->atLeastOnce())
->method('isNegated')
->will($this
->returnValue(FALSE));
$condition_negated = $this
->createMock('Drupal\\Core\\Condition\\ConditionInterface');
$condition_negated
->expects($this
->any())
->method('execute')
->will($this
->throwException(new ContextException()));
$condition_negated
->expects($this
->atLeastOnce())
->method('isNegated')
->will($this
->returnValue(TRUE));
$conditions = [];
$data[] = [
$conditions,
'and',
TRUE,
];
$data[] = [
$conditions,
'or',
FALSE,
];
$conditions = [
$condition_false,
];
$data[] = [
$conditions,
'or',
FALSE,
];
$data[] = [
$conditions,
'and',
FALSE,
];
$conditions = [
$condition_true,
];
$data[] = [
$conditions,
'or',
TRUE,
];
$data[] = [
$conditions,
'and',
TRUE,
];
$conditions = [
$condition_true,
$condition_false,
];
$data[] = [
$conditions,
'or',
TRUE,
];
$data[] = [
$conditions,
'and',
FALSE,
];
$conditions = [
$condition_exception,
];
$data[] = [
$conditions,
'or',
FALSE,
];
$data[] = [
$conditions,
'and',
FALSE,
];
$conditions = [
$condition_true,
$condition_exception,
];
$data[] = [
$conditions,
'or',
TRUE,
];
$data[] = [
$conditions,
'and',
FALSE,
];
$conditions = [
$condition_exception,
$condition_true,
];
$data[] = [
$conditions,
'or',
TRUE,
];
$data[] = [
$conditions,
'and',
FALSE,
];
$conditions = [
$condition_false,
$condition_exception,
];
$data[] = [
$conditions,
'or',
FALSE,
];
$data[] = [
$conditions,
'and',
FALSE,
];
$conditions = [
$condition_exception,
$condition_false,
];
$data[] = [
$conditions,
'or',
FALSE,
];
$data[] = [
$conditions,
'and',
FALSE,
];
$conditions = [
$condition_negated,
];
$data[] = [
$conditions,
'or',
TRUE,
];
$data[] = [
$conditions,
'and',
TRUE,
];
$conditions = [
$condition_negated,
$condition_negated,
];
$data[] = [
$conditions,
'or',
TRUE,
];
$data[] = [
$conditions,
'and',
TRUE,
];
return $data;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConditionAccessResolverTraitTest:: |
public | function | ||
ConditionAccessResolverTraitTest:: |
public | function | Tests the resolveConditions() method. | |
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 |