You are here

NodeTypeTest.php in Zircon Profile 8.0

Namespace

Drupal\node\Tests

File

core/modules/node/src/Tests/NodeTypeTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\node\Tests\NodeTypeTest.
 */
namespace Drupal\node\Tests;

use Drupal\field\Entity\FieldConfig;
use Drupal\node\Entity\NodeType;
use Drupal\Core\Url;

/**
 * Ensures that node type functions work correctly.
 *
 * @group node
 */
class NodeTypeTest extends NodeTestBase {

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

  /**
   * Ensures that node type functions (node_type_get_*) work correctly.
   *
   * Load available node types and validate the returned data.
   */
  function testNodeTypeGetFunctions() {
    $node_types = NodeType::loadMultiple();
    $node_names = node_type_get_names();
    $this
      ->assertTrue(isset($node_types['article']), 'Node type article is available.');
    $this
      ->assertTrue(isset($node_types['page']), 'Node type basic page is available.');
    $this
      ->assertEqual($node_types['article']
      ->label(), $node_names['article'], 'Correct node type base has been returned.');
    $article = NodeType::load('article');
    $this
      ->assertEqual($node_types['article'], $article, 'Correct node type has been returned.');
    $this
      ->assertEqual($node_types['article']
      ->label(), $article
      ->label(), 'Correct node type name has been returned.');
  }

  /**
   * Tests creating a content type programmatically and via a form.
   */
  function testNodeTypeCreation() {

    // Create a content type programmatically.
    $type = $this
      ->drupalCreateContentType();
    $type_exists = (bool) NodeType::load($type
      ->id());
    $this
      ->assertTrue($type_exists, 'The new content type has been created in the database.');

    // Login a test user.
    $web_user = $this
      ->drupalCreateUser(array(
      'create ' . $type
        ->label() . ' content',
    ));
    $this
      ->drupalLogin($web_user);
    $this
      ->drupalGet('node/add/' . $type
      ->id());
    $this
      ->assertResponse(200, 'The new content type can be accessed at node/add.');

    // Create a content type via the user interface.
    $web_user = $this
      ->drupalCreateUser(array(
      'bypass node access',
      'administer content types',
    ));
    $this
      ->drupalLogin($web_user);
    $this
      ->drupalGet('node/add');
    $this
      ->assertCacheTag('config:node_type_list');
    $this
      ->assertCacheContext('user.permissions');
    $elements = $this
      ->cssSelect('dl.node-type-list dt');
    $this
      ->assertEqual(3, count($elements));
    $edit = array(
      'name' => 'foo',
      'title_label' => 'title for foo',
      'type' => 'foo',
    );
    $this
      ->drupalPostForm('admin/structure/types/add', $edit, t('Save and manage fields'));
    $type_exists = (bool) NodeType::load('foo');
    $this
      ->assertTrue($type_exists, 'The new content type has been created in the database.');
    $this
      ->drupalGet('node/add');
    $elements = $this
      ->cssSelect('dl.node-type-list dt');
    $this
      ->assertEqual(4, count($elements));
  }

  /**
   * Tests editing a node type using the UI.
   */
  function testNodeTypeEditing() {
    $web_user = $this
      ->drupalCreateUser(array(
      'bypass node access',
      'administer content types',
      'administer node fields',
    ));
    $this
      ->drupalLogin($web_user);
    $field = FieldConfig::loadByName('node', 'page', 'body');
    $this
      ->assertEqual($field
      ->getLabel(), 'Body', 'Body field was found.');

    // Verify that title and body fields are displayed.
    $this
      ->drupalGet('node/add/page');
    $this
      ->assertRaw('Title', 'Title field was found.');
    $this
      ->assertRaw('Body', 'Body field was found.');

    // Rename the title field.
    $edit = array(
      'title_label' => 'Foo',
    );
    $this
      ->drupalPostForm('admin/structure/types/manage/page', $edit, t('Save content type'));
    $this
      ->drupalGet('node/add/page');
    $this
      ->assertRaw('Foo', 'New title label was displayed.');
    $this
      ->assertNoRaw('Title', 'Old title label was not displayed.');

    // Change the name and the description.
    $edit = array(
      'name' => 'Bar',
      'description' => 'Lorem ipsum.',
    );
    $this
      ->drupalPostForm('admin/structure/types/manage/page', $edit, t('Save content type'));
    $this
      ->drupalGet('node/add');
    $this
      ->assertRaw('Bar', 'New name was displayed.');
    $this
      ->assertRaw('Lorem ipsum', 'New description was displayed.');
    $this
      ->clickLink('Bar');
    $this
      ->assertRaw('Foo', 'Title field was found.');
    $this
      ->assertRaw('Body', 'Body field was found.');

    // Remove the body field.
    $this
      ->drupalPostForm('admin/structure/types/manage/page/fields/node.page.body/delete', array(), t('Delete'));

    // Resave the settings for this type.
    $this
      ->drupalPostForm('admin/structure/types/manage/page', array(), t('Save content type'));

    // Check that the body field doesn't exist.
    $this
      ->drupalGet('node/add/page');
    $this
      ->assertNoRaw('Body', 'Body field was not found.');
  }

