You are here

class EntityTypeWithoutLanguageFormTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/language/tests/src/Functional/EntityTypeWithoutLanguageFormTest.php \Drupal\Tests\language\Functional\EntityTypeWithoutLanguageFormTest
  2. 9 core/modules/language/tests/src/Functional/EntityTypeWithoutLanguageFormTest.php \Drupal\Tests\language\Functional\EntityTypeWithoutLanguageFormTest

Tests entity type without language support.

This is to ensure that an entity type without language support can not enable the language select from the content language settings page.

@group language

Hierarchy

Expanded class hierarchy of EntityTypeWithoutLanguageFormTest

File

core/modules/language/tests/src/Functional/EntityTypeWithoutLanguageFormTest.php, line 15

Namespace

Drupal\Tests\language\Functional
View source
class EntityTypeWithoutLanguageFormTest extends BrowserTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'language',
    'language_test',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();

    // Create and log in administrative user.
    $admin_user = $this
      ->drupalCreateUser([
      'administer languages',
    ]);
    $this
      ->drupalLogin($admin_user);
  }

  /**
   * Tests configuration options with an entity without language definition.
   */
  public function testEmptyLangcode() {

    // Assert that we can not enable language select from
    // content language settings page.
    $this
      ->drupalGet('admin/config/regional/content-language');
    $this
      ->assertSession()
      ->fieldNotExists('entity_types[no_language_entity_test]');
  }

}

Members