You are here

PermissionsTest.php in Metatag 8

File

metatag_extended_perms/tests/src/Functional/PermissionsTest.php
View source
<?php

namespace Drupal\Tests\metatag_extended_perms\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Verify the new permissions are added.
 *
 * @group metatag
 */
class PermissionsTest extends BrowserTestBase {

  // Contains helper methods.
  use \Drupal\Tests\metatag\Functional\MetatagHelperTrait;

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    // Modules for core functionality.
    'node',
    // Needed for the field UI testing.
    'field_ui',
    // This custom module.
    'metatag_extended_perms',
  ];

  /**
   * Permissions to check for.
   *
   * @var string
   */
  protected $permissions = [
    'basic' => [
      'abstract' => 'Abstract',
      'description' => 'Description',
      'keywords' => 'Keywords',
      'title' => 'Page title',
    ],
    // Tags in the "Advanced" group.
    'advanced' => [
      'cache_control' => 'Cache control',
      'canonical_url' => 'Canonical URL',
      'content_language' => 'Content Language',
      'expires' => 'Expires',
      'generator' => 'Generator',
      'geo_placename' => 'Geographical place name',
      'geo_position' => 'Geographical position',
      'geo_region' => 'Geographical region',
      'google' => 'Google',
      'icbm' => 'ICBM',
      'image_src' => 'Image',
      'news_keywords' => 'News Keywords',
      'next' => 'Next page URL',
      'original_source' => 'Original source',
      'pragma' => 'Pragma',
      'prev' => 'Previous page URL',
      'rating' => 'Rating',
      'referrer' => 'Referrer policy',
      'refresh' => 'Refresh',
      'revisit_after' => 'Revisit After',
      'rights' => 'Rights',
      // This one is more complicated, so skip it.
      // 'robots' => 'Robots',
      'set_cookie' => 'Set cookie',
      'shortlink' => 'Shortlink URL',
      'standout' => 'Standout',
    ],
  ];

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

    // Log in as the super admin.
    $this
      ->loginUser1();

    // Create a content type with a Metatag field.
    $this
      ->createContentType();
    $this
      ->drupalGet('admin/people/permissions');
  }

  /**
   * Confirm each permission is listed.
   *
   * User 1 will be logged in from the setUp() method.
   */
  public function testPermissionsExist() {

    // Load the front page.
    $this
      ->drupalGet('admin/people/permissions');

    // Confirm that the site didn't throw a server error or something else.
    $session = $this
      ->assertSession();
    $session
      ->statusCodeEquals(200);

    // Confirm that the page contains the standard text indicating this is the
    // permissions page.
    $session
      ->pageTextContains('Administer modules');
    $session
      ->pageTextContains('Administer site configuration');
    $session
      ->pageTextContains('Administer themes');
    $session
      ->pageTextContains('Administer software updates');

    // Look for each of the meta tags.
    foreach ($this->permissions as $group => $perms) {
      foreach ($perms as $tag_name => $tag_label) {

        // Look for the checkbox.
        $session
          ->fieldExists('anonymous[access metatag ' . $group . '__' . $tag_name . ']');
      }
    }
  }

  /**
   * Confirm that the node form isn't affected for user 1.
   *
   * User 1 will be logged in from the setUp() method.
   */
  public function testUser1() {

    // Load the node form.
    $this
      ->drupalGet('node/add/page');

    // Confirm that the site didn't throw a server error or something else.
    $session = $this
      ->assertSession();
    $session
      ->statusCodeEquals(200);

    // Look for each of the meta tags.
    foreach ($this->permissions as $group => $perms) {
      foreach ($perms as $tag_name => $tag_label) {

        // Look for the checkbox.
        $session
          ->fieldExists("field_metatag[0][{$group}][{$tag_name}]");
      }
    }
  }

  /**
   * Confirm that the node form is affected for a limited-access user.
   */
  public function testUserPerms() {

    // Split up the permissions into ones that will be granted and ones that
    // will not.
    $group_yes = 'basic';
    $group_no = 'advanced';

    // Work out a list of permissions to grant the user. These are base perms.
    $perms_yes = [
      'access administration pages',
      'access content',
      'administer meta tags',
      'administer nodes',
      'create page content',
    ];

    // Grant each of the "yes" tag's permissions.
    foreach ($this->permissions[$group_yes] as $tag_name => $tag_label) {
      $perms_yes[] = "access metatag {$group_yes}__{$tag_name}";
    }
    $this
      ->verbose($perms_yes);

    // Create a user account with the above permissions.
    $user = $this
      ->createUser($perms_yes);
    $this
      ->drupalLogin($user);

    // Load the node form.
    $this
      ->drupalGet('node/add/page');

    // Confirm that the site didn't throw a server error or something else.
    $session = $this
      ->assertSession();
    $session
      ->statusCodeEquals(200);

    // Look for each of the "yes" meta tags.
    foreach ($this->permissions[$group_yes] as $tag_name => $tag_label) {

      // Look for the checkbox.
      $session
        ->fieldExists("field_metatag[0][{$group_yes}][{$tag_name}]");
    }

    // Make sure each of the "no" meta tags is not present.
    foreach ($this->permissions[$group_no] as $tag_name => $tag_label) {

      // Look for the checkbox.
      $session
        ->fieldNotExists("field_metatag[0][{$group_no}][{$tag_name}]");
    }
  }

  /**
   * {@inheritdoc}
   */
  protected function createContentType(array $values = []) {
    parent::createContentType([
      'type' => 'page',
    ]);

    // Load a node form.
    $this
      ->drupalGet('node/add/page');

    // Add a metatag field to the entity type test_entity.
    $this
      ->drupalGet('admin/structure/types/manage/page/fields/add-field');
    $this
      ->assertSession()
      ->statusCodeEquals(200);
    $edit = [
      'label' => 'Metatag',
      'field_name' => 'metatag',
      'new_storage_type' => 'metatag',
    ];
    $this
      ->drupalPostForm(NULL, $edit, 'Save and continue');
    $this
      ->drupalPostForm(NULL, [], 'Save field settings');

    // Clear all settings.
    $this->container
      ->get('entity_field.manager')
      ->clearCachedFieldDefinitions();
  }

}

Classes

Namesort descending Description
PermissionsTest Verify the new permissions are added.