You are here

class LingotekSettingsConnectFormTest in Lingotek Translation 3.5.x

Same name and namespace in other branches
  1. 4.0.x tests/src/Unit/Form/LingotekSettingsConnectFormTest.php \Drupal\Tests\lingotek\Unit\Form\LingotekSettingsConnectFormTest
  2. 3.3.x tests/src/Unit/Form/LingotekSettingsConnectFormTest.php \Drupal\Tests\lingotek\Unit\Form\LingotekSettingsConnectFormTest
  3. 3.4.x tests/src/Unit/Form/LingotekSettingsConnectFormTest.php \Drupal\Tests\lingotek\Unit\Form\LingotekSettingsConnectFormTest
  4. 3.6.x tests/src/Unit/Form/LingotekSettingsConnectFormTest.php \Drupal\Tests\lingotek\Unit\Form\LingotekSettingsConnectFormTest
  5. 3.7.x tests/src/Unit/Form/LingotekSettingsConnectFormTest.php \Drupal\Tests\lingotek\Unit\Form\LingotekSettingsConnectFormTest
  6. 3.8.x tests/src/Unit/Form/LingotekSettingsConnectFormTest.php \Drupal\Tests\lingotek\Unit\Form\LingotekSettingsConnectFormTest

@coversDefaultClass \Drupal\lingotek\Form\LingotekSettingsConnectForm @group lingotek @preserveGlobalState disabled

Hierarchy

Expanded class hierarchy of LingotekSettingsConnectFormTest

File

tests/src/Unit/Form/LingotekSettingsConnectFormTest.php, line 20

Namespace

Drupal\Tests\lingotek\Unit\Form
View source
class LingotekSettingsConnectFormTest extends UnitTestCase {

  /**
   * The Lingotek service
   *
   * @var \Drupal\lingotek\LingotekInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $lingotek;

  /**
   * The config factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $configFactory;

  /**
   * The Lingotek Filter manager.
   *
   * @var \Drupal\lingotek\LingotekFilterManagerInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $lingotekFilterManager;

  /**
   * The url generator.
   *
   * @var \Drupal\Core\Routing\UrlGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $urlGenerator;

  /**
   * The link generator.
   *
   * @var \Drupal\Core\Utility\LinkGeneratorInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $linkGenerator;

  /**
   * @var \Drupal\lingotek\Form\LingotekSettingsTabAccountForm
   */
  protected $form;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->lingotek = $this
      ->createMock(LingotekInterface::class);
    $this->configFactory = $this
      ->createMock(ConfigFactoryInterface::class);
    $this->urlGenerator = $this
      ->createMock(UrlGeneratorInterface::class);
    $this->linkGenerator = $this
      ->createMock(LinkGeneratorInterface::class);
    $messenger = $this
      ->createMock(MessengerInterface::class);
    $this->form = new LingotekSettingsConnectForm($this->lingotek, $this->configFactory, $this->urlGenerator, $this->linkGenerator);
    $this->form
      ->setStringTranslation($this
      ->getStringTranslationStub());
    $this->form
      ->setMessenger($messenger);
  }

  /**
   * @covers ::getFormId
   */
  public function testGetFormId() {
    $form_id = $this->form
      ->getFormID();
    $this
      ->assertSame('lingotek.connect_form', $form_id);
  }

  /**
   * @covers ::buildForm
   */
  public function testBuildForm() {
    $config = $this
      ->createMock(Config::class);
    $config
      ->expects($this
      ->any())
      ->method('get')
      ->willReturnMap([
      [
        'account.login_id',
        'test@example.com',
      ],
      [
        'account.access_token',
        'ef4b4d69-5be2-4513-b4f1-7e0f6f9511a0',
      ],
      [
        'account.default_client_id',
        'my-client-id',
      ],
      [
        'account.host',
        'http://example.com',
      ],
    ]);
    $this->configFactory
      ->expects($this
      ->once())
      ->method('get')
      ->with('lingotek.settings')
      ->willReturn($config);
    $this->urlGenerator
      ->expects($this
      ->once())
      ->method('generateFromRoute')
      ->with('lingotek.setup_account_handshake')
      ->willReturn('http://example.com/setup-account-handshake');
    $build = [];
    $form_state = $this
      ->createMock(FormStateInterface::class);
    $build = $this->form
      ->buildForm($build, $form_state);
    $this
      ->assertSame('http://example.com/?client_id=my-client-id&response_type=token&redirect_uri=http%3A%2F%2Fexample.com%2Fsetup-account-handshake', $build['account_types']['existing_account']['cta']['#url']
      ->getUri());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LingotekSettingsConnectFormTest::$configFactory protected property The config factory.
LingotekSettingsConnectFormTest::$form protected property
LingotekSettingsConnectFormTest::$lingotek protected property The Lingotek service
LingotekSettingsConnectFormTest::$lingotekFilterManager protected property The Lingotek Filter manager.
LingotekSettingsConnectFormTest::$linkGenerator protected property The link generator.
LingotekSettingsConnectFormTest::$urlGenerator protected property The url generator.
LingotekSettingsConnectFormTest::setUp protected function Overrides UnitTestCase::setUp
LingotekSettingsConnectFormTest::testBuildForm public function @covers ::buildForm
LingotekSettingsConnectFormTest::testGetFormId public function @covers ::getFormId
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function