Welcome To Our Shell

Mister Spy & Souheyl Bypass Shell

Current Path : /var/www/html/12park/web/modules/contrib/webform/tests/src/Functional/

Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Upload File :
Current File : /var/www/html/12park/web/modules/contrib/webform/tests/src/Functional/WebformLibrariesTest.php

<?php

namespace Drupal\Tests\webform\Functional;

/**
 * Tests for webform libraries.
 *
 * @group webform
 */
class WebformLibrariesTest extends WebformBrowserTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = ['webform_ui'];

  /**
   * Webforms to load.
   *
   * @var array
   */
  protected static $testWebforms = ['test_libraries_optional'];

  /**
   * Tests webform libraries.
   */
  public function testLibraries() {
    $assert_session = $this->assertSession();

    $optional_properties = [
      'input_mask' => 'properties[input_mask][select]',
      'international_telephone' => 'properties[international]',
      'international_telephone_composite' => 'properties[phone__international]',
      'word_counter' => 'properties[counter_type]',
      'select2' => 'properties[select2]',
    ];

    $this->drupalLogin($this->rootUser);

    // Enable choices and jquery.chosen.
    $this->drupalGet('/admin/structure/webform/config/libraries');
    $edit = [
      'excluded_libraries[choices]' => TRUE,
      'excluded_libraries[jquery.chosen]' => TRUE,
    ];
    $this->submitForm($edit, 'Save configuration');

    // Check optional libraries are included.
    $this->drupalGet('/webform/test_libraries_optional');
    $assert_session->responseContains('/select2.min.js');
    $assert_session->responseContains('/choices.min.js');
    $assert_session->responseContains('/chosen.jquery.min.js');
    $assert_session->responseContains('/textcounter.min.js');
    $assert_session->responseContains('/intlTelInput.min.js');
    $assert_session->responseContains('/jquery.inputmask.min.js');
    $assert_session->responseContains('/codemirror.js');
    $assert_session->responseContains('/jquery.timepicker.min.js');

    // Check optional libraries are properties accessible (#access = TRUE).
    foreach ($optional_properties as $element_name => $input_name) {
      $this->drupalGet("/admin/structure/webform/manage/test_libraries_optional/element/$element_name/edit");
      $assert_session->fieldExists($input_name);
    }

    // Exclude optional libraries.
    $this->drupalGet('/admin/structure/webform/config/libraries');
    $edit = [
      'excluded_libraries[codemirror]' => FALSE,
      'excluded_libraries[choices]' => FALSE,
      'excluded_libraries[jquery.inputmask]' => FALSE,
      'excluded_libraries[jquery.intl-tel-input]' => FALSE,
      'excluded_libraries[jquery.select2]' => FALSE,
      'excluded_libraries[jquery.chosen]' => FALSE,
      'excluded_libraries[jquery.timepicker]' => FALSE,
      'excluded_libraries[jquery.textcounter]' => FALSE,
    ];
    $this->submitForm($edit, 'Save configuration');

    // Check optional libraries are excluded.
    $this->drupalGet('/webform/test_libraries_optional');
    $assert_session->responseNotContains('/select2.min.js');
    $assert_session->responseNotContains('/choices.min.js');
    $assert_session->responseNotContains('/chosen.jquery.min.js');
    $assert_session->responseNotContains('/textcounter.min.js');
    $assert_session->responseNotContains('/intlTelInput.min.js');
    $assert_session->responseNotContains('/jquery.inputmask.min.js');
    $assert_session->responseNotContains('/codemirror.js');
    $assert_session->responseNotContains('/jquery.timepicker.min.js');

    // Check optional libraries are properties hidden (#access = FALSE).
    foreach ($optional_properties as $element_name => $input_name) {
      $this->drupalGet("admin/structure/webform/manage/test_libraries_optional/element/$element_name/edit");
      $assert_session->fieldNotExists($input_name);
    }

    // Check that status report excludes optional libraries.
    $this->drupalGet('/admin/reports/status');
    $assert_session->pageTextNotContains('CKEditor: Fakeobjects library ');
    $assert_session->pageTextNotContains('CKEditor: Image library ');
    $assert_session->pageTextNotContains('CKEditor: Link library ');
    $assert_session->pageTextNotContains('Code Mirror library ');
    $assert_session->pageTextNotContains('jQuery: iCheck library ');
    $assert_session->pageTextNotContains('jQuery: Input Mask library ');
    $assert_session->pageTextNotContains('jQuery: Select2 library ');
    $assert_session->pageTextNotContains('jQuery: Choices library ');
    $assert_session->pageTextNotContains('jQuery: Chosen library ');
    $assert_session->pageTextNotContains('jQuery: Timepicker library ');
    $assert_session->pageTextNotContains('jQuery: Text Counter library ');

    // Exclude element types that require libraries.
    $edit = [
      'excluded_elements[webform_rating]' => FALSE,
      'excluded_elements[webform_signature]' => FALSE,
    ];
    $this->drupalGet('/admin/structure/webform/config/elements');
    $this->submitForm($edit, 'Save configuration');

    // Check that status report excludes libraries required by element types.
    $this->drupalGet('/admin/reports/status');
    $assert_session->pageTextNotContains('jQuery: Image Picker library');
    $assert_session->pageTextNotContains('jQuery: RateIt library');
    $assert_session->pageTextNotContains('Signature Pad library');

    // Check that choices, chosen, and select2 using webform's CDN URLs.
    $this->drupalGet('/admin/structure/webform/config/libraries');
    $edit = [
      'excluded_libraries[jquery.select2]' => TRUE,
      'excluded_libraries[jquery.chosen]' => TRUE,
    ];
    $this->submitForm($edit, 'Save configuration');
    $this->drupalGet('/webform/test_libraries_optional');
    $assert_session->responseContains('https://cdnjs.cloudflare.com/ajax/libs/chosen');
    $assert_session->responseContains('https://cdnjs.cloudflare.com/ajax/libs/select2');

    // Install chosen and select2 modules.
    \Drupal::service('module_installer')->install(['chosen', 'chosen_lib', 'select2']);
    \Drupal::service('module_installer')->install(['select2']);
    drupal_flush_all_caches();

    // Check that chosen and select2 using module's path and not CDN.
    $this->drupalGet('/webform/test_libraries_optional');
    $assert_session->responseNotContains('https://cdnjs.cloudflare.com/ajax/libs/chosen');
    $assert_session->responseNotContains('https://cdnjs.cloudflare.com/ajax/libs/select2');
    $assert_session->responseContains('/modules/contrib/chosen/css/chosen-drupal.css');
  }

}

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped) Email: contact@elmoujehidin.net