You are here

SimplenewsTestSubscriptionOutput.php in Simplenews 8.2

Same filename and directory in other branches
  1. 3.x tests/src/Functional/SimplenewsTestSubscriptionOutput.php

File

tests/src/Functional/SimplenewsTestSubscriptionOutput.php
View source
<?php

namespace Drupal\Tests\simplenews\Functional;


/**
 * Test subscription output on user profile page.
 *
 * @group simplenews
 */
class SimplenewsTestSubscriptionOutput extends SimplenewsTestBase {

  /**
   * Test subscription output visibility for different users.
   */
  public function testSubscriptionVisiblity() {

    // Enable the extra field.
    \Drupal::service('entity_display.repository')
      ->getViewDisplay('user', 'user')
      ->setComponent('simplenews', [
      'label' => 'hidden',
      'type' => 'simplenews',
    ])
      ->save();

    // Create admin user.
    $admin_user = $this
      ->drupalCreateUser([
      'administer users',
    ]);

    // Create user that can view user profiles.
    $user = $this
      ->drupalCreateUser([
      'access user profiles',
      'subscribe to newsletters',
      'access content',
    ]);
    $this
      ->drupalLogin($admin_user);

    // Tests extra fields for admin user.
    $this
      ->drupalGet('user/' . $admin_user
      ->id());
    $this
      ->assertLink('Manage subscriptions');
    $this
      ->drupalLogout();

    // Tests extra fields for user.
    $this
      ->drupalLogin($user);
    $this
      ->drupalGet('user/' . $admin_user
      ->id());
    $this
      ->assertNoLink('Manage subscriptions');
    $this
      ->drupalGet('user/' . $user
      ->id());
    $this
      ->assertLink('Manage subscriptions');
    $this
      ->drupalLogout();

    // Tests extra fields for anonymous users.
    $this
      ->drupalGet('user/' . $admin_user
      ->id());
    $this
      ->assertNoLink('Manage subscriptions');
    $this
      ->drupalGet('user/' . $user
      ->id());
    $this
      ->assertNoLink('Manage subscriptions');
  }

}

Classes

Namesort descending Description
SimplenewsTestSubscriptionOutput Test subscription output on user profile page.