currency-8.x-3.3/tests/src/Unit/Entity/CurrencyLocale/CurrencyLocaleDeleteFormTest.php
tests/src/Unit/Entity/CurrencyLocale/CurrencyLocaleDeleteFormTest.php
<?php
namespace Drupal\Tests\currency\Unit\Entity\CurrencyLocale {
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Url;
use Drupal\currency\Entity\CurrencyLocale\CurrencyLocaleDeleteForm;
use Drupal\currency\Entity\CurrencyLocaleInterface;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Tests the currency locale delete form.
*
* @coversDefaultClass \Drupal\currency\Entity\CurrencyLocale\CurrencyLocaleDeleteForm
*
* @group Currency
*/
class CurrencyLocaleDeleteFormTest extends UnitTestCase {
/**
* The currency.
*
* @var \Drupal\currency\Entity\CurrencyLocaleInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $currency;
/**
* The string translator.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $stringTranslation;
/**
* The messenger.
*
* @var \Drupal\Core\Messenger\MessengerInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $messenger;
/**
* The class under test.
*
* @var \Drupal\currency\Entity\CurrencyLocale\CurrencyLocaleDeleteForm
*/
protected $sut;
/**
* {@inheritdoc}
*/
public function setUp(): void {
parent::setUp();
$this->currency = $this->createMock(CurrencyLocaleInterface::class);
$this->stringTranslation = $this->getStringTranslationStub();
$this->messenger = $this->createMock(MessengerInterface::class);
$this->sut = new CurrencyLocaleDeleteForm($this->stringTranslation);
$this->sut->setEntity($this->currency);
$this->sut->setMessenger($this->messenger);
}
/**
* @covers ::create
* @covers ::__construct
*/
public function testCreate() {
$container = $this->createMock(ContainerInterface::class);
$container->expects($this->once())
->method('get')
->with('string_translation')
->willReturn($this->stringTranslation);
$sut = CurrencyLocaleDeleteForm::create($container);
$this->assertInstanceOf(CurrencyLocaleDeleteForm::class, $sut);
}
/**
* @covers ::getQuestion
*/
public function testGetQuestion() {
$this->assertInstanceOf(TranslatableMarkup::class, $this->sut->getQuestion());
}
/**
* @covers ::getConfirmText
*/
public function testGetConfirmText() {
$this->assertInstanceOf(TranslatableMarkup::class, $this->sut->getConfirmText());
}
/**
* @covers ::getCancelUrl
*/
public function testGetCancelUrl() {
$url = $this->sut->getCancelUrl();
$this->assertInstanceOf(Url::class, $url);
$this->assertSame('entity.currency_locale.collection', $url->getRouteName());
}
/**
* @covers ::submitForm
*/
public function testSubmitForm() {
$this->currency->expects($this->once())
->method('delete');
$form = [];
$form_state = $this->createMock(FormStateInterface::class);
$form_state->expects($this->once())
->method('setRedirectUrl');
$this->sut->submitForm($form, $form_state);
}
}
}
