LocaleBatchTest.php

Same filename and directory in other branches
  1. 11.x core/modules/locale/tests/src/Kernel/LocaleBatchTest.php

Namespace

Drupal\Tests\locale\Kernel

File

core/modules/locale/tests/src/Kernel/LocaleBatchTest.php

View source
<?php

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

use Drupal\KernelTests\KernelTestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
 * Tests locale batches.
 */
class LocaleBatchTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'locale',
    'language',
  ];
  
  /**
   * Checks that the import batch finishes if the translation has already been imported.
   */
  public function testBuildProjects() : void {
    $this->installConfig([
      'locale',
    ]);
    $this->installSchema('locale', [
      'locale_file',
    ]);
    $this->container
      ->get('module_handler')
      ->loadInclude('locale', 'batch.inc');
    \Drupal::database()->insert('locale_file')
      ->fields([
      'project' => 'drupal',
      'langcode' => 'en',
      'filename' => 'drupal.po',
      'version' => \Drupal::VERSION,
      'timestamp' => time(),
    ])
      ->execute();
    $context = [];
    locale_translation_batch_fetch_import('drupal', 'en', [], $context);
    $this->assertEquals(1, $context['finished']);
    $this->assertEquals('Ignoring already imported translation for drupal.', $context['message']);
  }
  
  /**
   * Tests English translations skip default drupal.org pattern.
   */
  public function testEnglishTranslationSkipsDefaultPattern() : void {
    $this->installConfig([
      'locale',
      'language',
    ]);
    $this->installSchema('locale', [
      'locales_source',
      'locales_target',
      'locale_file',
    ]);
    $this->container
      ->get('module_handler')
      ->loadInclude('locale', 'batch.inc');
    // Create source matching default drupal.org pattern.
    $source = (object) [
      'name' => 'test_module',
      'langcode' => 'en',
      'project' => 'test_module',
      'version' => '1.0.0',
      'core' => 'all',
      'files' => [
        LOCALE_TRANSLATION_REMOTE => (object) [
          'uri' => 'https://ftp.drupal.org/files/translations/all/test_module/test_module-1.0.0.en.po',
        ],
      ],
    ];
    \Drupal::keyValue('locale.translation_status')->setMultiple([
      'test_module' => [
        'en' => $source,
      ],
    ]);
    $context = [
      'results' => [],
    ];
    locale_translation_batch_status_check('test_module', 'en', [
      'use_remote' => TRUE,
      'finish_feedback' => TRUE,
    ], $context);
    // Should be marked as failed (skipped) for English default pattern.
    $this->assertContains('test_module', $context['results']['failed_files']);
    $this->assertCount(0, $context['results']['files'] ?? []);
  }
  
  /**
   * Tests non-English languages do not skip default drupal.org pattern.
   */
  public function testNonEnglishLanguagesUnaffected() : void {
    $this->installConfig([
      'locale',
      'language',
    ]);
    $this->installSchema('locale', [
      'locales_source',
      'locales_target',
      'locale_file',
    ]);
    $this->container
      ->get('module_handler')
      ->loadInclude('locale', 'batch.inc');
    $source = (object) [
      'name' => 'test_module',
      'langcode' => 'de',
      'project' => 'test_module',
      'version' => '1.0.0',
      'core' => 'all',
      'files' => [
        LOCALE_TRANSLATION_REMOTE => (object) [
          'uri' => 'https://ftp.drupal.org/files/translations/all/test_module/test_module-1.0.0.de.po',
        ],
      ],
    ];
    \Drupal::keyValue('locale.translation_status')->setMultiple([
      'test_module' => [
        'de' => $source,
      ],
    ]);
    $context = [
      'results' => [],
    ];
    locale_translation_batch_status_check('test_module', 'de', [
      'use_remote' => TRUE,
      'finish_feedback' => TRUE,
    ], $context);
    $this->assertContains('test_module', $context['results']['files']);
    $this->assertCount(0, $context['results']['failed_files'] ?? []);
  }

}

Classes

Title Deprecated Summary
LocaleBatchTest Tests locale batches.

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