You are here

public function WebformElementTermsOfServiceTest::testTermsOfService in Webform 8.5

Same name and namespace in other branches
  1. 6.x tests/src/Functional/Element/WebformElementTermsOfServiceTest.php \Drupal\Tests\webform\Functional\Element\WebformElementTermsOfServiceTest::testTermsOfService()

Tests TermsOfService element.

File

tests/src/Functional/Element/WebformElementTermsOfServiceTest.php, line 29

Class

WebformElementTermsOfServiceTest
Tests for webform terms of service element.

Namespace

Drupal\Tests\webform\Functional\Element

Code

public function testTermsOfService() {

  // Check rendering.
  $this
    ->drupalGet('/webform/test_element_terms_of_service');

  // Check modal.
  $this
    ->assertCssSelect('[data-webform-terms-of-service-type="modal"].form-item-terms-of-service-default');
  $this
    ->assertRaw('<input data-drupal-selector="edit-terms-of-service-default" type="checkbox" id="edit-terms-of-service-default" name="terms_of_service_default" value class="form-checkbox required" required="required" aria-required="true" />');
  $this
    ->assertRaw('<label for="edit-terms-of-service-default" class="option js-form-required form-required">I agree to the <a role="button" href="#terms">terms of service</a>. (default)</label>');
  $this
    ->assertRaw('<div id="edit-terms-of-service-default--description" class="webform-element-description">');
  $this
    ->assertRaw('<div id="webform-terms-of-service-terms_of_service_default--description" class="webform-terms-of-service-details js-hide">');
  $this
    ->assertRaw('<div class="webform-terms-of-service-details--title">terms_of_service_default</div>');
  $this
    ->assertRaw('<div class="webform-terms-of-service-details--content">These are the terms of service.</div>');

  // Check slideout.
  $this
    ->assertRaw('<label for="edit-terms-of-service-slideout" class="option">I agree to the <a role="button" href="#terms">terms of service</a>. (slideout)</label>');

  // Check validation.
  $this
    ->drupalPostForm('/webform/test_element_terms_of_service', [], 'Preview');
  $this
    ->assertRaw('I agree to the terms of service. (default) field is required.');

  // Check preview.
  $edit = [
    'terms_of_service_default' => TRUE,
    'terms_of_service_modal' => TRUE,
    'terms_of_service_slideout' => TRUE,
  ];
  $this
    ->drupalPostForm('/webform/test_element_terms_of_service', $edit, 'Preview');
  $this
    ->assertRaw('I agree to the terms of service. (default)');
  $this
    ->assertRaw('I agree to the terms of service. (modal)');
  $this
    ->assertRaw('I agree to the terms of service. (slideout)');

  // Check default title and auto incremented key.
  $this
    ->drupalLogin($this->rootUser);
  $this
    ->drupalGet('/admin/structure/webform/manage/test_element_terms_of_service/element/add/webform_terms_of_service');
  $this
    ->assertFieldByName('key', 'terms_of_service_01');
  $this
    ->assertFieldByName('properties[title]', 'I agree to the {terms of service}.');
}