InstallTranslationFilePatternTest.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php
  2. 8.9.x core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php
  3. 11.x core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php

Namespace

Drupal\Tests\system\Kernel\Installer

File

core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\system\Kernel\Installer;

use Drupal\Core\StringTranslation\Translator\FileTranslation;
use Drupal\KernelTests\KernelTestBase;

/**
 * Tests for installer language support.
 *
 * @group Installer
 */
class InstallTranslationFilePatternTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'system',
  ];
  
  /**
   * @var \Drupal\Core\StringTranslation\Translator\FileTranslation
   */
  protected $fileTranslation;
  
  /**
   * @var \ReflectionMethod
   */
  protected $filePatternMethod;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->fileTranslation = new FileTranslation('filename', $this->container
      ->get('file_system'));
    $method = new \ReflectionMethod('\\Drupal\\Core\\StringTranslation\\Translator\\FileTranslation', 'getTranslationFilesPattern');
    $this->filePatternMethod = $method;
  }
  
  /**
   * @dataProvider providerValidTranslationFiles
   */
  public function testFilesPatternValid($langcode, $filename) : void {
    $pattern = $this->filePatternMethod
      ->invoke($this->fileTranslation, $langcode);
    $this->assertNotEmpty(preg_match($pattern, $filename));
  }
  
  /**
   * @return array
   */
  public static function providerValidTranslationFiles() {
    return [
      [
        'hu',
        'drupal-8.0.0-alpha1.hu.po',
      ],
      [
        'ta',
        'drupal-8.10.10-beta12.ta.po',
      ],
      [
        'hi',
        'drupal-8.0.0.hi.po',
      ],
    ];
  }
  
  /**
   * @dataProvider providerInvalidTranslationFiles
   */
  public function testFilesPatternInvalid($langcode, $filename) : void {
    $pattern = $this->filePatternMethod
      ->invoke($this->fileTranslation, $langcode);
    $this->assertEmpty(preg_match($pattern, $filename));
  }
  
  /**
   * @return array
   */
  public static function providerInvalidTranslationFiles() {
    return [
      [
        'hu',
        'drupal-alpha1-*-hu.po',
      ],
      [
        'ta',
        'drupal-beta12.ta',
      ],
      [
        'hi',
        'drupal-hi.po',
      ],
      [
        'de',
        'drupal-dummy-de.po',
      ],
      [
        'hu',
        'drupal-10.0.1.alpha1-hu.po',
      ],
    ];
  }

}

Classes

Title Deprecated Summary
InstallTranslationFilePatternTest Tests for installer language support.

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