protected function EntityReferenceFilterTrait::contentPrepare in Views Reference Filter 8
Prepares content for testing in views.
Nodes and Terms referenced via entityreference fields.
2 calls to EntityReferenceFilterTrait::contentPrepare()
- EntityReferenceFunctionalJavascriptTestBase::setUp in tests/
src/ FunctionalJavascript/ EntityReferenceFunctionalJavascriptTestBase.php - EntityReferenceFunctionalTestBase::setUp in tests/
src/ Functional/ EntityReferenceFunctionalTestBase.php
File
- tests/
src/ Traits/ EntityReferenceFilterTrait.php, line 21
Class
- EntityReferenceFilterTrait
- Provides common helper methods for Entityreference filter module tests.
Namespace
Drupal\Tests\entityreference_filter\TraitsCode
protected function contentPrepare() {
// Vocabulary 1.
/** @var \Drupal\taxonomy\Entity\Vocabulary $vocabulary */
$vocabulary = Vocabulary::create([
'name' => 'test1',
'vid' => 'test1',
]);
$vocabulary
->save();
// Id is 1.
$term1 = Term::create([
'name' => '1',
'vid' => $vocabulary
->id(),
]);
$term1
->save();
$term2 = Term::create([
'name' => '2',
'vid' => $vocabulary
->id(),
]);
$term2
->save();
// Vocabulary 2.
$vocabulary2 = Vocabulary::create([
'name' => 'test2',
'vid' => 'test2',
]);
$vocabulary2
->save();
$term3 = Term::create([
'name' => '3',
'vid' => $vocabulary2
->id(),
]);
$term3
->save();
$term4 = Term::create([
'name' => '4',
'vid' => $vocabulary2
->id(),
]);
$term4
->save();
$this
->drupalCreateContentType([
'type' => self::$nodeTypeArticle,
'name' => 'Article',
]);
// Create an entity reference field.
$field_name = 'field_taxonomy_reference';
$field_storage = FieldStorageConfig::create([
'field_name' => $field_name,
'entity_type' => 'node',
'translatable' => FALSE,
'settings' => [
'target_type' => 'taxonomy_term',
],
'type' => 'entity_reference',
'cardinality' => 1,
]);
$field_storage
->save();
$field = FieldConfig::create([
'field_storage' => $field_storage,
'entity_type' => 'node',
'bundle' => self::$nodeTypeArticle,
'settings' => [
'handler' => 'default',
'handler_settings' => [
// Restrict selection of terms to a single vocabulary.
'target_bundles' => [
$vocabulary
->id() => $vocabulary
->id(),
$vocabulary2
->id() => $vocabulary2
->id(),
],
],
],
]);
$field
->save();
// Create 10 nodes.
$node_values = [
'type' => self::$nodeTypeArticle,
];
for ($i = 0; $i < 10; $i++) {
$node_values['taxonomy_reference'] = [];
$node_values['taxonomy_reference'][] = [
'target_id' => $term1
->id(),
];
$this
->drupalCreateNode($node_values);
}
}