phpseclib/tests/Functional/Net/SFTPStreamTest.php

86 lines
2.3 KiB
PHP
Raw Normal View History

<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2015 Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
2022-06-04 15:31:21 +00:00
declare(strict_types=1);
namespace phpseclib3\Tests\Functional\Net;
use phpseclib3\Net\SFTP\Stream;
use phpseclib3\Net\SSH2;
class SFTPStreamTest extends SFTPTestCase
{
2022-06-04 15:31:21 +00:00
public static function setUpBeforeClass(): void
{
Stream::register();
parent::setUpBeforeClass();
}
2022-06-04 15:31:21 +00:00
public function testFopenFcloseCreatesFile(): void
{
2017-11-27 08:30:14 +00:00
$context = stream_context_create([
'sftp' => ['session' => $this->sftp],
]);
$fp = fopen($this->buildUrl('fooo.txt'), 'wb', false, $context);
2020-12-13 01:22:36 +00:00
$this->assertIsResource($fp);
fclose($fp);
$this->assertSame(0, $this->sftp->filesize('fooo.txt'));
}
/**
* @group github778
*/
2022-06-04 15:31:21 +00:00
public function testFilenameWithHash(): void
{
2017-11-27 08:30:14 +00:00
$context = stream_context_create([
'sftp' => ['session' => $this->sftp],
]);
$fp = fopen($this->buildUrl('te#st.txt'), 'wb', false, $context);
2022-08-11 13:12:15 +00:00
fwrite($fp, 'zzzz');
fclose($fp);
2017-12-07 20:08:19 +00:00
$this->assertContains('te#st.txt', $this->sftp->nlist());
}
/**
* Tests connection reuse functionality same as ssh2 extension:
* {@link http://php.net/manual/en/wrappers.ssh2.php#refsect1-wrappers.ssh2-examples}
*/
2022-06-04 15:31:21 +00:00
public function testConnectionReuse(): void
{
$originalConnectionsCount = count(SSH2::getConnections());
$session = $this->sftp;
$dirs = scandir("sftp://$session/");
$this->assertCount($originalConnectionsCount, SSH2::getConnections());
2017-11-27 08:30:14 +00:00
$this->assertEquals(['.', '..'], array_slice($dirs, 0, 2));
}
/**
* @group github1552
*/
2022-06-04 15:31:21 +00:00
public function testStreamSelect(): void
{
$context = stream_context_create([
'sftp' => ['session' => $this->sftp],
]);
$fp = fopen($this->buildUrl('fooo.txt'), 'wb', false, $context);
$read = [$fp];
$write = $except = null;
stream_select($read, $write, $except, 0);
}
2022-06-04 15:31:21 +00:00
protected function buildUrl($suffix): string
{
return sprintf(
'sftp://via-context/%s/%s',
$this->sftp->pwd(),
$suffix
);
}
}