view core/modules/node/tests/src/Kernel/NodeLegacyTest.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents
children
line wrap: on
line source
<?php

namespace Drupal\Tests\node\Kernel;

use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\node\NodeInterface;
use Drupal\node\NodeTypeInterface;

/**
 * Tests legacy user functionality.
 *
 * @group user
 * @group legacy
 */
class NodeLegacyTest extends EntityKernelTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = ['node'];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();

    // Create the node bundles required for testing.
    $type = NodeType::create([
      'type' => 'page',
      'name' => 'page',
    ]);
    $type->save();

    $this->installSchema('node', 'node_access');
  }

  /**
   * @expectedDeprecation node_load_multiple() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\node\Entity\Node::loadMultiple(). See https://www.drupal.org/node/2266845
   * @expectedDeprecation node_load() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\node\Entity\Node::load(). See https://www.drupal.org/node/2266845
   * @expectedDeprecation node_type_load() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\node\Entity\NodeType::load(). See https://www.drupal.org/node/2266845
   */
  public function testEntityLegacyCode() {
    $this->assertCount(0, node_load_multiple());
    Node::create([
      'type' => 'page',
      'title' => $this->randomMachineName(),
    ])->save();
    $this->assertCount(1, node_load_multiple());
    Node::create([
      'type' => 'page',
      'title' => $this->randomMachineName(),
    ])->save();
    $this->assertCount(2, node_load_multiple());

    $this->assertNull(node_load(30));
    $this->assertInstanceOf(NodeInterface::class, node_load(1));
    $this->assertNull(node_type_load('a_node_type_does_not_exist'));
    $this->assertInstanceOf(NodeTypeInterface::class, node_type_load('page'));
  }

}