  /**
   * Tests deleting a content type that still has content.
   */
  function testNodeTypeDeletion() {

    // Create a content type programmatically.
    $type = $this
      ->drupalCreateContentType();

    // Log in a test user.
    $web_user = $this
      ->drupalCreateUser(array(
      'bypass node access',
      'administer content types',
    ));
    $this
      ->drupalLogin($web_user);

    // Add a new node of this type.
    $node = $this
      ->drupalCreateNode(array(
      'type' => $type
        ->id(),
    ));

    // Attempt to delete the content type, which should not be allowed.
    $this
      ->drupalGet('admin/structure/types/manage/' . $type
      ->label() . '/delete');
    $this
      ->assertRaw(t('%type is used by 1 piece of content on your site. You can not remove this content type until you have removed all of the %type content.', array(
      '%type' => $type
        ->label(),
    )), 'The content type will not be deleted until all nodes of that type are removed.');
    $this
      ->assertNoText(t('This action cannot be undone.'), 'The node type deletion confirmation form is not available.');

    // Delete the node.
    $node
      ->delete();

    // Attempt to delete the content type, which should now be allowed.
    $this
      ->drupalGet('admin/structure/types/manage/' . $type
      ->label() . '/delete');
    $this
      ->assertRaw(t('Are you sure you want to delete the content type %type?', array(
      '%type' => $type
        ->label(),
    )), 'The content type is available for deletion.');
    $this
      ->assertText(t('This action cannot be undone.'), 'The node type deletion confirmation form is available.');

    // Test that a locked node type could not be deleted.
    $this->container
      ->get('module_installer')
      ->install(array(
      'node_test_config',
    ));

    // Lock the default node type.
    $locked = \Drupal::state()
      ->get('node.type.locked');
    $locked['default'] = 'default';
    \Drupal::state()
      ->set('node.type.locked', $locked);

    // Call to flush all caches after installing the forum module in the same
    // way installing a module through the UI does.
    $this
      ->resetAll();
    $this
      ->drupalGet('admin/structure/types/manage/default');
    $this
      ->assertNoLink(t('Delete'));
    $this
      ->drupalGet('admin/structure/types/manage/default/delete');
    $this
      ->assertResponse(403);
    $this->container
      ->get('module_installer')
      ->uninstall(array(
      'node_test_config',
    ));
    $this->container = \Drupal::getContainer();
    unset($locked['default']);
    \Drupal::state()
      ->set('node.type.locked', $locked);
    $this
      ->drupalGet('admin/structure/types/manage/default');
    $this
      ->clickLink(t('Delete'));
    $this
      ->assertResponse(200);
    $this
      ->drupalPostForm(NULL, array(), t('Delete'));
    $this
      ->assertFalse((bool) NodeType::load('default'), 'Node type with machine default deleted.');
  }

  /**
   * Tests Field UI integration for content types.
   */
  public function testNodeTypeFieldUiPermissions() {

    // Create an admin user who can only manage node fields.
    $admin_user_1 = $this
      ->drupalCreateUser(array(
      'administer content types',
      'administer node fields',
    ));
    $this
      ->drupalLogin($admin_user_1);

    // Test that the user only sees the actions available to him.
    $this
      ->drupalGet('admin/structure/types');
    $this
      ->assertLinkByHref('admin/structure/types/manage/article/fields');
    $this
      ->assertNoLinkByHref('admin/structure/types/manage/article/display');

    // Create another admin user who can manage node fields display.
    $admin_user_2 = $this
      ->drupalCreateUser(array(
      'administer content types',
      'administer node display',
    ));
    $this
      ->drupalLogin($admin_user_2);

    // Test that the user only sees the actions available to him.
    $this
      ->drupalGet('admin/structure/types');
    $this
      ->assertNoLinkByHref('admin/structure/types/manage/article/fields');
    $this
      ->assertLinkByHref('admin/structure/types/manage/article/display');
  }

  /**
   * Tests for when there are no content types defined.
   */
  public function testNodeTypeNoContentType() {

    /** @var \Drupal\Core\Entity\EntityTypeBundleInfoInterface $bundle_info */
    $bundle_info = \Drupal::service('entity_type.bundle.info');
    $this
      ->assertEqual(2, count($bundle_info
      ->getBundleInfo('node')), 'The bundle information service has 2 bundles for the Node entity type.');
    $web_user = $this
      ->drupalCreateUser([
      'administer content types',
    ]);
    $this
      ->drupalLogin($web_user);

    // Delete 'article' bundle.
    $this
      ->drupalPostForm('admin/structure/types/manage/article/delete', [], t('Delete'));

    // Delete 'page' bundle.
    $this
      ->drupalPostForm('admin/structure/types/manage/page/delete', [], t('Delete'));

    // Navigate to content type administration screen
    $this
      ->drupalGet('admin/structure/types');
    $this
      ->assertRaw(t('No content types available. <a href=":link">Add content type</a>.', [
      ':link' => Url::fromRoute('node.type_add')
        ->toString(),
    ]), 'Empty text when there are no content types in the system is correct.');
    $bundle_info
      ->clearCachedBundles();
    $this
      ->assertEqual(0, count($bundle_info
      ->getBundleInfo('node')), 'The bundle information service has 0 bundles for the Node entity type.');
  }

}

Classes

Namesort descending Description
NodeTypeTest Ensures that node type functions work correctly.