mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
Merge pull request #393 from bantu/stream-registration
Add Net_SFTP_Stream::register() * bantu/stream-registration: Use get_called_class() if available. Add Net_SFTP_Stream::register() for easier autoloading. Add unit test for (to be added) Net_SFTP_Stream::register().
This commit is contained in:
commit
af8f350050
@ -126,6 +126,22 @@ class Net_SFTP_Stream
|
|||||||
*/
|
*/
|
||||||
var $notification;
|
var $notification;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers this class as a URL wrapper.
|
||||||
|
*
|
||||||
|
* @param optional String $protocol The wrapper name to be registered.
|
||||||
|
* @return Boolean True on success, false otherwise.
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
|
static function register($protocol = 'sftp')
|
||||||
|
{
|
||||||
|
if (in_array($protocol, stream_get_wrappers(), true)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$class = function_exists('get_called_class') ? get_called_class() : __CLASS__;
|
||||||
|
return stream_wrapper_register($protocol, $class);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Constructor
|
* The Constructor
|
||||||
*
|
*
|
||||||
@ -783,6 +799,4 @@ class Net_SFTP_Stream
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (function_exists('stream_wrapper_register')) {
|
Net_SFTP_Stream::register();
|
||||||
stream_wrapper_register('sftp', 'Net_SFTP_Stream');
|
|
||||||
}
|
|
||||||
|
33
tests/Unit/Net/SFTPStreamTest.php
Normal file
33
tests/Unit/Net/SFTPStreamTest.php
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @author Andreas Fischer <bantu@phpbb.com>
|
||||||
|
* @copyright MMXIV Andreas Fischer
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once 'Net/SFTP/Stream.php';
|
||||||
|
|
||||||
|
class Unit_Net_SFTPStreamTest extends PhpseclibTestCase
|
||||||
|
{
|
||||||
|
protected $protocol = 'sftptest';
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
if (in_array($this->protocol, stream_get_wrappers())) {
|
||||||
|
stream_wrapper_unregister($this->protocol);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testRegisterFromSideEffect()
|
||||||
|
{
|
||||||
|
// Including the file registers 'sftp' as a stream.
|
||||||
|
$this->assertContains('sftp', stream_get_wrappers());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testRegisterWithArgument()
|
||||||
|
{
|
||||||
|
Net_SFTP_Stream::register($this->protocol);
|
||||||
|
$this->assertContains($this->protocol, stream_get_wrappers());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user