class EmailActionTest
Same name and namespace in other branches
- 11.x core/tests/Drupal/KernelTests/Core/Action/EmailActionTest.php \Drupal\KernelTests\Core\Action\EmailActionTest
- 10 core/tests/Drupal/KernelTests/Core/Action/EmailActionTest.php \Drupal\KernelTests\Core\Action\EmailActionTest
- 8.9.x core/tests/Drupal/KernelTests/Core/Action/EmailActionTest.php \Drupal\KernelTests\Core\Action\EmailActionTest
Tests for the EmailAction plugin.
@group action
Hierarchy
- class \Drupal\KernelTests\KernelTestBase implements \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertLegacyTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\ExtensionListTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\KernelTests\Core\Action\EmailActionTest uses \Drupal\Core\Test\AssertMailTrait extends \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of EmailActionTest
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Action/ EmailActionTest.php, line 13
Namespace
Drupal\KernelTests\Core\ActionView source
class EmailActionTest extends KernelTestBase {
use AssertMailTrait;
/**
* {@inheritdoc}
*/
protected static $modules = [
'system',
'user',
'dblog',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->installEntitySchema('user');
$this->installSchema('dblog', [
'watchdog',
]);
}
/**
* Tests the email action plugin.
*/
public function testEmailAction() {
$this->config('system.site')
->set('mail', 'test@example.com')
->save();
/** @var \Drupal\Core\Action\ActionManager $plugin_manager */
$plugin_manager = $this->container
->get('plugin.manager.action');
$configuration = [
'recipient' => 'test@example.com',
'subject' => 'Test subject',
'message' => 'Test message',
];
$plugin_manager->createInstance('action_send_email_action', $configuration)
->execute();
$mails = $this->getMails();
$this->assertCount(1, $this->getMails());
$this->assertEquals('test@example.com', $mails[0]['to']);
$this->assertEquals('Test subject', $mails[0]['subject']);
$this->assertEquals("Test message\n", $mails[0]['body']);
// Ensure that the email sending is logged.
$log = \Drupal::database()->select('watchdog', 'w')
->fields('w', [
'message',
'variables',
])
->orderBy('wid', 'DESC')
->range(0, 1)
->execute()
->fetch();
$this->assertEquals('Sent email to %recipient', $log->message);
$variables = unserialize($log->variables);
$this->assertEquals('test@example.com', $variables['%recipient']);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.