You are here

ContentModerationNotificationTest.php in Content Moderation Notifications 8.2

Same filename and directory in other branches
  1. 8.3 tests/src/Unit/Entity/ContentModerationNotificationTest.php

File

tests/src/Unit/Entity/ContentModerationNotificationTest.php
View source
<?php

namespace Drupal\Tests\content_moderation_notifications\Unit\Entity;

use Drupal\content_moderation_notifications\Entity\ContentModerationNotification;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\Query\QueryInterface;
use Drupal\Tests\UnitTestCase;

/**
 * Tests for the notification entity.
 *
 * @group content_moderation_notifications
 *
 * @coversDefaultClass \Drupal\content_moderation_notifications\Entity\ContentModerationNotification
 */
class ContentModerationNotificationTest extends UnitTestCase {

  /**
   * Test fixture.
   *
   * @var \Drupal\content_moderation_notifications\Entity\ContentModerationNotification
   */
  protected $notification;

  /**
   * Test data for the fixture.
   *
   * @var array
   */
  protected static $data = [
    'id' => 'foo',
    'roles' => [
      'authenticated' => 'authenticated',
      'biz' => 'biz',
    ],
    'workflow' => 'foo_bar',
    'transitions' => [
      'foo_to_bar',
      'bar_to_foo',
    ],
    'subject' => 'A test notification',
    'body' => [
      'value' => 'Test message body',
      'format' => 'test_format',
    ],
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->notification = new ContentModerationNotification(static::$data, 'content_moderation_notification');
  }

  /**
   * @covers ::getWorkflowId
   */
  public function testGetWorkflowId() {
    $this
      ->assertEquals('foo_bar', $this->notification
      ->getWorkflowId());
  }

  /**
   * @covers ::getRoleIds
   */
  public function testGetRoleIds() {
    $this
      ->assertEquals(static::$data['roles'], $this->notification
      ->getRoleIds());
  }

  /**
   * @covers ::getTransitions
   */
  public function testGetTransitions() {
    $this
      ->assertEquals(static::$data['transitions'], $this->notification
      ->getTransitions());
  }

  /**
   * @covers ::getSubject
   */
  public function testGetSubject() {
    $this
      ->assertEquals(static::$data['subject'], $this->notification
      ->getSubject());
  }

  /**
   * @covers ::getMessage
   */
  public function testGetMessage() {
    $this
      ->assertEquals(static::$data['body']['value'], $this->notification
      ->getMessage());
  }

  /**
   * @covers ::getMessageFormat
   */
  public function getMessageFormat() {
    $this
      ->assertEquals(static::$data['body']['format'], $this->notification
      ->getMessageFormat());
  }

  /**
   * @covers ::preSave
   */
  public function testPreSave() {
    $data = static::$data;
    $data['roles']['not_set'] = 0;
    $data['transitions']['not_set'] = 0;
    $notification = new ContentModerationNotification($data, 'content_moderation_notification');

    // Mock out some necessary services.
    $container = new ContainerBuilder();
    $entity_manager = $this
      ->prophesize(EntityManagerInterface::class);
    $entity_type = $this
      ->prophesize(EntityTypeInterface::class)
      ->reveal();
    $entity_manager
      ->getDefinition('content_moderation_notification')
      ->willReturn($entity_type);
    $container
      ->set('entity.manager', $entity_manager
      ->reveal());
    \Drupal::setContainer($container);
    $storage = $this
      ->prophesize(EntityStorageInterface::class);
    $query = $this
      ->prophesize(QueryInterface::class);
    $query
      ->execute()
      ->willReturn([]);
    $query
      ->condition('uuid', NULL)
      ->willReturn($query
      ->reveal());
    $storage
      ->getQuery()
      ->willReturn($query
      ->reveal());
    $storage
      ->loadUnchanged('foo')
      ->willReturn($notification);
    $notification
      ->preSave($storage
      ->reveal());
    $this
      ->assertEquals(static::$data['roles'], $notification
      ->getRoleIds());
    $this
      ->assertEquals(static::$data['transitions'], $notification
      ->getTransitions());
  }

}

Classes

Namesort descending Description
ContentModerationNotificationTest Tests for the notification entity.