class LocaleLibraryAlterTest

Tests localization of the JavaScript libraries.

Currently, only the jQuery datepicker is localized using Drupal translations.

@group locale

Hierarchy

Expanded class hierarchy of LocaleLibraryAlterTest

File

core/modules/locale/tests/src/Kernel/LocaleLibraryAlterTest.php, line 15

Namespace

Drupal\Tests\locale\Kernel
View source
class LocaleLibraryAlterTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'locale',
  ];
  
  /**
   * Verifies that the datepicker can be localized.
   *
   * @see locale_library_alter()
   */
  public function testLibraryAlter() {
    $this->installSchema('locale', [
      'locales_location',
      'locales_source',
    ]);
    $assets = new AttachedAssets();
    $assets->setLibraries([
      'core/jquery.ui.datepicker',
    ]);
    $js_assets = $this->container
      ->get('asset.resolver')
      ->getJsAssets($assets, FALSE)[1];
    $this->assertArrayHasKey('core/modules/locale/locale.datepicker.js', $js_assets);
  }

}

Members

Title Sort descending Modifiers Object type Summary
LocaleLibraryAlterTest::$modules protected static property
LocaleLibraryAlterTest::testLibraryAlter public function Verifies that the datepicker can be localized.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.