Skip to content
Snippets Groups Projects
Commit f0d3a7bf authored by catch's avatar catch
Browse files

Issue #2254189 by smustgrave, quietone, anya_m, andregp, sun, joachim: Fix...

Issue #2254189 by smustgrave, quietone, anya_m, andregp, sun, joachim: Fix test performance of Drupal\node\Tests\NodeTranslationUITest
parent ef985e93
No related branches found
No related tags found
30 merge requests!8528Issue #3456871 by Tim Bozeman: Support NULL services,!8323Fix source code editing and in place front page site studio editing.,!6278Issue #3187770 by godotislate, smustgrave, catch, quietone: Views Rendered...,!3878Removed unused condition head title for views,!38582585169-10.1.x,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3668Resolve #3347842 "Deprecate the trusted",!3651Issue #3347736: Create new SDC component for Olivero (header-search),!3531Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!3355Issue #3209129: Scrolling problems when adding a block via layout builder,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2614Issue #2981326: Replace non-test usages of \Drupal::logger() with IoC injection,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2334Issue #3228209: Add hasRole() method to AccountInterface,!2062Issue #3246454: Add weekly granularity to views date sort,!1105Issue #3025039: New non translatable field on translatable content throws error,!1073issue #3191727: Focus states on mobile second level navigation items fixed,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!844Resolve #3036010 "Updaters",!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #75392 passed
Pipeline: drupal

