Commit 84c09010 authored by Jürgen Haas's avatar Jürgen Haas Committed by Jürgen Haas
Browse files

Issue #3325137 by jurgenhaas: Rename test modules "array" and "render_basic"...

Issue #3325137 by jurgenhaas: Rename test modules "array" and "render_basic" to avoid future name conflicts
parent 34ee7f63
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ class AccessExecutionChainTest extends KernelTestBase {
    'node',
    'eca',
    'eca_access',
    'eca_array',
    'eca_test_array',
  ];

  /**
@@ -341,7 +341,7 @@ class AccessExecutionChainTest extends KernelTestBase {
      ],
      'conditions' => [
        'array_has_key_value' => [
          'plugin' => 'eca_array_has_key_and_value',
          'plugin' => 'eca_test_array_has_key_and_value',
          'configuration' => [
            'key' => 'account_id',
            'value' => '3',
@@ -351,7 +351,7 @@ class AccessExecutionChainTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'array_write' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write account user into array',
          'configuration' => [
            'key' => 'account_id',
+3 −3
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@
namespace Drupal\Tests\eca_base\Kernel;

use Drupal\eca\Entity\Eca;
use Drupal\eca_array\Plugin\Action\ArrayIncrement;
use Drupal\eca_base\BaseEvents;
use Drupal\eca_base\Event\CustomEvent;
use Drupal\eca_test_array\Plugin\Action\ArrayIncrement;
use Drupal\KernelTests\KernelTestBase;
use Drupal\user\Entity\User;

@@ -25,7 +25,7 @@ class BaseEventsTest extends KernelTestBase {
    'user',
    'field',
    'eca',
    'eca_array',
    'eca_test_array',
    'eca_base',
  ];

@@ -101,7 +101,7 @@ class BaseEventsTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'increment' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'base_inc',
+10 −10
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@ use Drupal\Core\Config\ConfigRenameEvent;
use Drupal\Core\Config\Importer\MissingContentEvent;
use Drupal\Core\Config\StorageComparer;
use Drupal\eca\Entity\Eca;
use Drupal\eca_array\Plugin\Action\ArrayIncrement;
use Drupal\eca_array\Plugin\Action\ArrayWrite;
use Drupal\eca_test_array\Plugin\Action\ArrayIncrement;
use Drupal\eca_test_array\Plugin\Action\ArrayWrite;
use Drupal\KernelTests\KernelTestBase;
use Drupal\user\Entity\User;

@@ -32,8 +32,8 @@ class ConfigEventsTest extends KernelTestBase {
    'config_translation',
    'language',
    'eca',
    'eca_array',
    'eca_config',
    'eca_test_array',
  ];

  /**
@@ -76,7 +76,7 @@ class ConfigEventsTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'array_write_config_name' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write config name into array',
          'configuration' => [
            'key' => 'config_name',
@@ -85,7 +85,7 @@ class ConfigEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'array_write_site_name' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write site name into array',
          'configuration' => [
            'key' => 'site_name',
@@ -134,7 +134,7 @@ class ConfigEventsTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'array_increment' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'inc',
@@ -216,7 +216,7 @@ class ConfigEventsTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'array_increment_import' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment import',
          'configuration' => [
            'key' => 'import_inc',
@@ -224,7 +224,7 @@ class ConfigEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'array_increment_import_missing_content' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment import missing content',
          'configuration' => [
            'key' => 'import_missing_content_inc',
@@ -232,7 +232,7 @@ class ConfigEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'array_increment_import_validate' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment import validate',
          'configuration' => [
            'key' => 'import_validate_inc',
@@ -240,7 +240,7 @@ class ConfigEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'array_increment_rename' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment rename',
          'configuration' => [
            'key' => 'import_rename_inc',
+21 −21
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ namespace Drupal\Tests\eca_content\Kernel;

use Drupal\Core\Language\LanguageInterface;
use Drupal\eca\Entity\Eca;
use Drupal\eca_array\Plugin\Action\ArrayWrite;
use Drupal\eca_test_array\Plugin\Action\ArrayWrite;
use Drupal\KernelTests\KernelTestBase;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\language\Entity\ContentLanguageSettings;
@@ -35,8 +35,8 @@ class ContentEventsTest extends KernelTestBase {
    'language',
    'content_translation',
    'eca',
    'eca_array',
    'eca_content',
    'eca_test_array',
  ];

  /**
@@ -127,7 +127,7 @@ class ContentEventsTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'write_bundlecreate' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write bundlecreate',
          'configuration' => [
            'key' => 'bundlecreate',
@@ -136,7 +136,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_bundledelete' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write bundledelete',
          'configuration' => [
            'key' => 'bundledelete',
@@ -364,7 +364,7 @@ class ContentEventsTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'write_create' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write create',
          'configuration' => [
            'key' => 'create',
@@ -373,7 +373,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_revisioncreate' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write revisioncreate',
          'configuration' => [
            'key' => 'revisioncreate',
@@ -382,7 +382,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_preload' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write preload',
          'configuration' => [
            'key' => 'preload',
@@ -391,7 +391,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_load' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write load',
          'configuration' => [
            'key' => 'load',
@@ -400,7 +400,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_storageload' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write storageload',
          'configuration' => [
            'key' => 'storageload',
@@ -409,7 +409,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_presave' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write presave',
          'configuration' => [
            'key' => 'presave',
@@ -418,7 +418,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_insert' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write insert',
          'configuration' => [
            'key' => 'insert',
@@ -427,7 +427,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_update' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write update',
          'configuration' => [
            'key' => 'update',
@@ -436,7 +436,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_translationinsert' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write translationinsert',
          'configuration' => [
            'key' => 'translationinsert',
@@ -445,7 +445,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_translationcreate' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write translationcreate',
          'configuration' => [
            'key' => 'translationcreate',
@@ -454,7 +454,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_translationdelete' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write translationdelete',
          'configuration' => [
            'key' => 'translationdelete',
@@ -463,7 +463,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_predelete' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write predelete',
          'configuration' => [
            'key' => 'predelete',
@@ -472,7 +472,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_delete' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write delete',
          'configuration' => [
            'key' => 'delete',
@@ -481,7 +481,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_revisiondelete' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write revisiondelete',
          'configuration' => [
            'key' => 'revisiondelete',
@@ -490,7 +490,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_view' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write view',
          'configuration' => [
            'key' => 'view',
@@ -499,7 +499,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_prepareview' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write prepareview',
          'configuration' => [
            'key' => 'prepareview',
@@ -508,7 +508,7 @@ class ContentEventsTest extends KernelTestBase {
          'successors' => [],
        ],
        'write_fieldvaluesinit' => [
          'plugin' => 'eca_array_write',
          'plugin' => 'eca_test_array_write',
          'label' => 'Write fieldvaluesinit',
          'configuration' => [
            'key' => 'fieldvaluesinit',
+13 −13
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
namespace Drupal\Tests\eca_migrate\Kernel;

use Drupal\eca\Entity\Eca;
use Drupal\eca_array\Plugin\Action\ArrayIncrement;
use Drupal\eca_test_array\Plugin\Action\ArrayIncrement;
use Drupal\KernelTests\KernelTestBase;
use Drupal\migrate\MigrateExecutable;
use Drupal\user\Entity\User;
@@ -26,7 +26,7 @@ class MigrateEventTest extends KernelTestBase {
    'user',
    'eca',
    'eca_migrate',
    'eca_array',
    'eca_test_array',
  ];

  /**
@@ -164,7 +164,7 @@ class MigrateEventTest extends KernelTestBase {
      'gateways' => [],
      'actions' => [
        'increment_idmap_message' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment idmap_message',
          'configuration' => [
            'key' => 'idmap_message_inc',
@@ -172,7 +172,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_map_delete' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'map_delete_inc',
@@ -180,7 +180,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_map_save' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'map_save_inc',
@@ -188,7 +188,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_post_import' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'post_import_inc',
@@ -196,7 +196,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_post_rollback' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'post_rollback_inc',
@@ -204,7 +204,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_post_row_delete' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'row_delete_inc',
@@ -212,7 +212,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_post_row_save' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'row_save_inc',
@@ -220,7 +220,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_pre_import' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'pre_import_inc',
@@ -228,7 +228,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_pre_rollback' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'pre_rollback_inc',
@@ -236,7 +236,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_pre_row_delete' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'pre_row_delete_inc',
@@ -244,7 +244,7 @@ class MigrateEventTest extends KernelTestBase {
          'successors' => [],
        ],
        'increment_pre_row_save' => [
          'plugin' => 'eca_array_increment',
          'plugin' => 'eca_test_array_increment',
          'label' => 'Increment',
          'configuration' => [
            'key' => 'pre_row_save_inc',
Loading