mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2015 Andreas Fischer
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
use phpseclib\Net\SFTP\Stream;
|
|
|
|
class Functional_Net_SFTPStreamTest extends Functional_Net_SFTPTestCase
|
|
{
|
|
public static function setUpBeforeClass()
|
|
{
|
|
Stream::register();
|
|
parent::setUpBeforeClass();
|
|
}
|
|
|
|
public function testFopenFcloseCreatesFile()
|
|
{
|
|
$context = stream_context_create(array(
|
|
'sftp' => array('session' => $this->sftp),
|
|
));
|
|
$fp = fopen($this->buildUrl('fooo.txt'), 'wb', false, $context);
|
|
$this->assertTrue(is_resource($fp));
|
|
fclose($fp);
|
|
$this->assertSame(0, $this->sftp->size('fooo.txt'));
|
|
}
|
|
|
|
/**
|
|
* Tests connection reuse functionality same as ssh2 extension:
|
|
* {@link http://php.net/manual/en/wrappers.ssh2.php#refsect1-wrappers.ssh2-examples}
|
|
*/
|
|
public function testConnectionReuse()
|
|
{
|
|
$originalConnectionsCount = count(\phpseclib\Net\SSH2::getConnections());
|
|
$session = $this->sftp;
|
|
$dirs = scandir("sftp://$session/");
|
|
$this->assertCount($originalConnectionsCount, \phpseclib\Net\SSH2::getConnections());
|
|
$this->assertEquals(array('.', '..'), array_slice($dirs, 0, 2));
|
|
}
|
|
|
|
protected function buildUrl($suffix)
|
|
{
|
|
return sprintf(
|
|
'sftp://via-context/%s/%s',
|
|
$this->sftp->pwd(),
|
|
$suffix
|
|
);
|
|
}
|
|
}
|