Same filename and directory in other branches
  1. 8.x-1.x tests/src/Functional/EntityCloneCustomBlockTest.php 1 comment

Namespace

Drupal\Tests\entity_clone\Functional

File

tests/src/Functional/EntityCloneCustomBlockTest.php

View source
<?php

namespace Drupal\Tests\entity_clone\Functional;

use Drupal\block_content\Entity\BlockContent;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Tests\block_content\Functional\BlockContentTestBase;

/**
 * Creat ea block and test a clone.
 *
 * @group entity_clone
 */
class EntityCloneCustomBlockTest extends BlockContentTestBase {
    use StringTranslationTrait;
    
    /**
     * Modules to enable.
     *
     * Enable dummy module that implements hook_block_insert() for exceptions and
     * field_ui to edit display settings.
     *
     * @var array
     */
    protected static $modules = [
        'entity_clone',
        'block',
        'block_content',
    ];
    
    /**
     * Theme to enable by default.
     *
     * @var string
     */
    protected $defaultTheme = 'claro';
    
    /**
     * Permissions to grant admin user.
     *
     * @var array
     */
    protected $permissions = [
        'administer blocks',
        'clone block_content entity',
    ];
    
    /**
     * Sets the test up.
     */
    protected function setUp() : void {
        parent::setUp();
        $this->drupalLogin($this->adminUser);
    }
    
    /**
     * Test custom block entity clone.
     */
    public function testCustomBlockEntityClone() {
        $edit = [];
        $edit['info[0][value]'] = 'Test block ready to clone';
        $edit['body[0][value]'] = $this->randomMachineName(16);
        $this->drupalGet('block/add/basic');
        $this->submitForm($edit, $this->t('Save'));
        $blocks = \Drupal::entityTypeManager()->getStorage('block_content')
            ->loadByProperties([
            'info' => $edit['info[0][value]'],
        ]);
        $block = reset($blocks);
        $this->assertInstanceOf(BlockContent::class, $block, 'Test Block for clone found in database.');
        $this->drupalGet('entity_clone/block_content/' . $block->id());
        $this->submitForm([], $this->t('Clone'));
        $blocks = \Drupal::entityTypeManager()->getStorage('block_content')
            ->loadByProperties([
            'info' => $edit['info[0][value]'] . ' - Cloned',
            'body' => $edit['body[0][value]'],
        ]);
        $block = reset($blocks);
        $this->assertInstanceOf(BlockContent::class, $block, 'Test Block cloned found in database.');
    }

}

Classes

Title Deprecated Summary
EntityCloneCustomBlockTest Creat ea block and test a clone.