View source
<?php
namespace Drupal\system\Tests\Action;
use Drupal\simpletest\KernelTestBase;
use Drupal\Core\Action\ActionInterface;
use Drupal\user\RoleInterface;
class ActionUnitTest extends KernelTestBase {
public static $modules = array(
'system',
'field',
'user',
'action_test',
);
protected $actionManager;
protected function setUp() {
parent::setUp();
$this->actionManager = $this->container
->get('plugin.manager.action');
$this
->installEntitySchema('user');
$this
->installSchema('system', array(
'sequences',
));
}
public function testOperations() {
$definitions = $this->actionManager
->getDefinitions();
$this
->assertTrue(count($definitions) > 1, 'Action definitions are found.');
$this
->assertTrue(!empty($definitions['action_test_no_type']), 'The test action is among the definitions found.');
$definition = $this->actionManager
->getDefinition('action_test_no_type');
$this
->assertTrue(!empty($definition), 'The test action definition is found.');
$definitions = $this->actionManager
->getDefinitionsByType('user');
$this
->assertTrue(empty($definitions['action_test_no_type']), 'An action with no type is not found.');
$action = $this->actionManager
->createInstance('action_test_save_entity');
$this
->assertTrue($action instanceof ActionInterface, 'The action implements the correct interface.');
$name = $this
->randomMachineName();
$user_storage = $this->container
->get('entity.manager')
->getStorage('user');
$account = $user_storage
->create(array(
'name' => $name,
'bundle' => 'user',
));
$loaded_accounts = $user_storage
->loadMultiple();
$this
->assertEqual(count($loaded_accounts), 0);
$action
->execute($account);
$loaded_accounts = $user_storage
->loadMultiple();
$this
->assertEqual(count($loaded_accounts), 1);
$account = reset($loaded_accounts);
$this
->assertEqual($name, $account
->label());
}
public function testDependencies() {
$action = entity_create('action', array(
'id' => 'user_add_role_action.' . RoleInterface::ANONYMOUS_ID,
'type' => 'user',
'label' => t('Add the anonymous role to the selected users'),
'configuration' => array(
'rid' => RoleInterface::ANONYMOUS_ID,
),
'plugin' => 'user_add_role_action',
));
$action
->save();
$expected = array(
'config' => array(
'user.role.' . RoleInterface::ANONYMOUS_ID,
),
'module' => array(
'user',
),
);
$this
->assertIdentical($expected, $action
->calculateDependencies()
->getDependencies());
}
}