Mercurial > hg > isophonics-drupal-site
diff core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | 129ea1e6d783 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php Wed Nov 29 16:09:58 2017 +0000 @@ -0,0 +1,64 @@ +<?php + +namespace Drupal\Tests\locale\Kernel; + +use Drupal\KernelTests\KernelTestBase; + +/** + * Tests locale translation project handling. + * + * @group locale + */ +class LocaleTranslationProjectsTest extends KernelTestBase { + + /** + * {@inheritdoc} + */ + public static $modules = ['locale', 'locale_test', 'system']; + + /** + * The module handler used in this test. + * + * @var \Drupal\Core\Extension\ModuleHandlerInterface + */ + protected $moduleHandler; + + /** + * The locale project storage used in this test. + * + * @var \Drupal\locale\LocaleProjectStorageInterface + */ + protected $projectStorage; + + /** + * {@inheritdoc} + */ + protected function setUp() { + parent::setUp(); + + $this->moduleHandler = $this->container->get('module_handler'); + $this->projectStorage = $this->container->get('locale.project'); + \Drupal::state()->set('locale.remove_core_project', TRUE); + } + + + /** + * Tests locale_translation_clear_cache_projects(). + */ + public function testLocaleTranslationClearCacheProjects() { + $this->moduleHandler->loadInclude('locale', 'inc', 'locale.translation'); + + $expected = []; + $this->assertIdentical($expected, locale_translation_get_projects()); + + $this->projectStorage->set('foo', []); + $expected['foo'] = new \stdClass(); + $this->assertEqual($expected, locale_translation_get_projects()); + + $this->projectStorage->set('bar', []); + locale_translation_clear_cache_projects(); + $expected['bar'] = new \stdClass(); + $this->assertEqual($expected, locale_translation_get_projects()); + } + +}