ActionTest.php

Same filename in this branch
  1. 10 core/modules/action/tests/src/Functional/Jsonapi/ActionTest.php
  2. 10 core/modules/system/tests/src/Kernel/Action/ActionTest.php
  3. 10 core/modules/jsonapi/tests/src/Functional/ActionTest.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/ActionTest.php
  2. 9 core/modules/action/tests/src/Unit/Plugin/migrate/source/ActionTest.php
  3. 9 core/modules/system/tests/src/Kernel/Action/ActionTest.php
  4. 9 core/modules/system/tests/src/Kernel/Plugin/migrate/source/ActionTest.php
  5. 8.9.x core/modules/jsonapi/tests/src/Functional/ActionTest.php
  6. 8.9.x core/modules/action/tests/src/Kernel/Plugin/migrate/source/ActionTest.php
  7. 8.9.x core/modules/system/tests/src/Kernel/Action/ActionTest.php
  8. 11.x core/modules/action/tests/src/Functional/Jsonapi/ActionTest.php
  9. 11.x core/modules/system/tests/src/Kernel/Action/ActionTest.php
  10. 11.x core/modules/system/tests/src/Kernel/Plugin/migrate/source/ActionTest.php
  11. 11.x core/modules/jsonapi/tests/src/Functional/ActionTest.php

Namespace

Drupal\Tests\system\Kernel\Plugin\migrate\source

File

core/modules/system/tests/src/Kernel/Plugin/migrate/source/ActionTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\system\Kernel\Plugin\migrate\source;

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;

/**
 * Tests actions source plugin.
 *
 * @covers \Drupal\system\Plugin\migrate\source\Action
 * @group action
 */
class ActionTest extends MigrateSqlSourceTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'migrate_drupal',
    'system',
  ];
  
  /**
   * {@inheritdoc}
   */
  public static function providerSource() {
    $tests = [];
    $tests[0][0]['actions'] = [
      [
        'aid' => 'Redirect to node list page',
        'type' => 'system',
        'callback' => 'system_goto_action',
        'parameters' => 'a:1:{s:3:"url";s:4:"node";}',
        'description' => 'Redirect to node list page',
      ],
      [
        'aid' => 'Test notice email',
        'type' => 'system',
        'callback' => 'system_send_email_action',
        'parameters' => 'a:3:{s:9:"recipient";s:7:"%author";s:7:"subject";s:4:"Test";s:7:"message";s:4:"Test',
        'description' => 'Test notice email',
      ],
      [
        'aid' => 'comment_publish_action',
        'type' => 'comment',
        'callback' => 'comment_publish_action',
        'parameters' => NULL,
        'description' => NULL,
      ],
      [
        'aid' => 'node_publish_action',
        'type' => 'comment',
        'callback' => 'node_publish_action',
        'parameters' => NULL,
        'description' => NULL,
      ],
    ];
    // The expected results are identical to the source data.
    $tests[0][1] = $tests[0][0]['actions'];
    return $tests;
  }

}

Classes

Title Deprecated Summary
ActionTest Tests actions source plugin.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.