#75394

    Showing
    with 64 additions and 25 deletions
    ......@@ -51,6 +51,7 @@ protected function setUp(): void {
    $this->bundle = 'basic';
    $this->testLanguageSelector = FALSE;
    parent::setUp();
    $this->doSetup();
    $this->drupalPlaceBlock('page_title_block');
    }
    ......
    ......@@ -71,6 +71,7 @@ protected function setUp(): void {
    $this->testLanguageSelector = FALSE;
    $this->subject = $this->randomMachineName();
    parent::setUp();
    $this->doSetup();
    }
    /**
    ......
    ......@@ -48,6 +48,7 @@ protected function setUp(): void {
    // Use the entity_test_mul as this has multilingual property support.
    $this->entityTypeId = 'entity_test_mul_changed';
    parent::setUp();
    $this->doSetup();
    }
    /**
    ......
    ......@@ -43,6 +43,14 @@ protected function setupBundle() {
    $this->createContentType(['type' => $this->bundle]);
    }
    /**
    * {@inheritdoc}
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    }
    /**
    * Tests skipping setting non translatable metadata fields.
    */
    ......
    ......@@ -33,6 +33,7 @@ class ContentTranslationNewTranslationWithExistingRevisionsTest extends ContentT
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    $this->enableContentModeration();
    }
    ......
    ......@@ -22,6 +22,7 @@ class ContentTranslationOutdatedRevisionTranslationTest extends ContentTranslati
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    $this->enableContentModeration();
    }
    ......
    ......@@ -22,6 +22,7 @@ class ContentTranslationRevisionTranslationDeletionTest extends ContentTranslati
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    $this->enableContentModeration();
    }
    ......
    ......@@ -57,6 +57,7 @@ class ContentTranslationSyncImageTest extends ContentTranslationTestBase {
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    $this->files = $this->drupalGetTestFiles('image');
    }
    ......
    ......@@ -83,11 +83,9 @@ abstract class ContentTranslationTestBase extends BrowserTestBase {
    protected $manager;
    /**
    * {@inheritdoc}
    * Completes preparation for content translation tests.
    */
    protected function setUp(): void {
    parent::setUp();
    protected function doSetup(): void {
    $this->setupLanguages();
    $this->setupBundle();
    $this->enableTranslation();
    ......
    ......@@ -32,6 +32,7 @@ class ContentTranslationUntranslatableFieldsTest extends ContentTranslationPendi
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    // Configure one field as untranslatable.
    $this->drupalLogin($this->administrator);
    ......
    ......@@ -74,6 +74,7 @@ class ContentTranslationWorkflowsTest extends ContentTranslationTestBase {
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    $field_storage = FieldStorageConfig::create([
    'field_name' => 'field_reference',
    ......
    ......@@ -42,6 +42,7 @@ protected function setUp(): void {
    $this->entityTypeId = 'user';
    parent::setUp();
    $this->doSetup();
    // Assign user 1 a language code so that the entity can be translated.
    $user = User::load(1);
    ......
    ......@@ -41,6 +41,7 @@ class LayoutBuilderTranslationTest extends ContentTranslationTestBase {
    */
    protected function setUp(): void {
    parent::setUp();
    $this->doSetup();
    $this->setUpViewDisplay();
    $this->setUpEntities();
    }
    ......
    ......@@ -49,6 +49,7 @@ protected function setUp(): void {
    $this->entityTypeId = 'media';
    $this->bundle = 'test';
    parent::setUp();
    $this->doSetup();
    }
    /**
    ......
    ......@@ -41,6 +41,7 @@ protected function setUp(): void {
    $this->entityTypeId = 'menu_link_content';
    $this->bundle = 'menu_link_content';
    parent::setUp();
    $this->doSetup();
    }
    /**
    ......
    ......@@ -3,12 +3,18 @@
    namespace Drupal\Tests\node\Functional;
    use Drupal\Core\Entity\EntityInterface;
    use Drupal\Core\Entity\Entity\EntityFormDisplay;
    use Drupal\Core\Language\LanguageInterface;
    use Drupal\Core\Url;
    use Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase;
    use Drupal\Tests\language\Traits\LanguageTestTrait;
    use Drupal\comment\Tests\CommentTestTrait;
    use Drupal\field\Entity\FieldConfig;
    use Drupal\field\Entity\FieldStorageConfig;
    use Drupal\language\Entity\ConfigurableLanguage;
    use Drupal\node\Entity\Node;
    use Drupal\user\Entity\Role;
    use Drupal\user\RoleInterface;
    /**
    * Tests the Node Translation UI.
    ......@@ -19,6 +25,7 @@
    class NodeTranslationUITest extends ContentTranslationUITestBase {
    use LanguageTestTrait;
    use CommentTestTrait;
    /**
    * {@inheritdoc}
    ......@@ -29,18 +36,11 @@ class NodeTranslationUITest extends ContentTranslationUITestBase {
    * {@inheritdoc}
    */
    protected $defaultCacheContexts = [
    'languages:language_interface',
    'theme',
    'route',
    'timezone',
    'url.path.parent',
    'url.query_args:_wrapper_format',
    'url.site',
    'user.roles',
    'url.path.is_front',
    // These two cache contexts are added by BigPipe.
    'cookies:big_pipe_nojs',
    'session.exists',
    'user.permissions',
    ];
    /**
    ......@@ -53,18 +53,9 @@ class NodeTranslationUITest extends ContentTranslationUITestBase {
    'language',
    'content_translation',
    'node',
    'datetime',
    'field_ui',
    'help',
    ];
    /**
    * The profile to install as a basis for testing.
    *
    * @var string
    */
    protected $profile = 'standard';
    /**
    * {@inheritdoc}
    */
    ......@@ -73,6 +64,10 @@ protected function setUp(): void {
    $this->bundle = 'article';
    parent::setUp();
    // Create the bundle.
    $this->drupalCreateContentType(['type' => 'article', 'title' => 'Article']);
    $this->doSetup();
    // Ensure the help message is shown even with prefixed paths.
    $this->drupalPlaceBlock('help_block', ['region' => 'content']);
    ......@@ -99,10 +94,6 @@ public function testPublishedStatusNoFields() {
    $this->drupalGet('admin/structure/types/manage/article/fields');
    $this->drupalGet('admin/structure/types/manage/article/fields/node.article.' . $this->fieldName . '/delete');
    $this->submitForm([], 'Delete');
    $this->drupalGet('admin/structure/types/manage/article/fields/node.article.field_tags/delete');
    $this->submitForm([], 'Delete');
    $this->drupalGet('admin/structure/types/manage/article/fields/node.article.field_image/delete');
    $this->submitForm([], 'Delete');
    // Add a node.
    $default_langcode = $this->langcodes[0];
    ......@@ -312,6 +303,14 @@ public function testDisabledBundle() {
    * Tests that translations are rendered properly.
    */
    public function testTranslationRendering() {
    // Add a comment field to the article content type.
    \Drupal::service('module_installer')->install(['comment']);
    $this->addDefaultCommentField('node', 'article');
    // Add 'post comments' permission to the authenticated role.
    $role = Role::load(RoleInterface::AUTHENTICATED_ID);
    $role->grantPermission('post comments')->save();
    $default_langcode = $this->langcodes[0];
    $values[$default_langcode] = $this->getNewEntityValues($default_langcode);
    $this->entityId = $this->createEntity($values[$default_langcode], $default_langcode);
    ......@@ -556,6 +555,20 @@ public function testRevisionTranslationRendering() {
    * Tests title is not escaped (but XSS-filtered) for details form element.
    */
    public function testDetailsTitleIsNotEscaped() {
    // Create an image field.
    \Drupal::service('module_installer')->install(['image']);
    FieldStorageConfig::create([
    'entity_type' => 'node',
    'field_name' => 'field_image',
    'type' => 'image',
    ])->save();
    FieldConfig::create([
    'entity_type' => 'node',
    'field_name' => 'field_image',
    'bundle' => 'article',
    'translatable' => TRUE,
    ])->save();
    $this->drupalLogin($this->administrator);
    // Make the image field a multi-value field in order to display a
    // details form element.
    ......@@ -563,6 +576,10 @@ public function testDetailsTitleIsNotEscaped() {
    $this->drupalGet('admin/structure/types/manage/article/fields/node.article.field_image');
    $this->submitForm($edit, 'Save');
    // Enable the display of the image field.
    EntityFormDisplay::load('node.article.default')
    ->setComponent('field_image', ['region' => 'content'])->save();
    // Make the image field non-translatable.
    static::setFieldTranslatable('node', 'article', 'field_image', FALSE);
    ......
    ......@@ -43,6 +43,7 @@ protected function setUp(): void {
    $this->entityTypeId = 'shortcut';
    $this->bundle = 'default';
    parent::setUp();
    $this->doSetup();
    }
    /**
    ......
    ......@@ -50,6 +50,7 @@ protected function setUp(): void {
    $this->entityTypeId = 'taxonomy_term';
    $this->bundle = 'tags';
    parent::setUp();
    $this->doSetup();
    }
    /**
    ......
    ......@@ -54,6 +54,7 @@ protected function setUp(): void {
    $this->testLanguageSelector = FALSE;
    $this->name = $this->randomMachineName();
    parent::setUp();
    $this->doSetup();
    \Drupal::entityTypeManager()->getStorage('user')->resetCache();
    }
    ......
    • catch @catch

      mentioned in commit 78fbdef2

      ·

      mentioned in commit 78fbdef2

      Toggle commit list
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment