View source
<?php
namespace Drupal\Tests\payment_form\Unit\Plugin\Payment\Type;
use Drupal\Core\Form\FormState;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\payment\Plugin\Payment\Method\PaymentMethodManagerInterface;
use Drupal\payment_form\Plugin\Payment\Type\PaymentFormConfigurationForm;
use Drupal\plugin\Plugin\Plugin\PluginSelector\PluginSelectorInterface;
use Drupal\plugin\Plugin\Plugin\PluginSelector\PluginSelectorManagerInterface;
use Drupal\plugin\PluginType\PluginTypeInterface;
use Drupal\plugin\PluginType\PluginTypeManagerInterface;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\DependencyInjection\ContainerInterface;
class PaymentFormConfigurationFormTest extends UnitTestCase {
protected $configFactory;
protected $configFactoryConfiguration = [];
protected $paymentMethodManager;
protected $pluginSelector;
protected $pluginSelectorManager;
protected $pluginSelectorType;
protected $selectedPluginSelector;
protected $stringTranslation;
protected $messenger;
protected $sut;
public function setUp() : void {
$this->configFactoryConfiguration = [
'payment_form.payment_type' => [
'limit_allowed_plugins' => TRUE,
'allowed_plugin_ids' => [
$this
->randomMachineName(),
],
'plugin_selector_id' => $this
->randomMachineName(),
],
];
$this->configFactory = $this
->getConfigFactoryStub($this->configFactoryConfiguration);
$this->paymentMethodManager = $this
->createMock(PaymentMethodManagerInterface::class);
$this->pluginSelector = $this
->createMock(PluginSelectorInterface::class);
$this->pluginSelectorManager = $this
->createMock(PluginSelectorManagerInterface::class);
$this->stringTranslation = $this
->getStringTranslationStub();
$this->pluginSelectorType = $this
->prophesize(PluginTypeInterface::class);
$this->pluginSelectorType
->getPluginManager()
->willReturn($this->pluginSelectorManager);
$this->selectedPluginSelector = $this
->createMock(PluginSelectorInterface::class);
$this->messenger = $this
->createMock(MessengerInterface::class);
$this->sut = new PaymentFormConfigurationForm($this->configFactory, $this->stringTranslation, $this->paymentMethodManager, $this->pluginSelectorType
->reveal());
$this->sut
->setMessenger($this->messenger);
}
function testCreate() {
$plugin_type_manager = $this
->prophesize(PluginTypeManagerInterface::class);
$plugin_type_manager
->getPluginType('plugin_selector')
->willReturn($this->pluginSelectorType
->reveal());
$container = $this
->createMock(ContainerInterface::class);
$map = [
[
'config.factory',
ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
$this->configFactory,
],
[
'plugin.manager.payment.method',
ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
$this->paymentMethodManager,
],
[
'plugin.plugin_type_manager',
ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
$plugin_type_manager
->reveal(),
],
[
'string_translation',
ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE,
$this->stringTranslation,
],
];
$container
->expects($this
->any())
->method('get')
->willReturnMap($map);
$sut = PaymentFormConfigurationForm::create($container);
$this
->assertInstanceOf(PaymentFormConfigurationForm::class, $sut);
}
public function testGetFormId() {
$this
->assertIsString($this->sut
->getFormId());
}
public function testBuildForm() {
$form = [];
$form_state = new FormState();
$map = [
[
'payment_radios',
[],
$this->pluginSelector,
],
[
$this->configFactoryConfiguration['payment_form.payment_type']['plugin_selector_id'],
[],
$this->selectedPluginSelector,
],
];
$this->pluginSelectorManager
->expects($this
->atLeast(count($map)))
->method('createInstance')
->willReturnMap($map);
$this->pluginSelector
->expects($this
->once())
->method('buildSelectorForm')
->with([], $form_state)
->willReturn($this->pluginSelector);
$this->paymentMethodManager
->expects($this
->atLeastOnce())
->method('getDefinitions')
->willReturn([]);
$build = $this->sut
->buildForm($form, $form_state);
$this
->assertIsArray($build);
}
public function testValidateForm() {
$form = [
'plugin_selector' => [
'foo' => $this
->randomMachineName(),
],
];
$form_state = new FormState();
$form_state
->setValues([
'plugin_selector_id' => $this->configFactoryConfiguration['payment_form.payment_type']['plugin_selector_id'],
'allowed_plugin_ids' => $this->configFactoryConfiguration['payment_form.payment_type']['allowed_plugin_ids'],
'limit_allowed_plugins' => $this->configFactoryConfiguration['payment_form.payment_type']['limit_allowed_plugins'],
]);
$map = [
[
'payment_radios',
[],
$this->pluginSelector,
],
[
$this->configFactoryConfiguration['payment_form.payment_type']['plugin_selector_id'],
[],
$this->selectedPluginSelector,
],
];
$this->pluginSelectorManager
->expects($this
->atLeast(count($map)))
->method('createInstance')
->willReturnMap($map);
$this->pluginSelector
->expects($this
->once())
->method('validateSelectorForm')
->with($form['plugin_selector'], $form_state);
$this->sut
->validateForm($form, $form_state);
}
public function testSubmitForm() {
$form = [
'plugin_selector' => [
'foo' => $this
->randomMachineName(),
],
];
$form_state = new FormState();
$form_state
->setValues([
'plugin_selector_id' => $this->configFactoryConfiguration['payment_form.payment_type']['plugin_selector_id'],
'allowed_plugin_ids' => $this->configFactoryConfiguration['payment_form.payment_type']['allowed_plugin_ids'],
'limit_allowed_plugins' => $this->configFactoryConfiguration['payment_form.payment_type']['limit_allowed_plugins'],
]);
$map = [
[
'payment_radios',
[],
$this->pluginSelector,
],
[
$this->configFactoryConfiguration['payment_form.payment_type']['plugin_selector_id'],
[],
$this->selectedPluginSelector,
],
];
$this->pluginSelectorManager
->expects($this
->atLeast(count($map)))
->method('createInstance')
->willReturnMap($map);
$this->pluginSelector
->expects($this
->once())
->method('submitSelectorForm')
->with($form['plugin_selector'], $form_state);
$this->pluginSelector
->expects($this
->once())
->method('getSelectedPlugin')
->willReturn($this->selectedPluginSelector);
$this->sut
->submitForm($form, $form_state);
}
}