You are here

class ExportTest in Acquia Content Hub 8.2

Tests entity exports.

@group orca_ignore

@package Drupal\Tests\acquia_contenthub\Kernel

Hierarchy

Expanded class hierarchy of ExportTest

File

tests/src/Kernel/ExportTest.php, line 33

Namespace

Drupal\Tests\acquia_contenthub\Kernel
View source
class ExportTest extends EntityKernelTestBase {
  use DrupalVersion;

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'user',
    'image',
    'file',
    'node',
    'field',
    'taxonomy',
    'depcalc',
    'acquia_contenthub',
    'acquia_contenthub_publisher',
  ];

  /**
   * Acquia ContentHub export queue.
   *
   * @var \Drupal\acquia_contenthub_publisher\ContentHubExportQueue
   */
  protected $contentHubQueue;

  /**
   * Queue.
   *
   * @var \Drupal\Core\Queue\QueueInterface
   */
  protected $queue;

  /**
   * Queue worker.
   *
   * @var \Drupal\Core\Queue\QueueWorkerInterface
   */
  protected $queueWorker;

  /**
   * Stream Wrapper Manager service.
   *
   * @var \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface
   */
  protected $streamWrapperManager;

  /**
   * Content Hub Publisher Tracker service.
   *
   * @var \Drupal\acquia_contenthub_publisher\PublisherTracker
   */
  protected $publisherTracker;

  /**
   * CDF Object.
   *
   * @var \Acquia\ContentHubClient\CDF\CDFObject
   */
  protected $cdfObject;

  /**
   * Temporary storage for node type UUIDs.
   *
   * @var array
   */
  protected $nodeTypeUuids = [];

  /**
   * Temporary storage for taxonomy vocabulary UUIDs.
   *
   * @var array
   */
  protected $vocabularyUuids = [];

  /**
   * Temporary storage for taxonomy term UUIDs.
   *
   * @var array
   */
  protected $termUuids = [];

  /**
   * Temporary storage for field UUIDs.
   *
   * @var array
   */
  protected $fieldUuids = [];

  /**
   * Temporary storage for user UUIDs.
   *
   * @var array
   */
  protected $userUuids = [];

  /**
   * {@inheritdoc}
   *
   * @throws \Exception
   */
  public function setUp() {
    if (version_compare(\Drupal::VERSION, '9.0', '>=')) {
      static::$modules[] = 'path_alias';
    }
    parent::setUp();
    if (version_compare(\Drupal::VERSION, '8.8.0', '>=')) {
      $this
        ->installEntitySchema('path_alias');
    }
    $this
      ->installEntitySchema('taxonomy_term');
    $this
      ->installSchema('acquia_contenthub_publisher', [
      'acquia_contenthub_publisher_export_tracking',
    ]);
    $this
      ->installSchema('node', [
      'node_access',
    ]);
    $this
      ->installEntitySchema('file');
    $this
      ->installSchema('file', [
      'file_usage',
    ]);
    $this
      ->installSchema('user', [
      'users_data',
    ]);
    $this
      ->installConfig([
      'acquia_contenthub',
      'acquia_contenthub_publisher',
      'system',
      'field',
      'node',
      'file',
      'user',
      'taxonomy',
    ]);
    $origin_uuid = '00000000-0000-0001-0000-123456789123';
    $configFactory = $this->container
      ->get('config.factory');
    $config = $configFactory
      ->getEditable('acquia_contenthub.admin_settings');
    $config
      ->set('origin', $origin_uuid);
    $config
      ->set('send_contenthub_updates', TRUE);
    $config
      ->save();

    // Acquia ContentHub export queue service.
    $this->contentHubQueue = $this->container
      ->get('acquia_contenthub_publisher.acquia_contenthub_export_queue');
    $cdf_object = $this
      ->getMockBuilder(CDFObjectInterface::class)
      ->disableOriginalConstructor()
      ->getMock();
    $cdf_object
      ->method('getOrigin')
      ->willReturn($origin_uuid);

    // Mock Acquia ContentHub Client.
    $response = $this
      ->getMockBuilder('\\Psr\\Http\\Message\\ResponseInterface')
      ->disableOriginalConstructor()
      ->getMock();
    $response
      ->method('getStatusCode')
      ->willReturn(202);
    $contenthub_client = $this
      ->getMockBuilder('\\Acquia\\ContentHubClient\\ContentHubClient')
      ->disableOriginalConstructor()
      ->getMock();
    $contenthub_client
      ->method('putEntities')
      ->with($this
      ->captureArg($this->cdfObject))
      ->willReturn($response);
    $contenthub_client
      ->method('deleteEntity')
      ->willReturn($response);
    $contenthub_client
      ->method('getEntity')
      ->willReturn($cdf_object);
    $contenthub_client_factory = $this
      ->getMockBuilder('\\Drupal\\acquia_contenthub\\Client\\ClientFactory')
      ->disableOriginalConstructor()
      ->getMock();
    $contenthub_client_factory
      ->method('isConfigurationSet')
      ->willReturn(TRUE);
    $contenthub_client_factory
      ->method('getClient')
      ->willReturn($contenthub_client);
    $this->container
      ->set('acquia_contenthub.client.factory', $contenthub_client_factory);
    $contenthub_settings = $this
      ->getMockBuilder('\\Acquia\\ContentHubClient\\Settings')
      ->disableOriginalConstructor()
      ->getMock();
    $contenthub_settings
      ->method('getUuid')
      ->willReturn($origin_uuid);
    $contenthub_client_factory
      ->method('getSettings')
      ->willReturn($contenthub_settings);
    $contenthub_client
      ->method('getSettings')
      ->willReturn($contenthub_settings);
    $common = $this
      ->getMockBuilder(ContentHubCommonActions::class)
      ->setConstructorArgs([
      $this->container
        ->get('event_dispatcher'),
      $this->container
        ->get('entity.cdf.serializer'),
      $this->container
        ->get('entity.dependency.calculator'),
      $this->container
        ->get('acquia_contenthub.client.factory'),
      $this->container
        ->get('logger.factory'),
      $this->container
        ->get('config.factory'),
    ])
      ->setMethods([
      'getUpdateDbStatus',
    ])
      ->getMock();
    $this->container
      ->set('acquia_contenthub_common_actions', $common);

    // Setup queue.
    $queue_factory = $this->container
      ->get('queue');
    $queue_worker_manager = $this->container
      ->get('plugin.manager.queue_worker');
    $name = 'acquia_contenthub_publish_export';
    $this->queueWorker = $queue_worker_manager
      ->createInstance($name);
    $this->queue = $queue_factory
      ->get($name);

    // Add stream wrapper manager service.
    $this->streamWrapperManager = \Drupal::service('stream_wrapper_manager');

    // Add Content Hub tracker service.
    $this->publisherTracker = \Drupal::service('acquia_contenthub_publisher.tracker');
  }

  /**
   * Captures $objects argument value of "putEntities" method.
   *
   * @param mixed $argument
   *   A method's argument.
   *
   * @return \PHPUnit\Framework\Constraint\Callback
   *   Callback.
   *
   * @see \Drupal\acquia_contenthub_publisher\Plugin\QueueWorker\ContentHubExportQueueWorker::processItem()
   */
  protected function captureArg(&$argument) {
    return $this
      ->callback(function ($argument_to_mock) use (&$argument) {
      $argument = $argument_to_mock;
      return TRUE;
    });
  }

  /**
   * Tests Acquia ContentHub export queue.
   *
   * @see ContentHubExportQueue
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  public function testQueue() {

    // Initial queue state and "purge" operation.
    $expected = 0;

    // There may or may not be items in queue,
    // so asserting queue count >= 0 makes more sense.
    $this
      ->assertTrue($this->contentHubQueue
      ->getQueueCount() >= $expected);
    $this->contentHubQueue
      ->purgeQueues();
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Node types.
    $this
      ->createNodeTypes($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Nodes.
    [
      $nid1,
      $nid2,
    ] = $this
      ->createNodes($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Users.
    [
      $uid1,
    ] = $this
      ->createUsers($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Taxonomy vocabulary.
    $this
      ->createTaxonomyVocabulary($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Taxonomy terms.
    [
      $tid1,
      $tid2,
      $tid3,
    ] = $this
      ->createTaxonomyTerms($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Field storages.
    $this
      ->createFieldStorages($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Fields.
    $this
      ->createFields($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Node with custom field.
    $nid3 = $this
      ->createNodeWithField($items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Node with entity reference.
    $nid4 = $this
      ->createNodeWithReference($tid1, $tid2, $tid3, $items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // File entity.
    $this
      ->createFile($uid1, $items_expected);
    $expected += $items_expected;
    $this
      ->assertEquals($expected, $this->contentHubQueue
      ->getQueueCount());

    // Purge queue.
    $this->contentHubQueue
      ->purgeQueues();
    $this
      ->assertEquals(0, $this->contentHubQueue
      ->getQueueCount());

    // Node update.
    $this
      ->updateNode($nid3, $items_expected);
    $this
      ->assertEquals($items_expected, $this->contentHubQueue
      ->getQueueCount());

    // Purge queue.
    $this->contentHubQueue
      ->purgeQueues();
    $this
      ->assertEquals(0, $this->contentHubQueue
      ->getQueueCount());

    // Node delete.
    $this
      ->deleteNodes([
      $nid1,
      $nid2,
      $nid3,
      $nid4,
    ]);
    $this
      ->assertEquals(0, $this->contentHubQueue
      ->getQueueCount());
  }

  /**
   * Tests Acquia ContentHub content/configuration export.
   *
   * @throws \Exception
   */
  public function testPublishing() {
    $this->contentHubQueue
      ->purgeQueues();

    // Node types.
    $cdf_expectations = [];
    $this
      ->createNodeTypes($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateNodeTypeCdfObject',
    ]);

    // Nodes.
    $cdf_expectations = [];
    $this
      ->createNodes($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateNodeCdfObject',
    ]);

    // Users.
    $cdf_expectations = [];
    [
      $uid1,
    ] = $this
      ->createUsers($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateUserCdfObject',
    ]);

    // Taxonomy vocabulary.
    $cdf_expectations = [];
    $this
      ->createTaxonomyVocabulary($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateTaxonomyVocabularyCdfObject',
    ]);

    // Taxonomy terms.
    $cdf_expectations = [];
    [
      $tid1,
      $tid2,
      $tid3,
    ] = $this
      ->createTaxonomyTerms($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateTaxonomyTermCdfObject',
    ]);

    // Field storages.
    $cdf_expectations = [];
    $this
      ->createFieldStorages($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateFieldStorageCdfObject',
    ]);

    // Fields.
    $cdf_expectations = [];
    $this
      ->createFields($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateFieldCdfObject',
    ]);

    // Node with text field.
    $cdf_expectations = [];
    $nid = $this
      ->createNodeWithField($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateNodeCdfObject',
    ]);

    // Node with entity reference field.
    $cdf_expectations = [];
    $this
      ->createNodeWithReference($tid1, $tid2, $tid3, $items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateNodeCdfObject',
    ]);

    // File.
    $cdf_expectations = [];
    $this
      ->createFile($uid1, $items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateFileCdfObject',
    ]);

    // Node update.
    $cdf_expectations = [];
    $this
      ->updateNode($nid, $items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateNodeCdfObject',
    ]);
  }

  /**
   * Tests publishing of node and user profile.
   *
   * @throws \Exception
   */
  public function testPublishingUserProfile() {
    $this->contentHubQueue
      ->purgeQueues();

    // Create "user_picture" image field.
    $field_storage = FieldStorageConfig::create([
      'field_name' => 'user_picture',
      'entity_type' => 'user',
      'type' => 'image',
    ]);
    $field_storage
      ->save();
    $field = FieldConfig::create([
      'field_name' => 'user_picture',
      'entity_type' => 'user',
      'bundle' => 'user',
    ]);
    $field
      ->save();
    $this
      ->processQueue(2);

    // Users.
    $cdf_expectations = [];
    [
      $uid,
    ] = $this
      ->createUsers($items_expected, $cdf_expectations);
    $this
      ->processQueue(2);

    // Node types.
    $cdf_expectations = [];
    $this
      ->createNodeTypes($items_expected, $cdf_expectations);
    $this
      ->processQueue(2);

    // Nodes.
    $cdf_expectations = [];
    [
      $nid,
    ] = $this
      ->createNodes($items_expected, $cdf_expectations, [
      $uid,
    ]);
    $this
      ->processQueue(1);

    // Create a dummy profile image file.
    $filename = 'avatar.jpg';
    $uri = 'public://avatar.jpg';
    $filemime = 'image/jpeg';
    $file = File::create();
    $file
      ->setOwnerId($uid);
    $file
      ->setFilename($filename);
    $file
      ->setMimeType($filemime);
    $file
      ->setFileUri($uri);
    $file
      ->set('status', FILE_STATUS_PERMANENT);
    $file
      ->save();
    $fid = $file
      ->id();
    $this->fieldUuids[] = $file
      ->uuid();

    // Update user profile image.
    $user = User::load($uid);
    $user
      ->set('user_picture', $fid);
    $user
      ->save();
    $this
      ->processQueue(2);

    // Update node authored by the user.
    $cdf_expectations = [];
    $this
      ->updateAuthoredNode($nid, $items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateNodeCdfObject',
    ]);
  }

  /**
   * Tests deleting content.
   *
   * @see ContentHubExportQueue
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   * @throws \Exception
   */
  public function testDelete() {
    $this->contentHubQueue
      ->purgeQueues();

    // Node types.
    $cdf_expectations = [];
    $this
      ->createNodeTypes($items_expected, $cdf_expectations);
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'validateNodeTypeCdfObject',
    ]);

    // Nodes.
    $cdf_expectations = [];
    [
      $nid1,
      $nid2,
    ] = $this
      ->createNodes($items_expected, $cdf_expectations);

    // Node delete.
    $this
      ->deleteNodes([
      $nid1,
      $nid2,
    ], $cdf_expectations);

    // Process queue with missing entities shouldn't throw an error.
    $this
      ->processQueue($items_expected, $cdf_expectations, [
      $this,
      'assertNotEmpty',
    ]);
    $this
      ->assertEquals(0, $this->contentHubQueue
      ->getQueueCount());
  }

  /**
   * Creates sample node types.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createNodeTypes(&$items_expected, array &$cdf_expectations = []) {

    // Node types.
    $label1 = 'Test Content Type #1';
    $bundle1 = 'test_content_type';
    $node_type1 = NodeType::create([
      'type' => $bundle1,
      'name' => $label1,
    ]);
    $node_type1
      ->save();
    $this->nodeTypeUuids[] = $node_type1
      ->uuid();
    $label2 = 'Test Content Type #2';
    $bundle2 = 'test_content_type2';
    $node_type2 = NodeType::create([
      'type' => $bundle2,
      'name' => $label2,
    ]);
    $node_type2
      ->save();
    $this->nodeTypeUuids[] = $node_type2
      ->uuid();
    $items_expected = 2;

    // Setup CDF expectations.
    $dependencies = [
      'module' => [
        'node',
      ],
    ];
    $cdf_expectations = [
      [
        $dependencies,
        $bundle1,
        $label1,
      ],
      [
        $dependencies,
        $bundle2,
        $label2,
      ],
    ];
  }

  /**
   * Creates node samples.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   * @param array $uids
   *   Optional list of author ids.
   *
   * @return array
   *   List on node ids.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createNodes(&$items_expected, array &$cdf_expectations = [], array $uids = []) {
    $uid = array_shift($uids);
    $bundle = 'test_content_type';
    $title1 = $this
      ->getRandomGenerator()
      ->word(15);
    $values = [
      'title' => $title1,
      'type' => $bundle,
      'status' => Node::PUBLISHED,
      'uid' => $uid ? $uid : 0,
    ];
    $node1 = Node::create($values);
    $node1
      ->save();
    $uid = array_shift($uids);
    $title2 = $this
      ->getRandomGenerator()
      ->word(15);
    $values = [
      'title' => $title2,
      'type' => $bundle,
      'status' => Node::NOT_PUBLISHED,
      'uid' => $uid ? $uid : 0,
    ];
    $node2 = Node::create($values);
    $node2
      ->save();
    $items_expected = 1;
    $cdf_expectations = [
      [
        $node1
          ->id(),
        $title1,
        $bundle,
        Node::PUBLISHED,
      ],
      [
        $node2
          ->id(),
        $title2,
        $bundle,
        Node::NOT_PUBLISHED,
      ],
    ];
    return [
      $node1
        ->id(),
      $node2
        ->id(),
    ];
  }

  /**
   * Creates sample Drupal user entities.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @return array
   *   List of user ids.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createUsers(&$items_expected, array &$cdf_expectations = []) {
    $name1 = $this
      ->randomString();
    $email1 = 'email1@example.com';
    $user1 = User::create([
      'uid' => 1,
      'name' => $name1,
      'mail' => $email1,
    ]);
    $user1
      ->save();
    $this->userUuids[] = $user1
      ->uuid();
    $name2 = $this
      ->randomString();
    $email2 = 'email2@example.com';
    $user2 = User::create([
      'uid' => 2,
      'name' => $name2,
      'mail' => $email2,
    ]);
    $user2
      ->save();
    $this->userUuids[] = $user2
      ->uuid();
    $items_expected = 2;
    $cdf_expectations = [
      [
        $name1,
        $email1,
      ],
      [
        $name2,
        $email2,
      ],
    ];
    return [
      $user1
        ->id(),
      $user2
        ->id(),
    ];
  }

  /**
   * Creates a sample taxonomy vocabulary.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createTaxonomyVocabulary(&$items_expected, array &$cdf_expectations = []) {
    $name1 = $this
      ->randomString();
    $vid1 = $this
      ->randomMachineName();
    $description1 = $this
      ->randomString(128);
    $weight1 = rand(-100, 100);
    $vocabulary1 = Vocabulary::create([
      'name' => $name1,
      'vid' => $vid1,
      'description' => $description1,
      'weight' => $weight1,
    ]);
    $vocabulary1
      ->save();
    $this->vocabularyUuids[] = $vocabulary1
      ->uuid();
    $name2 = $this
      ->randomString();
    $description2 = $this
      ->randomString(128);
    $weight2 = rand(-100, 100);
    $vocabulary2 = Vocabulary::create([
      'name' => $name2,
      'vid' => 'test_vocabulary',
      'description' => $description2,
      'weight' => $weight2,
    ]);
    $vocabulary2
      ->save();
    $this->vocabularyUuids[] = $vocabulary2
      ->uuid();
    $items_expected = 2;
    $cdf_expectations = [
      [
        $vid1,
        $name1,
        $description1,
        $weight1,
      ],
      [
        'test_vocabulary',
        $name2,
        $description2,
        $weight2,
      ],
    ];
  }

  /**
   * Creates sample taxonomy terms.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @return array
   *   List of taxonomy term ids.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createTaxonomyTerms(&$items_expected, array &$cdf_expectations = []) {
    $bundle = 'test_vocabulary';
    $this->termUuids = [];
    $name1 = $this
      ->randomMachineName(20);
    $description1 = $this
      ->randomMachineName(32);
    $term1 = Term::create([
      'description' => [
        [
          'value' => $description1,
        ],
      ],
      'name' => $name1,
      'vid' => $bundle,
      'uid' => 1,
    ]);
    $term1
      ->save();
    $this->termUuids[] = $term1
      ->uuid();
    $name2 = $this
      ->randomMachineName(20);
    $description2 = $this
      ->randomMachineName(32);
    $term2 = Term::create([
      'description' => [
        [
          'value' => $description2,
        ],
      ],
      'name' => $name2,
      'vid' => $bundle,
      'uid' => 2,
    ]);
    $term2
      ->save();
    $this->termUuids[] = $term2
      ->uuid();
    $name3 = $this
      ->randomMachineName(20);
    $description3 = $this
      ->randomMachineName(32);
    $term3 = Term::create([
      'description' => [
        [
          'value' => $description3,
        ],
      ],
      'name' => $name3,
      'vid' => $bundle,
      'uid' => 3,
    ]);
    $term3
      ->save();
    $this->termUuids[] = $term3
      ->uuid();
    $items_expected = 3;
    $cdf_expectations = [
      [
        $name1,
        $bundle,
        $description1,
      ],
      [
        $name2,
        $bundle,
        $description2,
      ],
      [
        $name3,
        $bundle,
        $description3,
      ],
    ];
    return [
      $term1
        ->id(),
      $term2
        ->id(),
      $term3
        ->id(),
    ];
  }

  /**
   * Creates fields.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createFieldStorages()
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createNodeTypes()
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createFields(&$items_expected, array &$cdf_expectations = []) {

    // Text field.
    $field_definition = [
      'field_name' => 'field_1',
      'entity_type' => 'node',
      'bundle' => 'test_content_type',
    ];
    FieldConfig::create($field_definition)
      ->save();

    // Entity reference field.
    $field_definition = [
      'field_name' => 'field_term_reference',
      'entity_type' => 'node',
      'bundle' => 'test_content_type',
    ];
    FieldConfig::create($field_definition)
      ->save();
    $items_expected = 2;
    $cdf_expectations = [
      [
        'field_1',
        [
          'node',
        ],
        'string_long',
        'test_content_type',
        [],
      ],
      [
        'field_term_reference',
        [
          'node',
          'taxonomy',
        ],
        'entity_reference',
        'test_content_type',
        [
          'handler' => 'default:taxonomy_term',
          'handler_settings' => [],
        ],
      ],
    ];
  }

  /**
   * Creates field storages.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createFieldStorages(&$items_expected, array &$cdf_expectations = []) {

    // Text field.
    $field_storage_definition1 = [
      'field_name' => 'field_1',
      'type' => 'string_long',
      'entity_type' => 'node',
    ];
    $field_storage1 = FieldStorageConfig::create($field_storage_definition1);
    $field_storage1
      ->save();
    $this->fieldUuids[] = $field_storage1
      ->uuid();

    // Entity reference field.
    $field_storage_definition2 = [
      'entity_type' => 'node',
      'field_name' => 'field_term_reference',
      'type' => 'entity_reference',
      'settings' => [
        'target_type' => 'taxonomy_term',
      ],
      'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
    ];
    $field_storage2 = FieldStorageConfig::create($field_storage_definition2);
    $field_storage2
      ->save();
    $this->fieldUuids[] = $field_storage2
      ->uuid();
    $items_expected = 2;
    $cdf_expectations = [
      [
        'field_1',
        'string_long',
        [
          'node',
        ],
        [
          'case_sensitive' => FALSE,
        ],
        1,
      ],
      [
        'field_term_reference',
        'entity_reference',
        [
          'node',
          'taxonomy',
        ],
        [
          'target_type' => 'taxonomy_term',
        ],
        FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
      ],
    ];
  }

  /**
   * Creates a node with a field value.
   *
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @return int
   *   Node id.
   *
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createFields()
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createNodeWithField(&$items_expected, array &$cdf_expectations = []) {
    $title = $this
      ->getRandomGenerator()
      ->word(32);
    $bundle = 'test_content_type';
    $field_value = $this
      ->getRandomGenerator()
      ->string(256);
    $values = [
      'title' => $title,
      'type' => $bundle,
      'status' => Node::PUBLISHED,
      'field_1' => [
        'value' => $field_value,
      ],
    ];
    $node = Node::create($values);
    $node
      ->save();
    $items_expected = 1;
    $field = [
      'field_1' => [
        'value' => [
          'en' => [
            'value' => $field_value,
          ],
        ],
      ],
      'field_term_reference' => [
        'value' => [
          'en' => [],
        ],
      ],
    ];
    $field_metadata = [
      'field_1' => [
        'type' => 'string_long',
      ],
      'field_term_reference' => [
        'type' => 'entity_reference',
        'target' => 'taxonomy_term',
      ],
    ];
    $cdf_expectations = [
      [
        $node
          ->id(),
        $title,
        $bundle,
        Node::PUBLISHED,
        $field,
        $field_metadata,
      ],
    ];
    return $node
      ->id();
  }

  /**
   * Creates a node with an entity reference field.
   *
   * @param int $tid1
   *   Id of a taxonomy term.
   * @param int $tid2
   *   Id of a taxonomy term.
   * @param int $tid3
   *   Id of a taxonomy term.
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @return int
   *   Node id.
   *
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createFields()
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createTaxonomyTerms()
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createNodeWithReference($tid1, $tid2, $tid3, &$items_expected, array &$cdf_expectations = []) {
    $title = $this
      ->getRandomGenerator()
      ->word(32);
    $bundle = 'test_content_type';
    $node = Node::create([
      'type' => 'test_content_type',
      'title' => $title,
      'status' => Node::PUBLISHED,
      'field_term_reference' => [
        [
          'target_id' => $tid1,
        ],
        [
          'target_id' => $tid2,
        ],
        [
          'target_id' => $tid3,
        ],
      ],
    ]);
    $node
      ->save();
    $items_expected = 1;
    $field = [
      'field_1' => [
        'value' => [
          'en' => [],
        ],
      ],
      'field_term_reference' => [
        'value' => [
          'en' => $this->termUuids,
        ],
      ],
    ];
    $field_metadata = [
      'field_1' => [
        'type' => 'string_long',
      ],
      'field_term_reference' => [
        'type' => 'entity_reference',
        'target' => 'taxonomy_term',
      ],
    ];
    $cdf_expectations = [
      [
        $node
          ->id(),
        $title,
        $bundle,
        Node::PUBLISHED,
        $field,
        $field_metadata,
      ],
    ];
    return $node
      ->id();
  }

  /**
   * Creates a Drupal file entity.
   *
   * @param int $uid
   *   Id of the owner (user).
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function createFile($uid, &$items_expected, array &$cdf_expectations = []) {
    $filename = 'contenthub_export_test.txt';
    $uri = 'public://contenthub_export_test.txt';
    $filemime = 'text/plain';
    $content = $this
      ->getRandomGenerator()
      ->paragraphs(5);
    $file = File::create();
    $file
      ->setOwnerId($uid);
    $file
      ->setFilename($filename);
    $file
      ->setMimeType($filemime);
    $file
      ->setFileUri($uri);
    $file
      ->set('status', FILE_STATUS_PERMANENT);
    $file
      ->save();
    file_put_contents($file
      ->getFileUri(), $content);
    $items_expected = 1;
    $cdf_expectations = [
      [
        $filename,
        $uri,
        $filemime,
      ],
    ];
  }

  /**
   * Updates the node.
   *
   * @param int $nid
   *   Node id.
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function updateNode($nid, &$items_expected, array &$cdf_expectations = []) {
    $title = $this
      ->randomString(30);
    $field_value = $this
      ->randomString(100);
    $node = Node::load($nid);
    $node
      ->set('title', $title);
    $node
      ->set('field_1', $field_value);
    $node
      ->set('status', Node::PUBLISHED);
    $node
      ->save();
    $items_expected = 1;
    $bundle = 'test_content_type';
    $field = [
      'field_1' => [
        'value' => [
          'en' => [
            'value' => $field_value,
          ],
        ],
      ],
      'field_term_reference' => [
        'value' => [
          'en' => [],
        ],
      ],
    ];
    $field_metadata = [
      'field_1' => [
        'type' => 'string_long',
      ],
      'field_term_reference' => [
        'type' => 'entity_reference',
        'target' => 'taxonomy_term',
      ],
    ];
    $cdf_expectations = [
      [
        $nid,
        $title,
        $bundle,
        Node::PUBLISHED,
        $field,
        $field_metadata,
      ],
    ];
  }

  /**
   * Deletes nodes.
   *
   * @param int[] $nids
   *   Node nids.
   * @param array $cdf_expectations
   *   CDF expectations.
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function deleteNodes(array $nids, array &$cdf_expectations = []) {
    foreach ($nids as $nid) {
      $node = Node::load($nid);
      $uuid = $node
        ->uuid();
      $node
        ->delete();
      $trackRecord = $this->publisherTracker
        ->get($uuid);
      $this
        ->assertEmpty($trackRecord, "No tracking record for deleted entity.");
      $cdf_expectations[] = TRUE;
    }
  }

  /**
   * Processes queue items.
   *
   * @param int $items_expected
   *   Number of items to expect in the queue.
   * @param array $cdf_expectations
   *   List of CDF object expectations.
   * @param callable $callback
   *   CDF Object verification method.
   *
   * @throws \Exception
   */
  protected function processQueue($items_expected, array $cdf_expectations = [], callable $callback = NULL) {
    $items = 0;
    while ($item = $this->queue
      ->claimItem()) {
      $this->queueWorker
        ->processItem($item->data);
      $this->queue
        ->deleteItem($item);
      if ($callback) {
        $callback(...$cdf_expectations[$items]);
      }
      $items++;
    }
    $this
      ->assertEquals($items_expected, $items);
  }

  /**
   * Performs basic CDF Object validation.
   */
  protected function validateBaseCdfObject() {
    $cdf = $this->cdfObject;
    $this
      ->assertNotEmpty($cdf);
    $entity_type = $cdf
      ->getAttribute('entity_type')
      ->getValue()[Language::LANGCODE_NOT_SPECIFIED];
    $storage = \Drupal::service('entity_type.manager')
      ->getStorage($entity_type)
      ->loadByProperties([
      'uuid' => $cdf
        ->getUuid(),
    ]);
    $wrapper = new DependentEntityWrapper(current($storage));

    // Validate Origin attribute.
    $origin = $cdf
      ->getOrigin();
    $this
      ->assertEquals('00000000-0000-0001-0000-123456789123', $origin);

    // Validate date values.
    $iso8601_regex = '/^(?:[1-9]\\d{3}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1\\d|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[1-9]\\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-02-29)T(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:Z|[+-][01]\\d:[0-5]\\d)$/';
    $date_created = $cdf
      ->getCreated();
    $date_created_is_valid = preg_match($iso8601_regex, $date_created);
    $this
      ->assertNotEmpty($date_created_is_valid);
    $date_modified = $cdf
      ->getModified();
    $date_modified_is_valid = preg_match($iso8601_regex, $date_modified);
    $this
      ->assertNotEmpty($date_modified_is_valid);

    // Validate UUID.
    $uuid = $cdf
      ->getUuid();
    $this
      ->assertTrue(Uuid::isValid($uuid));

    // Validate "base_url" attribute.
    $base_url = $this
      ->getCdfAttribute($cdf, 'base_url');
    $url = Url::fromUserInput('/', [
      'absolute' => TRUE,
    ]);
    $url = $url
      ->toString();
    $this
      ->assertEquals($url, $base_url);

    // Validate "hash" attribute.
    $hash = $this
      ->getCdfAttribute($cdf, 'hash');
    $this
      ->assertEquals($wrapper
      ->getHash(), $hash);

    // Validate "data" attribute.
    $this
      ->assertNotEmpty($this
      ->getCdfDataAttribute($cdf));
  }

  /**
   * Validates node type CDF object.
   *
   * @param array $dependencies_expected
   *   Dependencies.
   * @param string $bundle_expected
   *   Expected node's bundle machine name.
   * @param string $bundle_label_expected
   *   Expected bundle label.
   */
  protected function validateNodeTypeCdfObject(array $dependencies_expected, $bundle_expected, $bundle_label_expected) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_config_entity', $type);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $data_expected = [
      'en' => [
        'uuid' => $cdf
          ->getUuid(),
        'langcode' => 'en',
        'status' => TRUE,
        'dependencies' => [],
        'name' => $bundle_label_expected,
        'type' => $bundle_expected,
        'description' => NULL,
        'help' => NULL,
        'new_revision' => TRUE,
        'preview_mode' => 1,
        'display_submitted' => TRUE,
      ],
    ];
    $this
      ->assertEquals($data_expected, $data);

    // Validate Metadata attribute.
    $metadata_expected = [
      'default_language' => 'en',
      'dependencies' => $dependencies_expected,
    ];
    $metadata = $cdf
      ->getMetadata();
    unset($metadata['data']);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate Entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals($entity_type, $entity_type);
    $label = $cdf
      ->getAttribute('label');
    $this
      ->assertEquals([
      'en' => $bundle_label_expected,
      'und' => $bundle_label_expected,
    ], $label
      ->getValue());
  }

  /**
   * Validated "node with a text field" CDF object.
   *
   * @param int $nid
   *   The Node ID.
   * @param string $title_expected
   *   Expected node title.
   * @param string $bundle_expected
   *   Expected bundle.
   * @param int $status_expected
   *   Expected node publishing status.
   * @param array $field_expected
   *   Expected field value.
   * @param array $field_metadata_expected
   *   Expected field metadata.
   *
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createNodeTypes()
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createTaxonomyVocabulary()
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createTaxonomyTerms()
   */
  protected function validateNodeCdfObject($nid, $title_expected, $bundle_expected, $status_expected, array $field_expected = [], array $field_metadata_expected = []) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_content_entity', $type);

    // Validate Metadata attribute.
    $metadata = $cdf
      ->getMetadata();
    $this
      ->assertNotEmpty($metadata['dependencies']['entity']);

    // Validate Metadata's "dependencies" element.
    $uuids = array_keys($metadata['dependencies']['entity']);
    $content_type_uuid = reset($uuids);
    foreach ($uuids as $uuid) {
      $has_node_type_dependency = in_array($uuid, $this->nodeTypeUuids, TRUE);
      $has_taxonomy_vocabulary_dependency = in_array($uuid, $this->vocabularyUuids, TRUE);
      $has_taxonomy_term_dependency = in_array($uuid, $this->termUuids, TRUE);
      $has_user_dependency = in_array($uuid, $this->userUuids, TRUE);
      $has_file_dependency = in_array($uuid, $this->fieldUuids, TRUE);
      $has_valid_dependency = $has_node_type_dependency || $has_taxonomy_vocabulary_dependency || $has_taxonomy_term_dependency || $has_user_dependency || $has_file_dependency;
      $this
        ->assertTrue($has_valid_dependency);
    }
    unset($metadata['dependencies']);
    unset($metadata['data']);
    $metadata_expected = [
      'default_language' => 'en',
      'field' => [
        'uuid' => [
          'type' => 'uuid',
        ],
        'type' => [
          'type' => 'entity_reference',
          'target' => 'node_type',
        ],
        'revision_timestamp' => [
          'type' => 'created',
        ],
        'revision_uid' => [
          'type' => 'entity_reference',
          'target' => 'user',
        ],
        'revision_log' => [
          'type' => 'string_long',
        ],
        'status' => [
          'type' => 'boolean',
        ],
        'title' => [
          'type' => 'string',
        ],
        'uid' => [
          'type' => 'entity_reference',
          'target' => 'user',
        ],
        'created' => [
          'type' => 'created',
        ],
        'changed' => [
          'type' => 'changed',
        ],
        'promote' => [
          'type' => 'boolean',
        ],
        'sticky' => [
          'type' => 'boolean',
        ],
        'default_langcode' => [
          'type' => 'boolean',
        ],
        'revision_default' => [
          'type' => 'boolean',
        ],
        'revision_translation_affected' => [
          'type' => 'boolean',
        ],
      ],
      'languages' => [
        'en',
      ],
      'version' => 2,
    ];
    $metadata_expected['field'] = array_merge($metadata_expected['field'], $field_metadata_expected);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $created_timestamp = $data['created']['value']['en']['value'];
    $is_timestamp = is_numeric($created_timestamp) && (int) $created_timestamp == $created_timestamp;
    $this
      ->assertTrue($is_timestamp);
    unset($data['revision_uid']);
    unset($data['uid']);
    $data_expected = [
      'uuid' => [
        'value' => [
          'en' => [
            'value' => $cdf
              ->getUuid(),
          ],
        ],
      ],
      'type' => [
        'value' => [
          'en' => $content_type_uuid,
        ],
      ],
      'revision_timestamp' => [
        'value' => [
          'en' => [
            'value' => $created_timestamp,
          ],
        ],
      ],
      'revision_log' => [
        'value' => [
          'en' => [],
        ],
      ],
      'status' => [
        'value' => [
          'en' => (string) $status_expected,
        ],
      ],
      'title' => [
        'value' => [
          'en' => $title_expected,
        ],
      ],
      'created' => [
        'value' => [
          'en' => [
            'value' => $created_timestamp,
          ],
        ],
      ],
      'changed' => [
        'value' => [
          'en' => [
            'value' => $created_timestamp,
          ],
        ],
      ],
      'promote' => [
        'value' => [
          'en' => '1',
        ],
      ],
      'sticky' => [
        'value' => [
          'en' => '0',
        ],
      ],
      'default_langcode' => [
        'value' => [
          'en' => '1',
        ],
      ],
      'revision_default' => [
        'value' => [
          'en' => '1',
        ],
      ],
      'revision_translation_affected' => [
        'value' => [
          'en' => '1',
        ],
      ],
    ];
    $data_expected = array_merge($data_expected, $field_expected);
    $this
      ->assertEquals($data_expected, $data);

    // Validate entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals('node', $entity_type);

    // Validate bundle.
    $bundle = $this
      ->getCdfAttribute($cdf, 'bundle');
    $this
      ->assertEquals($bundle_expected, $bundle);

    // Validate node title.
    $title = $this
      ->getCdfAttribute($cdf, 'label', 'en');
    $this
      ->assertEquals($title_expected, $title);

    // Validate "url" attribute.
    $url_attribute = $this
      ->getCdfAttribute($cdf, 'url');
    $url = Url::fromUserInput('/', [
      'absolute' => TRUE,
    ]);
    $url = $url
      ->toString();
    $this
      ->assertEquals($url . $entity_type . '/' . $nid, $url_attribute);
  }

  /**
   * Validates Drupal user CDF object.
   *
   * @param string $name_expected
   *   Expected user name.
   * @param string $email_expected
   *   Expected user email.
   */
  protected function validateUserCdfObject($name_expected, $email_expected) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_content_entity', $type);

    // Validate Metadata attribute.
    $metadata = $cdf
      ->getMetadata();
    $metadata_expected = [
      'default_language' => 'en',
      'field' => [
        'uuid' => [
          'type' => 'uuid',
        ],
        'preferred_langcode' => [
          'type' => 'language',
        ],
        'preferred_admin_langcode' => [
          'type' => 'language',
        ],
        'name' => [
          'type' => 'string',
        ],
        'pass' => [
          'type' => 'password',
        ],
        'mail' => [
          'type' => 'email',
        ],
        'timezone' => [
          'type' => 'string',
        ],
        'status' => [
          'type' => 'boolean',
        ],
        'created' => [
          'type' => 'created',
        ],
        'changed' => [
          'type' => 'changed',
        ],
        'access' => [
          'type' => 'timestamp',
        ],
        'login' => [
          'type' => 'timestamp',
        ],
        'init' => [
          'type' => 'email',
        ],
        'roles' => [
          'type' => 'entity_reference',
          'target' => 'user_role',
        ],
        'default_langcode' => [
          'type' => 'boolean',
        ],
      ],
      'languages' => [
        'en',
      ],
      'version' => 2,
      'user_data' => [],
    ];
    unset($metadata['data']);
    unset($metadata['field']['user_picture']);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $created_timestamp = $data['created']['value']['en']['value'];
    $is_timestamp = is_numeric($created_timestamp) && (int) $created_timestamp == $created_timestamp;
    $this
      ->assertTrue($is_timestamp);
    $data_expected = [
      'uuid' => [
        'value' => [
          'en' => [
            'value' => $cdf
              ->getUuid(),
          ],
        ],
      ],
      'preferred_langcode' => [
        'value' => [
          'en' => 'en',
        ],
      ],
      'preferred_admin_langcode' => [],
      'pass' => [
        'value' => [
          'en' => [
            'pre_hashed' => TRUE,
          ],
        ],
      ],
      'init' => [
        'value' => [
          'en' => [],
        ],
      ],
      'roles' => [
        'value' => [
          'en' => [],
        ],
      ],
      'name' => [
        'value' => [
          'en' => $name_expected,
        ],
      ],
      'mail' => [
        'value' => [
          'en' => [
            'value' => $email_expected,
          ],
        ],
      ],
      'timezone' => [
        'value' => [
          'en' => '',
        ],
      ],
      'status' => [
        'value' => [
          'en' => '0',
        ],
      ],
      'created' => [
        'value' => [
          'en' => [
            'value' => $created_timestamp,
          ],
        ],
      ],
      'changed' => [
        'value' => [
          'en' => [
            'value' => $created_timestamp,
          ],
        ],
      ],
      'access' => [
        'value' => [
          'en' => [
            'value' => '0',
          ],
        ],
      ],
      'login' => [
        'value' => [
          'en' => [
            'value' => '0',
          ],
        ],
      ],
      'default_langcode' => [
        'value' => [
          'en' => '1',
        ],
      ],
    ];
    unset($data['user_picture']);
    $this
      ->assertEquals($data_expected, $data);

    // Validate entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals('user', $entity_type);

    // Validate bundle.
    $bundle = $this
      ->getCdfAttribute($cdf, 'bundle');
    $this
      ->assertEquals('user', $bundle);

    // Validate username.
    $name = $this
      ->getCdfAttribute($cdf, 'username');
    $this
      ->assertEquals($name_expected, $name);
    $label = $this
      ->getCdfAttribute($cdf, 'label', 'en');
    $this
      ->assertEquals($name_expected, $label);

    // Validate email.
    $email = $this
      ->getCdfAttribute($cdf, 'mail');
    $this
      ->assertEquals($email_expected, $email);
  }

  /**
   * Validates taxonomy vocabulary CDF object.
   *
   * @param string $vid_expected
   *   Expected vocabulary id.
   * @param string $name_expected
   *   Expected vocabulary name.
   * @param string $description_expected
   *   Expected vocabulary description.
   * @param int $weight_expected
   *   Expected vocabulary weight.
   */
  protected function validateTaxonomyVocabularyCdfObject($vid_expected, $name_expected, $description_expected, $weight_expected) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_config_entity', $type);

    // Validate Metadata attribute.
    $metadata = $cdf
      ->getMetadata();
    $metadata_expected = [
      'default_language' => 'en',
      'dependencies' => [
        'module' => [
          'taxonomy',
        ],
      ],
    ];
    unset($metadata['data']);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $data_expected = [
      'en' => [
        'uuid' => $cdf
          ->getUuid(),
        'langcode' => 'en',
        'status' => TRUE,
        'dependencies' => [],
        'name' => $name_expected,
        'vid' => $vid_expected,
        'description' => $description_expected,
        'weight' => $weight_expected,
      ],
    ];
    $this
      ->assertEquals($data_expected, $data);

    // Validate entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals('taxonomy_vocabulary', $entity_type);

    // Validate vocabulary name.
    $name = $this
      ->getCdfAttribute($cdf, 'label', 'en');
    $this
      ->assertEquals($name_expected, $name);
  }

  /**
   * Validates taxonomy term CDF object.
   *
   * @param string $name_expected
   *   Expected term name.
   * @param string $bundle_expected
   *   Expected bundle (vocabulary).
   * @param string $description_expected
   *   Expected description.
   */
  protected function validateTaxonomyTermCdfObject($name_expected, $bundle_expected, $description_expected) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_content_entity', $type);

    // Validate Metadata attribute.
    $metadata = $cdf
      ->getMetadata();
    $this
      ->assertNotEmpty($metadata['dependencies']['entity']);
    $vocabulary_uuid = key($metadata['dependencies']['entity']);
    unset($metadata['dependencies']);
    $metadata_expected = [
      'default_language' => 'en',
      'field' => [
        'uuid' => [
          'type' => 'uuid',
        ],
        'vid' => [
          'type' => 'entity_reference',
          'target' => 'taxonomy_vocabulary',
        ],
        'status' => [
          'type' => 'boolean',
        ],
        'name' => [
          'type' => 'string',
        ],
        'description' => [
          'type' => 'text_long',
        ],
        'weight' => [
          'type' => 'integer',
        ],
        'parent' => [
          'type' => 'entity_reference',
          'target' => 'taxonomy_term',
        ],
        'changed' => [
          'type' => 'changed',
        ],
        'default_langcode' => [
          'type' => 'boolean',
        ],
        'revision_created' => [
          'type' => 'created',
        ],
        'revision_user' => [
          'type' => 'entity_reference',
          'target' => 'user',
        ],
        'revision_log_message' => [
          'type' => 'string_long',
        ],
        'revision_default' => [
          'type' => 'boolean',
        ],
        'revision_translation_affected' => [
          'type' => 'boolean',
        ],
      ],
      'languages' => [
        'en',
      ],
      'version' => 2,
    ];
    unset($metadata['data']);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $changed_timestamp = $data['changed']['value']['en']['value'];
    $is_timestamp = is_numeric($changed_timestamp) && (int) $changed_timestamp == $changed_timestamp;
    $this
      ->assertTrue($is_timestamp);
    unset($data['revision_user']);
    $data_expected = [
      'uuid' => [
        'value' => [
          'en' => [
            'value' => $cdf
              ->getUuid(),
          ],
        ],
      ],
      'parent' => [],
      'vid' => [
        'value' => [
          'en' => $vocabulary_uuid,
        ],
      ],
      'status' => [
        'value' => [
          'en' => '1',
        ],
      ],
      'name' => [
        'value' => [
          'en' => $name_expected,
        ],
      ],
      'description' => [
        'field_type' => 'text_long',
        'value' => [
          'en' => [
            [
              'value' => $description_expected,
              'format' => NULL,
            ],
          ],
        ],
      ],
      'weight' => [
        'value' => [
          'en' => '0',
        ],
      ],
      'changed' => [
        'value' => [
          'en' => [
            'value' => $changed_timestamp,
          ],
        ],
      ],
      'default_langcode' => [
        'value' => [
          'en' => '1',
        ],
      ],
      'revision_created' => [
        'value' => [
          'en' => [
            'value' => $changed_timestamp,
          ],
        ],
      ],
      'revision_log_message' => [
        'value' => [
          'en' => [],
        ],
      ],
      'revision_default' => [
        'value' => [
          'en' => '1',
        ],
      ],
      'revision_translation_affected' => [
        'value' => [
          'en' => '1',
        ],
      ],
    ];
    $this
      ->assertEquals($data_expected, $data);

    // Validate entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals('taxonomy_term', $entity_type);

    // Validate bundle.
    $bundle = $this
      ->getCdfAttribute($cdf, 'bundle');
    $this
      ->assertEquals($bundle_expected, $bundle);

    // Validate term name.
    $name = $this
      ->getCdfAttribute($cdf, 'label', 'en');
    $this
      ->assertEquals($name_expected, $name);
  }

  /**
   * Validates field storage CDF object.
   *
   * @param string $name_expected
   *   Expected field name.
   * @param string $type_expected
   *   Expected field type.
   * @param array $dependencies_expected
   *   List of expected dependencies (modules).
   * @param array $settings_expected
   *   Expected specific field settings.
   * @param int $cardinality_expected
   *   Expected field cardinality.
   */
  protected function validateFieldStorageCdfObject($name_expected, $type_expected, array $dependencies_expected, array $settings_expected, $cardinality_expected) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;
    $id_expected = 'node.' . $name_expected;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_config_entity', $type);

    // Validate Metadata attribute.
    $metadata = $cdf
      ->getMetadata();
    $metadata_expected = [
      'default_language' => 'en',
      'dependencies' => [
        'module' => array_merge($dependencies_expected, [
          'field',
        ]),
      ],
    ];
    unset($metadata['data']);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $data_expected = [
      'en' => [
        'uuid' => $cdf
          ->getUuid(),
        'langcode' => 'en',
        'status' => TRUE,
        'dependencies' => [
          'module' => $dependencies_expected,
        ],
        'id' => $id_expected,
        'field_name' => $name_expected,
        'entity_type' => 'node',
        'type' => $type_expected,
        'settings' => $settings_expected,
        'module' => 'core',
        'locked' => FALSE,
        'cardinality' => $cardinality_expected,
        'translatable' => TRUE,
        'indexes' => [],
        'persist_with_no_fields' => FALSE,
        'custom_storage' => FALSE,
      ],
    ];
    $this
      ->assertEquals($data_expected, $data);

    // Validate entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals('field_storage_config', $entity_type);

    // Validate field id.
    $id = $this
      ->getCdfAttribute($cdf, 'label', 'en');
    $this
      ->assertEquals($id_expected, $id);
  }

  /**
   * Validates field CDF object.
   *
   * @param string $id_expected
   *   Expected field id.
   * @param array $dependencies_expected
   *   Expected list of dependencies (modules).
   * @param string $type_expected
   *   Expected field type.
   * @param string $bundle_expected
   *   Expected bundle.
   * @param array $settings_expected
   *   Expected list of specific settings.
   *
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createFieldStorages()
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::createNodeTypes()
   */
  protected function validateFieldCdfObject($id_expected, array $dependencies_expected, $type_expected, $bundle_expected, array $settings_expected) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_config_entity', $type);

    // Validate Metadata attribute.
    $metadata = $cdf
      ->getMetadata();
    $this
      ->assertNotEmpty($metadata['dependencies']['entity']);
    $uuids = array_keys($metadata['dependencies']['entity']);
    foreach ($uuids as $uuid) {
      $has_field_dependency = in_array($uuid, $this->fieldUuids, TRUE);
      $has_node_type_dependency = in_array($uuid, $this->nodeTypeUuids, TRUE);
      $has_valid_dependency = $has_field_dependency || $has_node_type_dependency;
      $this
        ->assertTrue($has_valid_dependency);
    }
    unset($metadata['dependencies']['entity']);
    $metadata_expected = [
      'default_language' => 'en',
      'dependencies' => [
        'module' => array_merge($dependencies_expected, [
          'field',
        ]),
      ],
    ];
    unset($metadata['data']);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $data_expected = [
      'en' => [
        'uuid' => $cdf
          ->getUuid(),
        'langcode' => 'en',
        'status' => TRUE,
        'dependencies' => [
          'config' => [
            'field.storage.node.' . $id_expected,
            'node.type.' . $bundle_expected,
          ],
        ],
        'id' => 'node.test_content_type.' . $id_expected,
        'field_name' => $id_expected,
        'entity_type' => 'node',
        'bundle' => $bundle_expected,
        'label' => $id_expected,
        'description' => '',
        'required' => FALSE,
        'translatable' => TRUE,
        'default_value' => [],
        'default_value_callback' => '',
        'settings' => $settings_expected,
        'field_type' => $type_expected,
      ],
    ];
    $this
      ->assertEquals($data_expected, $data);

    // Validate entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals('field_config', $entity_type);

    // Validate field id.
    $id = $this
      ->getCdfAttribute($cdf, 'label', 'en');
    $this
      ->assertEquals($id_expected, $id);
  }

  /**
   * Validates file CDFObject.
   *
   * @param string $filename_expected
   *   Expected file name.
   * @param string $uri_expected
   *   Expected file URI.
   * @param string $filemime_expected
   *   Expected file type (mime).
   */
  protected function validateFileCdfObject($filename_expected, $uri_expected, $filemime_expected) {
    $this
      ->validateBaseCdfObject();
    $cdf = $this->cdfObject;

    // Validate Type attribute.
    $type = $cdf
      ->getType();
    $this
      ->assertEquals('drupal8_content_entity', $type);

    // Validate Metadata attribute.
    $metadata = $cdf
      ->getMetadata();
    $this
      ->assertNotEmpty($metadata['dependencies']['entity']);
    $uuids = array_keys($metadata['dependencies']['entity']);
    $owner_uuid = reset($uuids);
    $has_user_dependency = in_array($owner_uuid, $this->userUuids, TRUE);
    $this
      ->assertTrue($has_user_dependency);
    unset($metadata['dependencies']);
    $metadata_expected = [
      'default_language' => 'en',
      'field' => [
        'uuid' => [
          'type' => 'uuid',
        ],
        'uid' => [
          'type' => 'entity_reference',
          'target' => 'user',
        ],
        'filename' => [
          'type' => 'string',
        ],
        'uri' => [
          'type' => 'file_uri',
        ],
        'filemime' => [
          'type' => 'string',
        ],
        'filesize' => [
          'type' => 'integer',
        ],
        'status' => [
          'type' => 'boolean',
        ],
        'created' => [
          'type' => 'created',
        ],
        'changed' => [
          'type' => 'changed',
        ],
      ],
      'languages' => [
        'en',
      ],
      'version' => 2,
    ];
    unset($metadata['data']);
    $this
      ->assertEquals($metadata_expected, $metadata);

    // Validate "Data" attribute.
    $data = $this
      ->getCdfDataAttribute($cdf);
    $created_timestamp = $data['created']['value']['en']['value'];
    $is_timestamp = is_numeric($created_timestamp) && (int) $created_timestamp == $created_timestamp;
    $this
      ->assertTrue($is_timestamp);
    $data_expected = [
      'uuid' => [
        'value' => [
          'en' => [
            'value' => $cdf
              ->getUuid(),
          ],
        ],
      ],
      'uid' => [
        'value' => [
          'en' => [
            $owner_uuid,
          ],
        ],
      ],
      'filename' => [
        'value' => [
          'en' => $filename_expected,
        ],
      ],
      'uri' => [
        'value' => [
          'en' => [
            'value' => $uri_expected,
          ],
        ],
      ],
      'filemime' => [
        'value' => [
          'en' => $filemime_expected,
        ],
      ],
      'filesize' => [
        'value' => [
          'en' => [],
        ],
      ],
      'status' => [
        'value' => [
          'en' => '1',
        ],
      ],
      'created' => [
        'value' => [
          'en' => [
            'value' => $created_timestamp,
          ],
        ],
      ],
      'changed' => [
        'value' => [
          'en' => [
            'value' => $created_timestamp,
          ],
        ],
      ],
    ];
    $this
      ->assertEquals($data_expected, $data);

    // Validate entity type.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'entity_type');
    $this
      ->assertEquals('file', $entity_type);

    // Validate entity bundle.
    $entity_type = $this
      ->getCdfAttribute($cdf, 'bundle');
    $this
      ->assertEquals('file', $entity_type);

    // Validate file name.
    $filename = $this
      ->getCdfAttribute($cdf, 'label', 'en');
    $this
      ->assertEquals($filename_expected, $filename);

    // Validate file location.
    $file_location = $this
      ->getCdfAttribute($cdf, 'file_location');

    /** @var \Drupal\Core\StreamWrapper\LocalStream $stream_wrapper */
    $stream_wrapper = $this->streamWrapperManager
      ->getViaUri($uri_expected);
    $directory_path = $stream_wrapper
      ->getDirectoryPath();
    if (version_compare(\Drupal::VERSION, '8.8.0', '>=')) {
      $file_location_expected = Url::fromUri('base:' . $directory_path . '/' . $this->streamWrapperManager
        ->getTarget($uri_expected), [
        'absolute' => TRUE,
      ])
        ->toString();
    }
    else {
      $file_location_expected = Url::fromUri('base:' . $directory_path . '/' . file_uri_target($uri_expected), [
        'absolute' => TRUE,
      ])
        ->toString();
    }
    $this
      ->assertEquals($file_location_expected, $file_location);

    // Validate file location.
    $file_scheme = $this
      ->getCdfAttribute($cdf, 'file_scheme');
    $this
      ->assertEquals('public', $file_scheme);

    // Validate file URI.
    $file_uri = $this
      ->getCdfAttribute($cdf, 'file_uri');
    $this
      ->assertEquals($uri_expected, $file_uri);
  }

  /**
   * Returns CDF Attribute value.
   *
   * @param \Acquia\ContentHubClient\CDF\CDFObject $cdf
   *   CDF Object.
   * @param string $name
   *   Attribute name.
   * @param string $langcode
   *   Language code.
   *
   * @return mixed
   *   Attribute's value.
   */
  protected function getCdfAttribute(CDFObject $cdf, $name, $langcode = LanguageInterface::LANGCODE_NOT_SPECIFIED) {
    $attribute = $cdf
      ->getAttribute($name)
      ->getValue();
    if (!isset($attribute[$langcode])) {
      return NULL;
    }
    return $attribute[$langcode];
  }

  /**
   * Returns decoded value of CDFDataAttribute object.
   *
   * @param \Acquia\ContentHubClient\CDF\CDFObject $cdf
   *   CDF Object.
   *
   * @return mixed
   *   Decoded value.
   */
  protected function getCdfDataAttribute(CDFObject $cdf) {
    $metadata = $cdf
      ->getMetadata();
    if (!isset($metadata['data'])) {
      return [];
    }
    $data = base64_decode($metadata['data']);
    if ($cdf
      ->getType() === 'drupal8_config_entity') {
      return Yaml::decode($data);
    }
    if ($cdf
      ->getType() === 'drupal8_content_entity') {
      return json_decode($data, TRUE);
    }
  }

  /**
   * Updates the authored node.
   *
   * @param int $nid
   *   Node id.
   * @param int $items_expected
   *   Expected number of items in the queue.
   * @param array $cdf_expectations
   *   The sets of expectation arguments for CDF object validation.
   *
   * @see \Drupal\Tests\acquia_contenthub\Kernel\ExportTest::testPublishingUserProfile
   *
   * @throws \Drupal\Core\Entity\EntityStorageException
   */
  protected function updateAuthoredNode($nid, &$items_expected, array &$cdf_expectations = []) {
    $title = $this
      ->randomString(30);
    $node = Node::load($nid);
    $node
      ->set('title', $title);
    $node
      ->save();
    $items_expected = 1;
    $cdf_expectations = [
      [
        $nid,
        $title,
        'test_content_type',
        Node::PUBLISHED,
        [],
        [],
      ],
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertContentTrait::$content protected property The current raw content.
AssertContentTrait::$drupalSettings protected property The drupalSettings value from the current raw $content.
AssertContentTrait::$elements protected property The XML structure parsed from the current raw $content. 1
AssertContentTrait::$plainTextContent protected property The plain-text content of raw $content (text nodes).
AssertContentTrait::assertEscaped protected function Passes if the raw text IS found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertField protected function Asserts that a field exists with the given name or ID.
AssertContentTrait::assertFieldById protected function Asserts that a field exists with the given ID and value.
AssertContentTrait::assertFieldByName protected function Asserts that a field exists with the given name and value.
AssertContentTrait::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
AssertContentTrait::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
AssertContentTrait::assertFieldsByValue protected function Asserts that a field exists in the current page with a given Xpath result.
AssertContentTrait::assertLink protected function Passes if a link with the specified label is found.
AssertContentTrait::assertLinkByHref protected function Passes if a link containing a given href (part) is found.
AssertContentTrait::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
AssertContentTrait::assertNoEscaped protected function Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertNoField protected function Asserts that a field does not exist with the given name or ID.
AssertContentTrait::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
AssertContentTrait::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
AssertContentTrait::assertNoFieldByXPath protected function Asserts that a field does not exist or its value does not match, by XPath.
AssertContentTrait::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
AssertContentTrait::assertNoLink protected function Passes if a link with the specified label is not found.
AssertContentTrait::assertNoLinkByHref protected function Passes if a link containing a given href (part) is not found.
AssertContentTrait::assertNoLinkByHrefInMainRegion protected function Passes if a link containing a given href is not found in the main region.
AssertContentTrait::assertNoOption protected function Asserts that a select option in the current page does not exist.
AssertContentTrait::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
AssertContentTrait::assertNoPattern protected function Triggers a pass if the perl regex pattern is not found in raw content.
AssertContentTrait::assertNoRaw protected function Passes if the raw text is NOT found on the loaded page, fail otherwise.
AssertContentTrait::assertNoText protected function Passes if the page (with HTML stripped) does not contains the text.
AssertContentTrait::assertNoTitle protected function Pass if the page title is not the given string.
AssertContentTrait::assertNoUniqueText protected function Passes if the text is found MORE THAN ONCE on the text version of the page.
AssertContentTrait::assertOption protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertOptionByText protected function Asserts that a select option with the visible text exists.
AssertContentTrait::assertOptionSelected protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionSelectedWithDrupalSelector protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionWithDrupalSelector protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertPattern protected function Triggers a pass if the Perl regex pattern is found in the raw content.
AssertContentTrait::assertRaw protected function Passes if the raw text IS found on the loaded page, fail otherwise.
AssertContentTrait::assertText protected function Passes if the page (with HTML stripped) contains the text.
AssertContentTrait::assertTextHelper protected function Helper for assertText and assertNoText.
AssertContentTrait::assertTextPattern protected function Asserts that a Perl regex pattern is found in the plain-text content.
AssertContentTrait::assertThemeOutput protected function Asserts themed output.
AssertContentTrait::assertTitle protected function Pass if the page title is the given string.
AssertContentTrait::assertUniqueText protected function Passes if the text is found ONLY ONCE on the text version of the page.
AssertContentTrait::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
AssertContentTrait::buildXPathQuery protected function Builds an XPath query.
AssertContentTrait::constructFieldXpath protected function Helper: Constructs an XPath for the given set of attributes and value.
AssertContentTrait::cssSelect protected function Searches elements using a CSS selector in the raw content.
AssertContentTrait::getAllOptions protected function Get all option elements, including nested options, in a select.
AssertContentTrait::getDrupalSettings protected function Gets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::getRawContent protected function Gets the current raw content.
AssertContentTrait::getSelectedItem protected function Get the selected value from a select field.
AssertContentTrait::getTextContent protected function Retrieves the plain-text content from the current raw content.
AssertContentTrait::getUrl protected function Get the current URL from the cURL handler. 1
AssertContentTrait::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
AssertContentTrait::removeWhiteSpace protected function Removes all white-space between HTML tags from the raw content.
AssertContentTrait::setDrupalSettings protected function Sets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::setRawContent protected function Sets the raw content (e.g. HTML).
AssertContentTrait::xpath protected function Performs an xpath search on the contents of the internal browser.
AssertHelperTrait::castSafeStrings protected static function Casts MarkupInterface objects into strings.
AssertLegacyTrait::assert protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::assertEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead.
AssertLegacyTrait::assertIdenticalObject protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertNotEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead.
AssertLegacyTrait::assertNotIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead.
AssertLegacyTrait::pass protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::verbose protected function
ConfigTestTrait::configImporter protected function Returns a ConfigImporter object to import test configuration.
ConfigTestTrait::copyConfig protected function Copies configuration objects from source storage to target storage.
DeprecatedServicePropertyTrait::__get public function Allows to access deprecated/removed properties.
DrupalVersion::getDrupalVersion protected function Get the current version of Drupal to identify fixtures for tests.
EntityKernelTestBase::$deprecatedProperties protected property The list of deprecated services.
EntityKernelTestBase::$entityTypeManager protected property The entity type manager service. 1
EntityKernelTestBase::$generatedIds protected property A list of generated identifiers.
EntityKernelTestBase::$state protected property The state service.
EntityKernelTestBase::createUser protected function Creates a user.
EntityKernelTestBase::generateRandomEntityId protected function Generates a random ID avoiding collisions.
EntityKernelTestBase::getHooksInfo protected function Returns the entity_test hook invocation info.
EntityKernelTestBase::installModule protected function Installs a module and refreshes services.
EntityKernelTestBase::refreshServices protected function Refresh services. 1
EntityKernelTestBase::reloadEntity protected function Reloads the given entity from the storage and returns it.
EntityKernelTestBase::uninstallModule protected function Uninstalls a module and refreshes services.
ExportTest::$cdfObject protected property CDF Object.
ExportTest::$contentHubQueue protected property Acquia ContentHub export queue.
ExportTest::$fieldUuids protected property Temporary storage for field UUIDs.
ExportTest::$modules public static property Modules to enable. Overrides EntityKernelTestBase::$modules
ExportTest::$nodeTypeUuids protected property Temporary storage for node type UUIDs.
ExportTest::$publisherTracker protected property Content Hub Publisher Tracker service.
ExportTest::$queue protected property Queue.
ExportTest::$queueWorker protected property Queue worker.
ExportTest::$streamWrapperManager protected property Stream Wrapper Manager service.
ExportTest::$termUuids protected property Temporary storage for taxonomy term UUIDs.
ExportTest::$userUuids protected property Temporary storage for user UUIDs.
ExportTest::$vocabularyUuids protected property Temporary storage for taxonomy vocabulary UUIDs.
ExportTest::captureArg protected function Captures $objects argument value of "putEntities" method.
ExportTest::createFields protected function Creates fields.
ExportTest::createFieldStorages protected function Creates field storages.
ExportTest::createFile protected function Creates a Drupal file entity.
ExportTest::createNodes protected function Creates node samples.
ExportTest::createNodeTypes protected function Creates sample node types.
ExportTest::createNodeWithField protected function Creates a node with a field value.
ExportTest::createNodeWithReference protected function Creates a node with an entity reference field.
ExportTest::createTaxonomyTerms protected function Creates sample taxonomy terms.
ExportTest::createTaxonomyVocabulary protected function Creates a sample taxonomy vocabulary.
ExportTest::createUsers protected function Creates sample Drupal user entities.
ExportTest::deleteNodes protected function Deletes nodes.
ExportTest::getCdfAttribute protected function Returns CDF Attribute value.
ExportTest::getCdfDataAttribute protected function Returns decoded value of CDFDataAttribute object.
ExportTest::processQueue protected function Processes queue items.
ExportTest::setUp public function Overrides EntityKernelTestBase::setUp
ExportTest::testDelete public function Tests deleting content.
ExportTest::testPublishing public function Tests Acquia ContentHub content/configuration export.
ExportTest::testPublishingUserProfile public function Tests publishing of node and user profile.
ExportTest::testQueue public function Tests Acquia ContentHub export queue.
ExportTest::updateAuthoredNode protected function Updates the authored node.
ExportTest::updateNode protected function Updates the node.
ExportTest::validateBaseCdfObject protected function Performs basic CDF Object validation.
ExportTest::validateFieldCdfObject protected function Validates field CDF object.
ExportTest::validateFieldStorageCdfObject protected function Validates field storage CDF object.
ExportTest::validateFileCdfObject protected function Validates file CDFObject.
ExportTest::validateNodeCdfObject protected function Validated "node with a text field" CDF object.
ExportTest::validateNodeTypeCdfObject protected function Validates node type CDF object.
ExportTest::validateTaxonomyTermCdfObject protected function Validates taxonomy term CDF object.
ExportTest::validateTaxonomyVocabularyCdfObject protected function Validates taxonomy vocabulary CDF object.
ExportTest::validateUserCdfObject protected function Validates Drupal user CDF object.
KernelTestBase::$backupGlobals protected property Back up and restore any global variables that may be changed by tests.
KernelTestBase::$backupStaticAttributes protected property Back up and restore static class properties that may be changed by tests.
KernelTestBase::$backupStaticAttributesBlacklist protected property Contains a few static class properties for performance.
KernelTestBase::$classLoader protected property
KernelTestBase::$configImporter protected property @todo Move into Config test base class. 7
KernelTestBase::$configSchemaCheckerExclusions protected static property An array of config object names that are excluded from schema checking.
KernelTestBase::$container protected property
KernelTestBase::$databasePrefix protected property
KernelTestBase::$preserveGlobalState protected property Do not forward any global state from the parent process to the processes that run the actual tests.
KernelTestBase::$root protected property The app root.
KernelTestBase::$runTestInSeparateProcess protected property Kernel tests are run in separate processes because they allow autoloading of code from extensions. Running the test in a separate process isolates this behavior from other tests. Subclasses should not override this property.
KernelTestBase::$siteDirectory protected property
KernelTestBase::$strictConfigSchema protected property Set to TRUE to strict check all configuration saved. 6
KernelTestBase::$vfsRoot protected property The virtual filesystem root directory.
KernelTestBase::assertPostConditions protected function 1
KernelTestBase::bootEnvironment protected function Bootstraps a basic test environment.
KernelTestBase::bootKernel private function Bootstraps a kernel for a test.
KernelTestBase::config protected function Configuration accessor for tests. Returns non-overridden configuration.
KernelTestBase::disableModules protected function Disables modules for this test.
KernelTestBase::enableModules protected function Enables modules for this test.
KernelTestBase::getConfigSchemaExclusions protected function Gets the config schema exclusions for this test.
KernelTestBase::getDatabaseConnectionInfo protected function Returns the Database connection info to be used for this test. 1
KernelTestBase::getDatabasePrefix public function
KernelTestBase::getExtensionsForModules private function Returns Extension objects for $modules to enable.
KernelTestBase::getModulesToEnable private static function Returns the modules to enable for this test.
KernelTestBase::initFileCache protected function Initializes the FileCache component.
KernelTestBase::installConfig protected function Installs default configuration for a given list of modules.
KernelTestBase::installEntitySchema protected function Installs the storage schema for a specific entity type.
KernelTestBase::installSchema protected function Installs database tables from a module schema definition.
KernelTestBase::isTestInIsolation Deprecated protected function Returns whether the current test method is running in a separate process.
KernelTestBase::prepareTemplate protected function
KernelTestBase::register public function Registers test-specific services. Overrides ServiceProviderInterface::register 26
KernelTestBase::render protected function Renders a render array. 1
KernelTestBase::setInstallProfile protected function Sets the install profile and rebuilds the container to update it.
KernelTestBase::setSetting protected function Sets an in-memory Settings variable.
KernelTestBase::setUpBeforeClass public static function 1
KernelTestBase::setUpFilesystem protected function Sets up the filesystem, so things like the file directory. 2
KernelTestBase::stop protected function Stops test execution.
KernelTestBase::tearDown protected function 6
KernelTestBase::tearDownCloseDatabaseConnection public function @after
KernelTestBase::vfsDump protected function Dumps the current state of the virtual filesystem to STDOUT.
KernelTestBase::__sleep public function Prevents serializing any properties.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
RandomGeneratorTrait::$randomGenerator protected property The random generator.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers. 1
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate public function Callback for random string validation.
StorageCopyTrait::replaceStorageContents protected static function Copy the configuration from one storage to another and remove stale items.
TestRequirementsTrait::checkModuleRequirements private function Checks missing module requirements.
TestRequirementsTrait::checkRequirements protected function Check module requirements for the Drupal use case. 1
TestRequirementsTrait::getDrupalRoot protected static function Returns the Drupal root directory.
UserCreationTrait::checkPermissions protected function Checks whether a given list of permission names is valid. Aliased as: drupalCheckPermissions
UserCreationTrait::createAdminRole protected function Creates an administrative role. Aliased as: drupalCreateAdminRole
UserCreationTrait::createRole protected function Creates a role with specified permissions. Aliased as: drupalCreateRole
UserCreationTrait::createUser protected function Create a user with a given set of permissions. Aliased as: drupalCreateUser
UserCreationTrait::grantPermissions protected function Grant permissions to a user role. Aliased as: drupalGrantPermissions
UserCreationTrait::setCurrentUser protected function Switch the current logged in user. Aliased as: drupalSetCurrentUser
UserCreationTrait::setUpCurrentUser protected function Creates a random user account and sets it as current user. Aliased as: drupalSetUpCurrentUser