FileSystemTempDirectoryTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/File/FileSystemTempDirectoryTest.php
  2. 8.9.x core/tests/Drupal/KernelTests/Core/File/FileSystemTempDirectoryTest.php
  3. 10 core/tests/Drupal/KernelTests/Core/File/FileSystemTempDirectoryTest.php

Namespace

Drupal\KernelTests\Core\File

File

core/tests/Drupal/KernelTests/Core/File/FileSystemTempDirectoryTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\File;

use Drupal\Component\FileSystem\FileSystem as FileSystemComponent;
use Drupal\Core\File\FileSystem;
use Drupal\KernelTests\KernelTestBase;

/**
 * Tests for getTempDirectory on FileSystem.
 *
 * @group File
 * @coversDefaultClass \Drupal\Core\File\FileSystem
 */
class FileSystemTempDirectoryTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'system',
  ];
  
  /**
   * The file system under test.
   *
   * @var \Drupal\Core\File\FileSystemInterface
   */
  protected $fileSystem;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $stream_wrapper_manager = $this->container
      ->get('stream_wrapper_manager');
    $settings = $this->container
      ->get('settings');
    $this->fileSystem = new FileSystem($stream_wrapper_manager, $settings);
  }
  
  /**
   * Tests 'file_temp_path' setting.
   *
   * @covers ::getTempDirectory
   */
  public function testGetTempDirectorySettings() : void {
    $tempDir = '/var/tmp/' . $this->randomMachineName();
    $this->setSetting('file_temp_path', $tempDir);
    $this->assertEquals($tempDir, $this->fileSystem
      ->getTempDirectory());
  }
  
  /**
   * Tests os default fallback.
   *
   * @covers ::getTempDirectory
   */
  public function testGetTempDirectoryOsDefault() : void {
    $tempDir = FileSystemComponent::getOsTemporaryDirectory();
    $dir = $this->fileSystem
      ->getTempDirectory();
    $this->assertEquals($tempDir, $dir);
  }

}

Classes

Title Deprecated Summary
FileSystemTempDirectoryTest Tests for getTempDirectory on FileSystem.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.