class ModerationInformationTest in Workbench Moderation 8.2
Same name and namespace in other branches
- 8 tests/src/Unit/ModerationInformationTest.php \Drupal\Tests\workbench_moderation\Unit\ModerationInformationTest
@coversDefaultClass \Drupal\workbench_moderation\ModerationInformation @group workbench_moderation
Hierarchy
- class \Drupal\Tests\workbench_moderation\Unit\ModerationInformationTest extends \Drupal\Tests\workbench_moderation\Unit\PHPUnit_Framework_TestCase
Expanded class hierarchy of ModerationInformationTest
File
- tests/
src/ Unit/ ModerationInformationTest.php, line 19
Namespace
Drupal\Tests\workbench_moderation\UnitView source
class ModerationInformationTest extends \PHPUnit_Framework_TestCase {
/**
* Builds a mock user.
*
* @return AccountInterface
*/
protected function getUser() {
return $this
->prophesize(AccountInterface::class)
->reveal();
}
/**
* Returns a mock Entity Type Manager.
*
* @param \Drupal\Core\Entity\EntityStorageInterface $entity_bundle_storage
*
* @return EntityTypeManagerInterface
*/
protected function getEntityTypeManager(EntityStorageInterface $entity_bundle_storage) {
$entity_type_manager = $this
->prophesize(EntityTypeManagerInterface::class);
$entity_type_manager
->getStorage('entity_test_bundle')
->willReturn($entity_bundle_storage);
return $entity_type_manager
->reveal();
}
public function setupModerationEntityManager($status) {
$bundle = $this
->prophesize(ConfigEntityInterface::class);
$bundle
->getThirdPartySetting('workbench_moderation', 'enabled', FALSE)
->willReturn($status);
$entity_storage = $this
->prophesize(EntityStorageInterface::class);
$entity_storage
->load('test_bundle')
->willReturn($bundle
->reveal());
return $this
->getEntityTypeManager($entity_storage
->reveal());
}
/**
* @dataProvider providerBoolean
* @covers ::isModeratableEntity
*/
public function testIsModeratableEntity($status) {
$moderation_information = new ModerationInformation($this
->setupModerationEntityManager($status), $this
->getUser());
$entity_type = new ContentEntityType([
'id' => 'test_entity_type',
'bundle_entity_type' => 'entity_test_bundle',
]);
$entity = $this
->prophesize(ContentEntityInterface::class);
$entity
->getEntityType()
->willReturn($entity_type);
$entity
->bundle()
->willReturn('test_bundle');
$this
->assertEquals($status, $moderation_information
->isModeratableEntity($entity
->reveal()));
}
/**
* @covers ::isModeratableEntity
*/
public function testIsModeratableEntityForNonBundleEntityType() {
$entity_type = new ContentEntityType([
'id' => 'test_entity_type',
]);
$entity = $this
->prophesize(ContentEntityInterface::class);
$entity
->getEntityType()
->willReturn($entity_type);
$entity
->bundle()
->willReturn('test_entity_type');
$entity_storage = $this
->prophesize(EntityStorageInterface::class);
$entity_type_manager = $this
->getEntityTypeManager($entity_storage
->reveal());
$moderation_information = new ModerationInformation($entity_type_manager, $this
->getUser());
$this
->assertEquals(FALSE, $moderation_information
->isModeratableEntity($entity
->reveal()));
}
/**
* @dataProvider providerBoolean
* @covers ::isModeratableBundle
*/
public function testIsModeratableBundle($status) {
$entity_type = new ContentEntityType([
'id' => 'test_entity_type',
'bundle_entity_type' => 'entity_test_bundle',
]);
$moderation_information = new ModerationInformation($this
->setupModerationEntityManager($status), $this
->getUser());
$this
->assertEquals($status, $moderation_information
->isModeratableBundle($entity_type, 'test_bundle'));
}
/**
* @dataProvider providerBoolean
* @covers ::isModeratedEntityForm
*/
public function testIsModeratedEntityForm($status) {
$entity_type = new ContentEntityType([
'id' => 'test_entity_type',
'bundle_entity_type' => 'entity_test_bundle',
]);
$entity = $this
->prophesize(ContentEntityInterface::class);
$entity
->getEntityType()
->willReturn($entity_type);
$entity
->bundle()
->willReturn('test_bundle');
$form = $this
->prophesize(ContentEntityFormInterface::class);
$form
->getEntity()
->willReturn($entity);
$moderation_information = new ModerationInformation($this
->setupModerationEntityManager($status), $this
->getUser());
$this
->assertEquals($status, $moderation_information
->isModeratedEntityForm($form
->reveal()));
}
public function testIsModeratedEntityFormWithNonContentEntityForm() {
$form = $this
->prophesize(EntityFormInterface::class);
$moderation_information = new ModerationInformation($this
->setupModerationEntityManager(TRUE), $this
->getUser());
$this
->assertFalse($moderation_information
->isModeratedEntityForm($form
->reveal()));
}
public function providerBoolean() {
return [
[
FALSE,
],
[
TRUE,
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ModerationInformationTest:: |
protected | function | Returns a mock Entity Type Manager. | |
ModerationInformationTest:: |
protected | function | Builds a mock user. | |
ModerationInformationTest:: |
public | function | ||
ModerationInformationTest:: |
public | function | ||
ModerationInformationTest:: |
public | function | @dataProvider providerBoolean @covers ::isModeratableBundle | |
ModerationInformationTest:: |
public | function | @dataProvider providerBoolean @covers ::isModeratableEntity | |
ModerationInformationTest:: |
public | function | @covers ::isModeratableEntity | |
ModerationInformationTest:: |
public | function | @dataProvider providerBoolean @covers ::isModeratedEntityForm | |
ModerationInformationTest:: |
public | function |