RelationshipsTestBase.php

Same filename and directory in other branches
  1. 4.0.x tests/src/Kernel/RelationshipsTestBase.php

Namespace

Drupal\Tests\ctools\Kernel

File

tests/src/Kernel/RelationshipsTestBase.php

View source
<?php

namespace Drupal\Tests\ctools\Kernel;

use Drupal\ctools\Testing\EntityCreationTrait;
use Drupal\KernelTests\KernelTestBase;

/**
 *
 */
abstract class RelationshipsTestBase extends KernelTestBase {
  use EntityCreationTrait;
  
  /**
   * @var \Drupal\ctools\Plugin\RelationshipManagerInterface
   */
  protected $relationshipManager;
  
  /**
   * @var \Drupal\Core\Entity\EntityInterface[]
   */
  protected $entities = [];
  
  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'user',
    'system',
    'node',
    'field',
    'text',
    'filter',
    'ctools',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->installSchema('system', [
      'sequences',
    ]);
    $this->installEntitySchema('user');
    $this->installEntitySchema('node_type');
    $this->installEntitySchema('node');
    $this->installConfig('node');
    $page = $this->createEntity('node_type', [
      'type' => 'page',
      'name' => 'Page',
    ]);
    node_add_body_field($page);
    $article = $this->createEntity('node_type', [
      'type' => 'article',
      'name' => 'Article',
    ]);
    // Not adding the body field the articles so that we can perform a test.
    $foo = $this->createEntity('node_type', [
      'type' => 'foo',
      'name' => 'Foo',
    ]);
    node_add_body_field($foo);
    $this->relationshipManager = $this->container
      ->get('plugin.manager.ctools.relationship');
    $user = $this->createEntity('user', [
      'name' => 'test_user',
      'password' => 'password',
      'mail' => 'mail@test.com',
      'status' => 1,
    ]);
    $node1 = $this->createEntity('node', [
      'title' => 'Node 1',
      'type' => 'page',
      'uid' => $user->id(),
      'body' => 'This is a test',
    ]);
    $node2 = $this->createEntity('node', [
      'title' => 'Node 2',
      'type' => 'article',
      'uid' => $user->id(),
    ]);
    $node3 = $this->createEntity('node', [
      'title' => 'Node 3',
      'type' => 'foo',
      'uid' => $user->id(),
    ]);
    $node4 = $this->createEntity('node', [
      'title' => 'Node 4',
      'type' => 'foo',
    ])
      ->set('uid', NULL);
    $this->entities = [
      'user' => $user,
      'node1' => $node1,
      'node2' => $node2,
      'node3' => $node3,
      'node4' => $node4,
    ];
  }

}

Classes

Title Deprecated Summary
RelationshipsTestBase