View source  
  <?php
namespace Drupal\views\Tests\Handler;
use Drupal\Core\Url;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\node\Entity\Node;
class FieldEntityOperationsTest extends HandlerTestBase {
  
  public static $testViews = array(
    'test_entity_operations',
  );
  
  public static $modules = array(
    'node',
    'language',
  );
  function setUp() {
    parent::setUp();
    
    $this
      ->drupalCreateContentType([
      'type' => 'article',
      'name' => 'Article',
    ]);
  }
  
  public function testEntityOperations() {
    
    ConfigurableLanguage::createFromLangcode('hu')
      ->save();
    ConfigurableLanguage::createFromLangcode('es')
      ->save();
    $this
      ->rebuildContainer();
    
    $entities = array();
    for ($i = 0; $i < 5; $i++) {
      $entity = Node::create([
        'title' => $this
          ->randomString(),
        'type' => 'article',
        'langcode' => $i % 2 === 0 ? 'hu' : 'en',
      ]);
      $entity
        ->save();
      $translation = $entity
        ->addTranslation('es');
      $translation
        ->set('title', $entity
        ->getTitle() . ' in Spanish');
      $translation
        ->save();
      $entities[$i] = $entity;
    }
    $admin_user = $this
      ->drupalCreateUser(array(
      'access administration pages',
      'administer nodes',
      'bypass node access',
    ));
    $this
      ->drupalLogin($this->rootUser);
    $this
      ->drupalGet('test-entity-operations');
    
    foreach ($entities as $entity) {
      
      foreach ($entity
        ->getTranslationLanguages() as $language) {
        $entity = $entity
          ->getTranslation($language
          ->getId());
        $operations = \Drupal::entityManager()
          ->getListBuilder('node')
          ->getOperations($entity);
        $this
          ->assertTrue(count($operations) > 0, 'There are operations.');
        foreach ($operations as $operation) {
          $expected_destination = Url::fromUri('internal:/test-entity-operations')
            ->toString();
          $result = $this
            ->xpath('//ul[contains(@class, dropbutton)]/li/a[@href=:path and text()=:title]', array(
            ':path' => $operation['url']
              ->toString() . '?destination=' . $expected_destination,
            ':title' => $operation['title'],
          ));
          $this
            ->assertEqual(count($result), 1, t('Found entity @operation link with destination parameter.', array(
            '@operation' => $operation['title'],
          )));
          
          $base_path = \Drupal::request()
            ->getBasePath();
          $parts = explode('/', str_replace($base_path, '', $operation['url']
            ->toString()));
          $expected_prefix = $language
            ->getId() != 'en' ? $language
            ->getId() : 'node';
          $this
            ->assertEqual($parts[1], $expected_prefix, 'Entity operation links to the correct language for the entity.');
        }
      }
    }
  }
}