This repository has been archived on 2025-01-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/web/modules/contrib/token/tests/src/Kernel/EntityTest.php

107 lines
3.4 KiB
PHP
Raw Normal View History

2017-05-22 15:12:47 +01:00
<?php
namespace Drupal\Tests\token\Kernel;
use Drupal\node\Entity\Node;
2018-11-23 12:29:20 +00:00
use Drupal\taxonomy\Entity\Term;
2017-05-22 15:12:47 +01:00
use Drupal\taxonomy\Entity\Vocabulary;
use Drupal\taxonomy\VocabularyInterface;
/**
* Tests entity tokens.
*
* @group token
*/
class EntityTest extends KernelTestBase {
/**
* Modules to enable.
*
* @var array
*/
public static $modules = ['node', 'taxonomy', 'text'];
/**
* {@inheritdoc}
*/
public function setUp() {
parent::setUp();
// Create the default tags vocabulary.
$vocabulary = Vocabulary::create([
'name' => 'Tags',
'vid' => 'tags',
]);
$vocabulary->save();
$this->installEntitySchema('taxonomy_term');
$this->installEntitySchema('user');
$this->installEntitySchema('node');
$this->vocab = $vocabulary;
}
function testEntityMapping() {
/** @var \Drupal\token\TokenEntityMapperInterface $mapper */
$mapper = \Drupal::service('token.entity_mapper');
$this->assertIdentical($mapper->getEntityTypeForTokenType('node'), 'node');
$this->assertIdentical($mapper->getEntityTypeForTokenType('term'), 'taxonomy_term');
$this->assertIdentical($mapper->getEntityTypeForTokenType('vocabulary'), 'taxonomy_vocabulary');
$this->assertIdentical($mapper->getEntityTypeForTokenType('invalid'), FALSE);
$this->assertIdentical($mapper->getEntityTypeForTokenType('invalid', TRUE), 'invalid');
$this->assertIdentical($mapper->getTokenTypeForEntityType('node'), 'node');
$this->assertIdentical($mapper->getTokenTypeForEntityType('taxonomy_term'), 'term');
$this->assertIdentical($mapper->getTokenTypeForEntityType('taxonomy_vocabulary'), 'vocabulary');
$this->assertIdentical($mapper->getTokenTypeForEntityType('invalid'), FALSE);
$this->assertIdentical($mapper->getTokenTypeForEntityType('invalid', TRUE), 'invalid');
2018-11-23 12:29:20 +00:00
// Test that when we send the mis-matched entity type into
// Drupal\Core\Utility\Token::replace() that we still get the tokens
// replaced.
$vocabulary = Vocabulary::load('tags');
2017-05-22 15:12:47 +01:00
$term = $this->addTerm($vocabulary);
2018-11-23 12:29:20 +00:00
$this->assertIdentical(\Drupal::token()->replace('[vocabulary:name]', ['taxonomy_vocabulary' => $vocabulary]), $vocabulary->label());
$this->assertIdentical(\Drupal::token()->replace('[term:name][term:vocabulary:name]', ['taxonomy_term' => $term]), $term->label() . $vocabulary->label());
2017-05-22 15:12:47 +01:00
}
2018-11-23 12:29:20 +00:00
function addTerm(VocabularyInterface $vocabulary, array $term = []) {
$term += [
'name' => mb_strtolower($this->randomMachineName(5)),
2017-05-22 15:12:47 +01:00
'vid' => $vocabulary->id(),
2018-11-23 12:29:20 +00:00
];
$term = Term::create($term);
2017-05-22 15:12:47 +01:00
$term->save();
return $term;
}
/**
* Test the [entity:original:*] tokens.
*/
function testEntityOriginal() {
$node = Node::create(['type' => 'page', 'title' => 'Original title']);
$node->save();
2018-11-23 12:29:20 +00:00
$tokens = [
2017-05-22 15:12:47 +01:00
'nid' => $node->id(),
'title' => 'Original title',
'original' => NULL,
'original:nid' => NULL,
2018-11-23 12:29:20 +00:00
];
$this->assertTokens('node', ['node' => $node], $tokens);
2017-05-22 15:12:47 +01:00
// Emulate the original entity property that would be available from
// node_save() and change the title for the node.
2018-11-23 12:29:20 +00:00
$node->original = \Drupal::entityTypeManager()->getStorage('node')->loadUnchanged($node->id());
2017-05-22 15:12:47 +01:00
$node->title = 'New title';
2018-11-23 12:29:20 +00:00
$tokens = [
2017-05-22 15:12:47 +01:00
'nid' => $node->id(),
'title' => 'New title',
'original' => 'Original title',
'original:nid' => $node->id(),
2018-11-23 12:29:20 +00:00
];
$this->assertTokens('node', ['node' => $node], $tokens);
2017-05-22 15:12:47 +01:00
}
2018-11-23 12:29:20 +00:00
2017-05-22 15:12:47 +01:00
}