function MailHandlerTest::getMockSender

Same name and namespace in other branches
  1. 9 core/modules/contact/tests/src/Unit/MailHandlerTest.php \Drupal\Tests\contact\Unit\MailHandlerTest::getMockSender()
  2. 10 core/modules/contact/tests/src/Unit/MailHandlerTest.php \Drupal\Tests\contact\Unit\MailHandlerTest::getMockSender()
  3. 11.x core/modules/contact/tests/src/Unit/MailHandlerTest.php \Drupal\Tests\contact\Unit\MailHandlerTest::getMockSender()

Builds a mock sender on given scenario.

Parameters

bool $anonymous: TRUE if the sender is anonymous.

string $mail_address: The mail address of the user.

Return value

\Drupal\Core\Session\AccountInterface|\PHPUnit\Framework\MockObject\MockObject Mock sender for testing.

1 call to MailHandlerTest::getMockSender()
MailHandlerTest::getSendMailMessages in core/modules/contact/tests/src/Unit/MailHandlerTest.php
Data provider for ::testSendMailMessages.

File

core/modules/contact/tests/src/Unit/MailHandlerTest.php, line 294

Class

MailHandlerTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21contact%21src%21MailHandler.php/class/MailHandler/8.9.x" title="Provides a class for handling assembly and dispatch of contact mail messages." class="local">\Drupal\contact\MailHandler</a> @group contact

Namespace

Drupal\Tests\contact\Unit

Code

protected function getMockSender($anonymous = TRUE, $mail_address = 'anonymous@drupal.org') {
    $sender = $this->createMock('\\Drupal\\Core\\Session\\AccountInterface');
    $sender->expects($this->once())
        ->method('isAnonymous')
        ->willReturn($anonymous);
    $sender->expects($this->any())
        ->method('getEmail')
        ->willReturn($mail_address);
    $sender->expects($this->any())
        ->method('getDisplayName')
        ->willReturn('user');
    // User ID 1 has special implications, use 3 instead.
    $sender->expects($this->any())
        ->method('id')
        ->willReturn($anonymous ? 0 : 3);
    if ($anonymous) {
        // Anonymous user values set in params include updated values for name and
        // mail.
        $sender->name = 'Anonymous (not verified)';
        $sender->mail = 'anonymous@drupal.org';
    }
    return $sender;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.