2015-06-24 22:15:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
|
|
* @copyright 2015 Andreas Fischer
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2015-07-03 23:18:19 +00:00
|
|
|
use phpseclib\Net\SFTP\Stream;
|
2015-06-24 22:15:19 +00:00
|
|
|
|
|
|
|
class Functional_Net_SFTPStreamTest extends Functional_Net_SFTPTestCase
|
|
|
|
{
|
2015-07-17 11:36:18 +00:00
|
|
|
public static function setUpBeforeClass()
|
2015-07-03 23:18:19 +00:00
|
|
|
{
|
|
|
|
Stream::register();
|
|
|
|
parent::setUpBeforeClass();
|
|
|
|
}
|
|
|
|
|
2015-06-24 22:15:19 +00:00
|
|
|
public function testFopenFcloseCreatesFile()
|
|
|
|
{
|
2017-11-27 08:30:14 +00:00
|
|
|
$context = stream_context_create([
|
|
|
|
'sftp' => ['session' => $this->sftp],
|
|
|
|
]);
|
2015-06-24 22:15:19 +00:00
|
|
|
$fp = fopen($this->buildUrl('fooo.txt'), 'wb', false, $context);
|
2017-12-07 20:08:19 +00:00
|
|
|
$this->assertInternalType('resource', $fp);
|
2015-06-24 22:15:19 +00:00
|
|
|
fclose($fp);
|
|
|
|
$this->assertSame(0, $this->sftp->size('fooo.txt'));
|
|
|
|
}
|
|
|
|
|
2016-04-10 16:30:59 +00:00
|
|
|
/**
|
|
|
|
* @group github778
|
|
|
|
*/
|
|
|
|
public function testFilenameWithHash()
|
|
|
|
{
|
2017-11-27 08:30:14 +00:00
|
|
|
$context = stream_context_create([
|
|
|
|
'sftp' => ['session' => $this->sftp],
|
|
|
|
]);
|
2016-04-10 16:30:59 +00:00
|
|
|
$fp = fopen($this->buildUrl('te#st.txt'), 'wb', false, $context);
|
|
|
|
fputs($fp, 'zzzz');
|
|
|
|
fclose($fp);
|
|
|
|
|
2017-12-07 20:08:19 +00:00
|
|
|
$this->assertContains('te#st.txt', $this->sftp->nlist());
|
2016-04-10 16:30:59 +00:00
|
|
|
}
|
|
|
|
|
2016-04-30 21:23:35 +00:00
|
|
|
/**
|
|
|
|
* 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());
|
2017-11-27 08:30:14 +00:00
|
|
|
$this->assertEquals(['.', '..'], array_slice($dirs, 0, 2));
|
2016-04-30 21:23:35 +00:00
|
|
|
}
|
|
|
|
|
2015-06-24 22:15:19 +00:00
|
|
|
protected function buildUrl($suffix)
|
|
|
|
{
|
|
|
|
return sprintf(
|
|
|
|
'sftp://via-context/%s/%s',
|
|
|
|
$this->sftp->pwd(),
|
|
|
|
$suffix
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|