You are here

ItemWithoutFeedTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/aggregator/src/Tests/ItemWithoutFeedTest.php

File

core/modules/aggregator/src/Tests/ItemWithoutFeedTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\aggregator\Tests\ItemWithoutFeedTest.
 */
namespace Drupal\aggregator\Tests;

use Drupal\aggregator\Entity\Item;
use Drupal\KernelTests\KernelTestBase;

/**
 * Tests clean handling of an item with a missing feed ID.
 *
 * @group aggregator
 */
class ItemWithoutFeedTest extends KernelTestBase {

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'aggregator',
    'options',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->installEntitySchema('aggregator_feed');
    $this
      ->installEntitySchema('aggregator_item');
  }

  /**
   * Tests attempting to create a feed item without a feed.
   */
  public function testEntityCreation() {
    $entity = Item::create([
      'title' => t('Llama 2'),
      'path' => 'https://groups.drupal.org/',
    ]);
    $violations = $entity
      ->validate();
    $this
      ->assertCount(1, $violations);
  }

}

Classes

Namesort descending Description
ItemWithoutFeedTest Tests clean handling of an item with a missing feed ID.