LingotekLanguageContentSettingsFormTest.php in Lingotek Translation 3.8.x
Same filename and directory in other branches
- 8.2 tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 4.0.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.0.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.1.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.2.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.3.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.4.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.5.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.6.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
- 3.7.x tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.php
Namespace
Drupal\Tests\lingotek\Functional\FormFile
tests/src/Functional/Form/LingotekLanguageContentSettingsFormTest.phpView source
<?php
namespace Drupal\Tests\lingotek\Functional\Form;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\language\Entity\ContentLanguageSettings;
use Drupal\Tests\lingotek\Functional\LingotekTestBase;
/**
* Tests the Language Content Settings form alters.
*
* @group lingotek
*/
class LingotekLanguageContentSettingsFormTest extends LingotekTestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
'block',
'node',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
// Create Article node types.
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
// Add a language.
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
// Enable translation for the current entity type and ensure the change is
// picked up.
ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
// Rebuild the container so that the new languages are picked up by services
// that hold a list of languages.
$this
->rebuildContainer();
$this
->saveLingotekContentTranslationSettingsForNodeTypes();
}
public function testLingotekMetadataFieldNotPresent() {
$this
->drupalGet('admin/config/regional/content-language');
$this
->assertNoText('Lingotek translation source');
$this
->assertNoText('Lingotek metadata');
}
}
Classes
Name | Description |
---|---|
LingotekLanguageContentSettingsFormTest | Tests the Language Content Settings form alters. |