public function SwiftMailerSettingsTest::testTransportSettings in Swift Mailer 8
Tests the Transport Settings.
File
- src/
Tests/ SwiftMailerSettingsTest.php, line 37
Class
- SwiftMailerSettingsTest
- Tests the Transport and Message Settings UI.
Namespace
Drupal\swiftmailer\TestsCode
public function testTransportSettings() {
// Unauthorized user should not have access.
$this
->drupalGet('admin/config/swiftmailer/transport');
$this
->assertResponse(403);
// Login..
$user = $this
->createUser([
'administer swiftmailer',
]);
$this
->drupalLogin($user);
$this
->drupalGet(t('admin/config/swiftmailer/transport'));
$this
->assertText(t('Transport types'));
// Select Smtp tranport option.
$this
->drupalPostAjaxForm(NULL, [
'transport[type]' => 'smtp',
], [
'transport[type]' => 'smtp',
]);
$this
->drupalPostForm(NULL, [
'transport[type]' => 'smtp',
'transport[configuration][smtp][credential_provider]' => 'swiftmailer',
'transport[configuration][smtp][credentials][swiftmailer][username]' => 'example',
'transport[configuration][smtp][credentials][swiftmailer][password]' => 'pass',
], t('Save configuration'));
$this
->assertText('using the SMTP transport type.');
// Loading configuration to check if is set up correctly.
$config = $this
->config('swiftmailer.transport');
$transport = $config
->get('transport');
$provider = $config
->get('smtp_credential_provider');
$user = $config
->get('smtp_credentials.swiftmailer.username');
$password = $config
->get('smtp_credentials.swiftmailer.password');
$this
->assertEqual($transport, 'smtp');
$this
->assertEqual($provider, 'swiftmailer');
$this
->assertEqual($user, 'example');
$this
->assertEqual($password, 'pass');
// Select Sppol tranport option.
$this
->drupalPostAjaxForm(NULL, [
'transport[type]' => 'spool',
], [
'transport[type]' => 'spool',
]);
$this
->drupalPostForm(NULL, [
'transport[type]' => 'spool',
'transport[configuration][spool][directory]' => 'aaaaa',
], t('Save configuration'));
$this
->assertText('using the Spool transport type.');
// Loading configuration to check if is set up correctly.
$config = $this
->config('swiftmailer.transport');
$transport = $config
->get('transport');
$directory = $config
->get('spool_directory');
$this
->assertEqual($transport, 'spool');
$this
->assertEqual($directory, 'aaaaa');
// Select Sendmail tranport option.
$this
->drupalPostAjaxForm(NULL, [
'transport[type]' => 'sendmail',
], [
'transport[type]' => 'sendmail',
]);
$this
->drupalPostForm(NULL, [
'transport[type]' => 'sendmail',
'transport[configuration][sendmail][path]' => 'bbbbb',
], t('Save configuration'));
$this
->assertText('using the Sendmail transport type.');
// Loading configuration to check if is set up correctly.
$config = $this
->config('swiftmailer.transport');
$transport = $config
->get('transport');
$path = $config
->get('sendmail_path');
$this
->assertEqual($transport, 'sendmail');
$this
->assertEqual($path, 'bbbbb');
}