mirror of
https://github.com/danog/tgseclib.git
synced 2024-11-30 04:39:02 +01:00
Refactored Net_SSH2::$identifier and added unit tests
Added return tag
This commit is contained in:
parent
b793286561
commit
4817d28a54
@ -156,7 +156,7 @@ class Net_SSH2
|
||||
* @var String
|
||||
* @access private
|
||||
*/
|
||||
var $identifier = 'SSH-2.0-phpseclib_0.3';
|
||||
var $identifier;
|
||||
|
||||
/**
|
||||
* The Socket Object
|
||||
@ -919,19 +919,7 @@ class Net_SSH2
|
||||
return false;
|
||||
}
|
||||
|
||||
$ext = array();
|
||||
if (extension_loaded('mcrypt')) {
|
||||
$ext[] = 'mcrypt';
|
||||
}
|
||||
if (extension_loaded('gmp')) {
|
||||
$ext[] = 'gmp';
|
||||
} else if (extension_loaded('bcmath')) {
|
||||
$ext[] = 'bcmath';
|
||||
}
|
||||
|
||||
if (!empty($ext)) {
|
||||
$this->identifier.= ' (' . implode(', ', $ext) . ')';
|
||||
}
|
||||
$this->identifiert = $this->_generate_identifier();
|
||||
|
||||
if (defined('NET_SSH2_LOGGING')) {
|
||||
$this->_append_log('<-', $extra . $temp);
|
||||
@ -968,6 +956,38 @@ class Net_SSH2
|
||||
$this->bitmap = NET_SSH2_MASK_CONSTRUCTOR;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates the SSH identifier
|
||||
* You should overwrite this method in your own class if you want to use an other identifier
|
||||
*
|
||||
* @access protected
|
||||
* @return String
|
||||
*/
|
||||
function _generate_identifier()
|
||||
{
|
||||
$identifier = 'SSH-2.0-phpseclib_0.3';
|
||||
|
||||
$ext = array();
|
||||
if (extension_loaded('mcrypt')) {
|
||||
$ext[] = 'mcrypt';
|
||||
}
|
||||
|
||||
if (extension_loaded('gmp')) {
|
||||
$ext[] = 'gmp';
|
||||
} else {
|
||||
if (extension_loaded('bcmath')) {
|
||||
$ext[] = 'bcmath';
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($ext)) {
|
||||
$identifier .= ' (' . implode(', ', $ext) . ')';
|
||||
}
|
||||
|
||||
return $identifier;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Key Exchange
|
||||
*
|
||||
|
@ -7,6 +7,17 @@
|
||||
|
||||
class Net_SSH2Test extends PhpseclibTestCase
|
||||
{
|
||||
/**
|
||||
* @return Net_SSH2
|
||||
*/
|
||||
private function createSSHMock()
|
||||
{
|
||||
return $this->getMockBuilder('Net_SSH2')
|
||||
->disableOriginalConstructor()
|
||||
->setMethods(['__destruct'])
|
||||
->getMock();
|
||||
}
|
||||
|
||||
public function formatLogDataProvider()
|
||||
{
|
||||
return array(
|
||||
@ -29,13 +40,35 @@ class Net_SSH2Test extends PhpseclibTestCase
|
||||
*/
|
||||
public function testFormatLog(array $message_log, array $message_number_log, $expected)
|
||||
{
|
||||
$ssh = $this->getMockBuilder('Net_SSH2')
|
||||
->disableOriginalConstructor()
|
||||
->setMethods(array('__destruct'))
|
||||
->getMock();
|
||||
$ssh = $this->createSSHMock();
|
||||
|
||||
$result = $ssh->_format_log($message_log, $message_number_log);
|
||||
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
public function testGenerateIdentifierWithMcryptGmpAndBmath()
|
||||
{
|
||||
if(!extension_loaded('mcrypt') || !extension_loaded('gmp') || !extension_loaded('bcmath')) {
|
||||
$this->markTestSkipped('mcrypt, gmp and bcmath are required for this test');
|
||||
}
|
||||
|
||||
$ssh = $this->createSSHMock();
|
||||
$identifier = $ssh->_generate_identifier();
|
||||
|
||||
$this->assertEquals('SSH-2.0-phpseclib_0.3 (mcrypt, gmp, bcmath)', $identifier);
|
||||
}
|
||||
|
||||
public function testGenerateIdentifierWithMcryptAndBmath()
|
||||
{
|
||||
if(!extension_loaded('mcrypt') || !extension_loaded('bcmath')) {
|
||||
$this->markTestSkipped('mcrypt and bcmath are required for this test');
|
||||
}
|
||||
|
||||
$ssh = $this->createSSHMock();
|
||||
$identifier = $ssh->_generate_identifier();
|
||||
|
||||
$this->assertEquals('SSH-2.0-phpseclib_0.3 (mcrypt, bcmath)', $identifier);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user