class TestFileTransfer in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/src/Functional/FileTransfer/TestFileTransfer.php \Drupal\Tests\system\Functional\FileTransfer\TestFileTransfer
Mock FileTransfer object for test case.
Hierarchy
- class \Drupal\Core\FileTransfer\FileTransfer- class \Drupal\Tests\system\Functional\FileTransfer\TestFileTransfer
 
Expanded class hierarchy of TestFileTransfer
File
- core/modules/ system/ tests/ src/ Functional/ FileTransfer/ TestFileTransfer.php, line 11 
Namespace
Drupal\Tests\system\Functional\FileTransferView source
class TestFileTransfer extends FileTransfer {
  protected $host = NULL;
  protected $username = NULL;
  protected $password = NULL;
  protected $port = NULL;
  /**
   * This is for testing the CopyRecursive logic.
   *
   * @var bool
   */
  public $shouldIsDirectoryReturnTrue = FALSE;
  public function __construct($jail, $username, $password, $hostname = 'localhost', $port = 9999) {
    parent::__construct($jail, $username, $password, $hostname, $port);
  }
  public static function factory($jail, $settings) {
    return new TestFileTransfer($jail, $settings['username'], $settings['password'], $settings['hostname'], $settings['port']);
  }
  public function connect() {
    $this->connection = new MockTestConnection();
    $this->connection->connectionString = 'test://' . urlencode($this->username) . ':' . urlencode($this->password) . "@{$this->host}:{$this->port}/";
  }
  public function copyFileJailed($source, $destination) {
    $this->connection
      ->run("copyFile {$source} {$destination}");
  }
  protected function removeDirectoryJailed($directory) {
    $this->connection
      ->run("rmdir {$directory}");
  }
  public function createDirectoryJailed($directory) {
    $this->connection
      ->run("mkdir {$directory}");
  }
  public function removeFileJailed($destination) {
    if (!ftp_delete($this->connection, $item)) {
      throw new FileTransferException('Unable to remove the file @file.', NULL, [
        '@file' => $item,
      ]);
    }
  }
  public function isDirectory($path) {
    return $this->shouldIsDirectoryReturnTrue;
  }
  public function isFile($path) {
    return FALSE;
  }
  public function chmodJailed($path, $mode, $recursive) {
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| FileTransfer:: | protected | property | The hostname for this file transfer. | |
| FileTransfer:: | final protected | function | Checks that the path is inside the jail and throws an exception if not. | |
| FileTransfer:: | final public | function | Changes the permissions of the specified $path (file or directory). | |
| FileTransfer:: | final public | function | Copies a directory. | |
| FileTransfer:: | protected | function | Copies a directory. | 1 | 
| FileTransfer:: | final public | function | Copies a file. | |
| FileTransfer:: | final public | function | Creates a directory. | |
| FileTransfer:: | public | function | Returns the chroot property for this connection. | |
| FileTransfer:: | final protected | function | Returns a modified path suitable for passing to the server. | |
| FileTransfer:: | public | function | Returns a form to collect connection settings credentials. | 3 | 
| FileTransfer:: | final public | function | Removes a directory. | |
| FileTransfer:: | final public | function | Removes a file. | |
| FileTransfer:: | public | function | Changes backslashes to slashes, also removes a trailing slash. | |
| FileTransfer:: | public | function | Sets the chroot and changes the jail to match the correct path scheme. | |
| FileTransfer:: | public | function | Implements the magic __get() method. | |
| TestFileTransfer:: | protected | property | ||
| TestFileTransfer:: | protected | property | The password for this file transfer. Overrides FileTransfer:: | |
| TestFileTransfer:: | protected | property | The port for this file transfer. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | property | This is for testing the CopyRecursive logic. | |
| TestFileTransfer:: | protected | property | The username for this file transfer. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | function | ||
| TestFileTransfer:: | public | function | Connects to the server. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | function | Copies a file. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | function | Creates a directory. Overrides FileTransfer:: | |
| TestFileTransfer:: | public static | function | Defines a factory method for this class. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | function | Checks if a particular path is a directory. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | function | Checks if a particular path is a file (not a directory). Overrides FileTransfer:: | |
| TestFileTransfer:: | protected | function | Removes a directory. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | function | Removes a file. Overrides FileTransfer:: | |
| TestFileTransfer:: | public | function | Constructs a Drupal\Core\FileTransfer\FileTransfer object. Overrides FileTransfer:: | 
