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

Namespace

Drupal\Tests\entity_clone\Functional

File

tests/src/Functional/EntityCloneUserTest.php

View source
<?php

namespace Drupal\Tests\entity_clone\Functional;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Tests\BrowserTestBase;
use Drupal\user\Entity\User;

/**
 * Create a user and test a clone.
 *
 * @group entity_clone
 */
class EntityCloneUserTest extends BrowserTestBase {
    use StringTranslationTrait;
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'entity_clone',
        'user',
    ];
    
    /**
     * Theme to enable by default.
     *
     * @var string
     */
    protected $defaultTheme = 'claro';
    
    /**
     * Permissions to grant admin user.
     *
     * @var array
     */
    protected $permissions = [
        'clone user entity',
        'administer users',
    ];
    
    /**
     * An administrative user with permission to configure users settings.
     *
     * @var \Drupal\user\UserInterface
     */
    protected $adminUser;
    
    /**
     * Sets the test up.
     */
    protected function setUp() : void {
        parent::setUp();
        $this->adminUser = $this->drupalCreateUser($this->permissions, 'test_user');
        $this->drupalLogin($this->adminUser);
    }
    
    /**
     * Test user entity clone.
     */
    public function testUserEntityClone() {
        $this->drupalGet('entity_clone/user/' . $this->adminUser
            ->id());
        $this->submitForm([], $this->t('Clone'));
        $users = \Drupal::entityTypeManager()->getStorage('user')
            ->loadByProperties([
            'name' => 'test_user_cloned',
        ]);
        $user = reset($users);
        $this->assertInstanceOf(User::class, $user, 'Test user cloned found in database.');
    }

}

Classes

Title Deprecated Summary
EntityCloneUserTest Create a user and test a clone.