You are here

EntityOperationsTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/system/src/Tests/Entity/EntityOperationsTest.php

File

core/modules/system/src/Tests/Entity/EntityOperationsTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Entity\EntityOperationsTest.
 */
namespace Drupal\system\Tests\Entity;

use Drupal\simpletest\WebTestBase;

/**
 * Tests that operations can be injected from the hook.
 *
 * @group Entity
 */
class EntityOperationsTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'entity_test',
  );
  protected function setUp() {
    parent::setUp();

    // Create and login user.
    $this
      ->drupalLogin($this
      ->drupalCreateUser(array(
      'administer permissions',
    )));
  }

  /**
   * Checks that hook_entity_operation_alter() can add an operation.
   *
   * @see entity_test_entity_operation_alter()
   */
  public function testEntityOperationAlter() {

    // Check that role listing contain our test_operation operation.
    $this
      ->drupalGet('admin/people/roles');
    $roles = user_roles();
    foreach ($roles as $role) {
      $this
        ->assertLinkByHref($role
        ->url() . '/test_operation');
      $this
        ->assertLink(format_string('Test Operation: @label', array(
        '@label' => $role
          ->label(),
      )));
    }
  }

  /**
   * {@inheritdoc}
   */
  protected function createRole(array $permissions, $rid = NULL, $name = NULL, $weight = NULL) {

    // WebTestBase::drupalCreateRole() by default uses random strings which may
    // include HTML entities for the entity label. Since in this test the entity
    // label is used to generate a link, and AssertContentTrait::assertLink() is
    // not designed to deal with links potentially containing HTML entities this
    // causes random failures. Use a random HTML safe string instead.
    $name = $name ?: $this
      ->randomMachineName();
    return parent::createRole($permissions, $rid, $name, $weight);
  }

}

Classes

Namesort descending Description
EntityOperationsTest Tests that operations can be injected from the hook.