You are here

public function FileUrlGeneratorTest::testShippedFileURL in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/File/FileUrlGeneratorTest.php \Drupal\KernelTests\Core\File\FileUrlGeneratorTest::testShippedFileURL()

Tests the rewriting of shipped file URLs by hook_file_url_alter().

@covers ::generateAbsoluteString

File

core/tests/Drupal/KernelTests/Core/File/FileUrlGeneratorTest.php, line 70

Class

FileUrlGeneratorTest
@coversDefaultClass \Drupal\Core\File\FileUrlGenerator

Namespace

Drupal\KernelTests\Core\File

Code

public function testShippedFileURL() {

  // Test generating a URL to a shipped file (i.e. a file that is part of
  // Drupal core, a module or a theme, for example a JavaScript file).
  // Test alteration of file URLs to use a CDN.
  \Drupal::state()
    ->set('file_test.hook_file_url_alter', 'cdn');
  $filepath = 'core/assets/vendor/jquery/jquery.min.js';
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath);
  $this
    ->assertEquals(FILE_URL_TEST_CDN_1 . '/' . $filepath, $url, 'Correctly generated a CDN URL for a shipped file.');
  $filepath = 'core/misc/favicon.ico';
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath);
  $this
    ->assertEquals(FILE_URL_TEST_CDN_2 . '/' . $filepath, $url, 'Correctly generated a CDN URL for a shipped file.');

  // Test alteration of file URLs to use root-relative URLs.
  \Drupal::state()
    ->set('file_test.hook_file_url_alter', 'root-relative');
  $filepath = 'core/assets/vendor/jquery/jquery.min.js';
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath);
  $this
    ->assertEquals(base_path() . '/' . $filepath, $url, 'Correctly generated a root-relative URL for a shipped file.');
  $filepath = 'core/misc/favicon.ico';
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath);
  $this
    ->assertEquals(base_path() . '/' . $filepath, $url, 'Correctly generated a root-relative URL for a shipped file.');

  // Test alteration of file URLs to use protocol-relative URLs.
  \Drupal::state()
    ->set('file_test.hook_file_url_alter', 'protocol-relative');
  $filepath = 'core/assets/vendor/jquery/jquery.min.js';
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath);
  $this
    ->assertEquals('/' . base_path() . '/' . $filepath, $url, 'Correctly generated a protocol-relative URL for a shipped file.');
  $filepath = 'core/misc/favicon.ico';
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath);
  $this
    ->assertEquals('/' . base_path() . '/' . $filepath, $url, 'Correctly generated a protocol-relative URL for a shipped file.');

  // Test alteration of file URLs with query strings and/or fragment.
  \Drupal::state()
    ->delete('file_test.hook_file_url_alter');
  $filepath = 'core/misc/favicon.ico';
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath . '?foo');
  $this
    ->assertEquals($GLOBALS['base_url'] . '/' . $filepath . '?foo=', $url, 'Correctly generated URL. The query string is present.');
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath . '?foo=bar');
  $this
    ->assertEquals($GLOBALS['base_url'] . '/' . $filepath . '?foo=bar', $url, 'Correctly generated URL. The query string is present.');
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath . '#v1.2');
  $this
    ->assertEquals($GLOBALS['base_url'] . '/' . $filepath . '#v1.2', $url, 'Correctly generated URL. The fragment is present.');
  $url = $this->fileUrlGenerator
    ->generateAbsoluteString($filepath . '?foo=bar#v1.2');
  $this
    ->assertEquals($GLOBALS['base_url'] . '/' . $filepath . '?foo=bar#v1.2', $url, 'Correctly generated URL. The query string amd fragment is present.');
}