You are here

public function ContentLockModesTest::testDisabledForSelectedFormModes in Content locking (anti-concurrent editing) 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/ContentLockModesTest.php \Drupal\Tests\content_lock\Functional\ContentLockModesTest::testDisabledForSelectedFormModes()

Test simultaneous edit on test entity.

File

tests/src/Functional/ContentLockModesTest.php, line 66

Class

ContentLockModesTest
Content lock modes tests.

Namespace

Drupal\Tests\content_lock\Functional

Code

public function testDisabledForSelectedFormModes() {
  $this
    ->drupalLogin($this->admin);
  $edit = [
    'entity_test_mul_changed[bundles][*]' => 1,
    'entity_test_mul_changed[settings][form_op_lock][mode]' => 2,
    'entity_test_mul_changed[settings][form_op_lock][values][default]' => 'default',
  ];
  $this
    ->drupalPostForm('admin/config/content/content_lock', $edit, t('Save configuration'));
  $lockService = \Drupal::service('content_lock');

  // Login user 1.
  $this
    ->drupalLogin($this->user1);

  // Enter default form mode without creating lock.
  $this
    ->drupalGet($this->entity
    ->toUrl('edit-form'));
  $this
    ->assertSession()
    ->pageTextNotContains('This content is now locked against simultaneous editing');
  $this
    ->assertFalse($lockService
    ->fetchLock($this->entity
    ->id(), $this->entity
    ->language()
    ->getId(), 'default', 'entity_test_mul_changed'));

  // Create lock on compact form.
  $this
    ->drupalGet($this->entity
    ->toUrl('compact'));
  $this
    ->assertSession()
    ->pageTextContains('This content is now locked against simultaneous editing');
  $this
    ->assertTrue($lockService
    ->fetchLock($this->entity
    ->id(), $this->entity
    ->language()
    ->getId(), 'compact', 'entity_test_mul_changed'));
  $this
    ->drupalLogin($this->user2);
  $this
    ->drupalGet($this->entity
    ->toUrl('edit-form'));
  $this
    ->assertSession()
    ->pageTextNotContains('This content is being edited by the user');

  // Fields are open.
  $disabled_field = $this
    ->xpath('//input[@id=:id and @disabled="disabled"]', [
    ':id' => 'edit-field-test-text-0-value',
  ]);
  $this
    ->assertFalse($disabled_field, t('The form cannot be submitted.'));

  // Enter compact and it's blocked.
  $this
    ->drupalGet($this->entity
    ->toUrl('compact'));
  $this
    ->assertSession()
    ->pageTextContains('This content is being edited by the user');
  $this
    ->assertTrue($lockService
    ->fetchLock($this->entity
    ->id(), $this->entity
    ->language()
    ->getId(), 'compact', 'entity_test_mul_changed'));

  // Fields are disabled.
  $disabled_field = $this
    ->xpath('//input[@id=:id and @disabled="disabled"]', [
    ':id' => 'edit-field-test-text-0-value',
  ]);
  $this
    ->assertTrue($disabled_field, t('The form can be submitted.'));
}