Welcome To Our Shell

Mister Spy & Souheyl Bypass Shell

Current Path : /var/www/html/rocksensor3/web/modules/contrib/metatag/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/rocksensor3/web/modules/contrib/metatag/tests/src/Functional/MetatagApiTest.php

<?php

namespace Drupal\Tests\metatag\Functional;

use Drupal\Tests\BrowserTestBase;
use Drupal\Tests\field_ui\Traits\FieldUiTestTrait;

/**
 * Verify that different API options are supported.
 *
 * @group metatag
 */
class MetatagApiTest extends BrowserTestBase {

  use FieldUiTestTrait;

  /**
   * Profile to use.
   *
   * @var string
   */
  protected $profile = 'testing';

  /**
   * Admin user.
   *
   * @var \Drupal\Core\Session\AccountInterface
   */
  protected $adminUser;

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    // Needed for token handling.
    'token',

    // Needed for the field UI testing.
    'field_ui',

    // Needed to verify that nothing is broken for unsupported entities.
    'contact',

    // The base module.
    'metatag',

    // Some extra custom logic for testing Metatag.
    'metatag_test_tag',

    // Needed for testSecureTagOption().
    'metatag_open_graph',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * Permissions to grant admin user.
   *
   * @var array
   */
  protected $permissions = [
    'access administration pages',
    'administer meta tags',
    // 'view test entity',
    // 'administer entity_test fields',
    // 'administer entity_test content',
  ];

  /**
   * Sets the test up.
   */
  protected function setUp(): void {
    parent::setUp();
    $this->adminUser = $this->drupalCreateUser($this->permissions);
    $this->drupalLogin($this->adminUser);

    // Add a metatag field to the entity type test_entity.
    // @todo Work out a better solution for this, as the entity type is not
    // actually used.
    // @code
    // phpcs:ignore
    // $this->fieldUIAddNewField('admin/structure/types/manage/entity_test', 'metatag', 'Metatag', 'metatag');
    // $this->container->get('entity_field.manager')
    // ->clearCachedFieldDefinitions();
    // @endcode
  }

  /**
   * Tests whether HTML is correctly removed from metatags.
   *
   * Tests three values in meta tags -- one without any HTML; one with raw html;
   * and one with escaped HTML. To pass all HTML including escaped should be
   * removed.
   */
  public function testHtmlIsRemoved() {
    $this->drupalGet('admin/config/search/metatag/global');
    $session = $this->assertSession();
    $session->statusCodeEquals(200);
    $values = [
      'abstract' => 'No HTML here',
      'description' => '<html><body><p class="test">Surrounded by raw HTML</p></body></html>',
      'keywords' => '&lt;html&gt;&lt;body&gt;&lt;p class="test"&gt;Surrounded by escaped HTML&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;',
    ];

    $this->submitForm($values, 'Save');
    $session->pageTextContains('Saved the Global Metatag defaults.');
    drupal_flush_all_caches();
    $this->drupalGet('hit-a-404');
    $session->statusCodeEquals(404);

    $session->responseContains('<meta name="abstract" content="No HTML here" />');
    $session->responseContains('<meta name="description" content="Surrounded by raw HTML" />');
    $session->responseContains('<meta name="keywords" content="Surrounded by escaped HTML" />');
  }

  /**
   * Tests the 'secure' meta tag attribute.
   *
   * Tests insecure values in og:image:secure_url (a tag with secure attribute
   * set to TRUE) and in og:image (a tag with secure attribute set to FALSE). To
   * To pass og:image_secure should be changed to https:// and og:image
   * unchanged.
   */
  public function testSecureTagOption() {
    $this->drupalGet('admin/config/search/metatag/global');
    $session = $this->assertSession();
    $session->statusCodeEquals(200);
    $values = [
      'og_image' => 'https://blahblahblah.com/insecure.jpg',
      'og_image_secure_url' => 'https://blahblahblah.com/secure.jpg',
    ];
    $this->submitForm($values, 'Save');
    $session->pageTextContains('Saved the Global Metatag defaults.');
    drupal_flush_all_caches();
    $this->drupalGet('');
    $session->statusCodeEquals(200);

    $session->responseContains('<meta property="og:image" content="https://blahblahblah.com/insecure.jpg" />');
    $session->responseContains('<meta property="og:image:secure_url" content="https://blahblahblah.com/secure.jpg" />');
  }

  /**
   * Check the contact form.
   *
   * @todo Move this somewhere else.
   */
  public function testContactForm() {
    // Test a route where the entity for that route does not implement
    // ContentEntityInterface.
    $controller = \Drupal::entityTypeManager()->getStorage('contact_form');
    $controller->create([
      'id' => 'test_contact_form',
    ])->save();
    $account = $this->drupalCreateUser(['access site-wide contact form']);
    $this->drupalLogin($account);
    $this->drupalGet('contact/test_contact_form');
    $this->assertSession()->statusCodeEquals(200);
  }

  /**
   * Check URL handling.
   *
   * @todo Finish.
   */
  public function todoTestUrl() {
    // @code
    // $save_label = (floatval(\Drupal::VERSION) <= 8.3) ?
    // 'Save and publish' : 'Save';
    // // Tests meta tags with URLs work.
    // $this->drupalGet($this->entity_add_path);
    // $this->assertSession()->statusCodeEquals(200);
    // $url_test = 'https://example.com/foo.html';
    // $edit = [
    // 'name[0][value]' => 'UrlTags',
    // 'user_id[0][target_id]' => 'foo (' . $this->adminUser->id() . ')',
    // 'field_metatag[0][advanced][original_source]' => $url_test,
    // ];
    // $this->submitForm($edit, $save_label);
    // $entities = entity_load_multiple_by_properties('entity_test', [
    // 'name' => 'UrlTags',
    // ]);
    // $this->assertEquals(count($entities), 1, 'Entity was saved');
    // $entity = reset($entities);
    // $this->drupalGet($this->entity_base_path . '/' . $entity->id());
    // $this->assertSession()->statusCodeEquals(200);
    // $elements = $this->cssSelect("meta[name='original-source']");
    // $message_assert = 'Found original source metatag from defaults';
    // $this->assertTrue(count($elements) === 1, $message_assert);
    // $this->assertEquals(
    //   $edit['field_metatag[0][advanced][original_source]'],
    //   (string) $elements[0]['content']
    // );
    // @endcode
  }

}

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