You are here

function DownloadTest::testPublicFileTransfer in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/file/src/Tests/DownloadTest.php \Drupal\file\Tests\DownloadTest::testPublicFileTransfer()

Test the public file transfer system.

File

core/modules/file/src/Tests/DownloadTest.php, line 25
Contains \Drupal\file\Tests\DownloadTest.

Class

DownloadTest
Tests for download/file transfer functions.

Namespace

Drupal\file\Tests

Code

function testPublicFileTransfer() {

  // Test generating an URL to a created file.
  $file = $this
    ->createFile();
  $url = file_create_url($file
    ->getFileUri());

  // URLs can't contain characters outside the ASCII set so $filename has to be
  // encoded.
  $filename = $GLOBALS['base_url'] . '/' . \Drupal::service('stream_wrapper_manager')
    ->getViaScheme('public')
    ->getDirectoryPath() . '/' . rawurlencode($file
    ->getFilename());
  $this
    ->assertEqual($filename, $url, 'Correctly generated a URL for a created file.');
  $this
    ->drupalHead($url);
  $this
    ->assertResponse(200, 'Confirmed that the generated URL is correct by downloading the created file.');

  // Test generating an 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).
  $filepath = 'core/assets/vendor/jquery/jquery.min.js';
  $url = file_create_url($filepath);
  $this
    ->assertEqual($GLOBALS['base_url'] . '/' . $filepath, $url, 'Correctly generated a URL for a shipped file.');
  $this
    ->drupalHead($url);
  $this
    ->assertResponse(200, 'Confirmed that the generated URL is correct by downloading the shipped file.');
}