mirror of
https://github.com/flarum/framework.git
synced 2025-02-09 03:01:45 +08:00
128 lines
3.0 KiB
PHP
128 lines
3.0 KiB
PHP
![]() |
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of Flarum.
|
||
|
*
|
||
|
* For detailed copyright and license information, please view the
|
||
|
* LICENSE file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
namespace Flarum\Tests\integration\extenders;
|
||
|
|
||
|
use Flarum\Extend;
|
||
|
use Flarum\Mail\DriverInterface;
|
||
|
use Flarum\Settings\SettingsRepositoryInterface;
|
||
|
use Flarum\Tests\integration\BuildsHttpRequests;
|
||
|
use Flarum\Tests\integration\RetrievesAuthorizedUsers;
|
||
|
use Flarum\Tests\integration\TestCase;
|
||
|
use Illuminate\Contracts\Validation\Factory;
|
||
|
use Illuminate\Support\MessageBag;
|
||
|
use Swift_NullTransport;
|
||
|
use Swift_Transport;
|
||
|
|
||
|
class MailTest extends TestCase
|
||
|
{
|
||
|
use RetrievesAuthorizedUsers;
|
||
|
use BuildsHttpRequests;
|
||
|
|
||
|
protected function prepDb()
|
||
|
{
|
||
|
$this->prepareDatabase([
|
||
|
'users' => [
|
||
|
$this->adminUser(),
|
||
|
$this->normalUser(),
|
||
|
],
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function custom_driver_doesnt_exist_by_default()
|
||
|
{
|
||
|
$this->prepDb();
|
||
|
|
||
|
$response = $this->send(
|
||
|
$this->requestAsUser(
|
||
|
$this->request('GET', '/api/mail-settings'),
|
||
|
1
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$drivers = json_decode($response->getBody(), true)['data']['attributes']['fields'];
|
||
|
|
||
|
$this->assertArrayNotHasKey('custom', $drivers);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function added_driver_appears_in_mail_settings()
|
||
|
{
|
||
|
$this->extend(
|
||
|
(new Extend\Mail())
|
||
|
->driver('custom', CustomDriver::class)
|
||
|
);
|
||
|
|
||
|
$this->prepDb();
|
||
|
|
||
|
$response = $this->send(
|
||
|
$this->requestAsUser(
|
||
|
$this->request('GET', '/api/mail-settings'),
|
||
|
1
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$drivers = json_decode($response->getBody(), true)['data']['attributes']['fields'];
|
||
|
|
||
|
$this->assertArrayHasKey('custom', $drivers);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function adding_driver_with_duplicate_name_overrides_fields()
|
||
|
{
|
||
|
$this->extend(
|
||
|
(new Extend\Mail())
|
||
|
->driver('smtp', CustomDriver::class)
|
||
|
);
|
||
|
|
||
|
$this->prepDb();
|
||
|
|
||
|
$response = $this->send(
|
||
|
$this->requestAsUser(
|
||
|
$this->request('GET', '/api/mail-settings'),
|
||
|
1
|
||
|
)
|
||
|
);
|
||
|
|
||
|
$requiredFields = json_decode($response->getBody(), true)['data']['attributes']['fields']['smtp'];
|
||
|
|
||
|
$this->assertEquals($requiredFields, ['customSetting1' => '']);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class CustomDriver implements DriverInterface
|
||
|
{
|
||
|
public function availableSettings(): array
|
||
|
{
|
||
|
return ['customSetting1' => ''];
|
||
|
}
|
||
|
|
||
|
public function validate(SettingsRepositoryInterface $settings, Factory $validator): MessageBag
|
||
|
{
|
||
|
return new MessageBag;
|
||
|
}
|
||
|
|
||
|
public function canSend(): bool
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function buildTransport(SettingsRepositoryInterface $settings): Swift_Transport
|
||
|
{
|
||
|
return new Swift_NullTransport();
|
||
|
}
|
||
|
}
|