You are here

LocaleLibraryAlterTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/locale/src/Tests/LocaleLibraryAlterTest.php

File

core/modules/locale/src/Tests/LocaleLibraryAlterTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\locale\Tests\LocaleLibraryAlterTest.
 */
namespace Drupal\locale\Tests;

use Drupal\Core\Asset\AttachedAssets;
use Drupal\simpletest\WebTestBase;

/**
 * Tests localization of the JavaScript libraries.
 *
 * Currently, only the jQuery datepicker is localized using Drupal translations.
 *
 * @group locale
 */
class LocaleLibraryAlterTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'locale',
  );

  /**
   * Verifies that the datepicker can be localized.
   *
   * @see locale_library_alter()
   */
  public function testLibraryAlter() {
    $assets = new AttachedAssets();
    $assets
      ->setLibraries([
      'core/jquery.ui.datepicker',
    ]);
    $js_assets = $this->container
      ->get('asset.resolver')
      ->getJsAssets($assets, FALSE)[1];
    $this
      ->assertTrue(array_key_exists('core/modules/locale/locale.datepicker.js', $js_assets), 'locale.datepicker.js added to scripts.');
  }

}

Classes

Namesort descending Description
LocaleLibraryAlterTest Tests localization of the JavaScript libraries.