2013-12-16 18:45:37 +00:00
|
|
|
<?php
|
2013-12-17 17:43:37 +00:00
|
|
|
|
2013-12-16 18:45:37 +00:00
|
|
|
/**
|
2014-02-15 18:57:49 +00:00
|
|
|
* @author Marc Scholten <marc@pedigital.de>
|
2014-12-09 23:02:44 +00:00
|
|
|
* @copyright 2013 Marc Scholten
|
2014-02-15 18:57:49 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2013-12-16 18:45:37 +00:00
|
|
|
*/
|
|
|
|
|
2014-06-01 19:13:20 +00:00
|
|
|
class Unit_Net_SSH2Test extends PhpseclibTestCase
|
2013-12-16 18:45:37 +00:00
|
|
|
{
|
|
|
|
public function formatLogDataProvider()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
array('hello world'),
|
|
|
|
array('<--'),
|
|
|
|
"<--\r\n00000000 68:65:6c:6c:6f:20:77:6f:72:6c:64 hello world\r\n\r\n"
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
array('hello', 'world'),
|
|
|
|
array('<--', '<--'),
|
|
|
|
"<--\r\n00000000 68:65:6c:6c:6f hello\r\n\r\n" .
|
|
|
|
"<--\r\n00000000 77:6f:72:6c:64 world\r\n\r\n"
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider formatLogDataProvider
|
|
|
|
*/
|
|
|
|
public function testFormatLog(array $message_log, array $message_number_log, $expected)
|
|
|
|
{
|
2013-12-16 19:17:10 +00:00
|
|
|
$ssh = $this->createSSHMock();
|
2013-12-16 18:45:37 +00:00
|
|
|
|
2017-01-08 01:51:56 +00:00
|
|
|
$result = self::callFunc($ssh, 'format_log', array($message_log, $message_number_log));
|
2013-12-16 18:45:37 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
2014-01-18 17:29:25 +00:00
|
|
|
|
2014-06-01 19:49:40 +00:00
|
|
|
public function testGenerateIdentifier()
|
2013-12-16 19:17:10 +00:00
|
|
|
{
|
2017-01-08 01:51:56 +00:00
|
|
|
$identifier = self::callFunc($this->createSSHMock(), 'generate_identifier');
|
2015-07-23 01:02:28 +00:00
|
|
|
$this->assertStringStartsWith('SSH-2.0-phpseclib_2.0', $identifier);
|
|
|
|
|
|
|
|
if (extension_loaded('libsodium')) {
|
|
|
|
$this->assertContains('libsodium', $identifier);
|
|
|
|
}
|
2013-12-17 17:43:37 +00:00
|
|
|
|
2014-12-30 06:27:27 +00:00
|
|
|
if (extension_loaded('openssl')) {
|
|
|
|
$this->assertContains('openssl', $identifier);
|
|
|
|
$this->assertNotContains('mcrypt', $identifier);
|
2015-07-15 01:52:31 +00:00
|
|
|
} elseif (extension_loaded('mcrypt')) {
|
2014-12-30 06:27:27 +00:00
|
|
|
$this->assertNotContains('openssl', $identifier);
|
2014-06-01 19:49:40 +00:00
|
|
|
$this->assertContains('mcrypt', $identifier);
|
|
|
|
} else {
|
2014-12-30 06:27:27 +00:00
|
|
|
$this->assertNotContains('openssl', $identifier);
|
2014-06-01 19:49:40 +00:00
|
|
|
$this->assertNotContains('mcrypt', $identifier);
|
2013-12-16 19:17:10 +00:00
|
|
|
}
|
|
|
|
|
2014-06-01 19:49:40 +00:00
|
|
|
if (extension_loaded('gmp')) {
|
|
|
|
$this->assertContains('gmp', $identifier);
|
|
|
|
$this->assertNotContains('bcmath', $identifier);
|
2015-07-15 01:52:31 +00:00
|
|
|
} elseif (extension_loaded('bcmath')) {
|
2014-06-01 19:49:40 +00:00
|
|
|
$this->assertNotContains('gmp', $identifier);
|
|
|
|
$this->assertContains('bcmath', $identifier);
|
|
|
|
} else {
|
|
|
|
$this->assertNotContains('gmp', $identifier);
|
|
|
|
$this->assertNotContains('bcmath', $identifier);
|
|
|
|
}
|
2013-12-16 19:17:10 +00:00
|
|
|
}
|
|
|
|
|
2013-12-28 20:27:02 +00:00
|
|
|
public function testGetExitStatusIfNotConnected()
|
|
|
|
{
|
|
|
|
$ssh = $this->createSSHMock();
|
|
|
|
|
|
|
|
$this->assertFalse($ssh->getExitStatus());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPTYIDefaultValue()
|
|
|
|
{
|
|
|
|
$ssh = $this->createSSHMock();
|
|
|
|
$this->assertFalse($ssh->isPTYEnabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEnablePTY()
|
|
|
|
{
|
|
|
|
$ssh = $this->createSSHMock();
|
|
|
|
|
|
|
|
$ssh->enablePTY();
|
|
|
|
$this->assertTrue($ssh->isPTYEnabled());
|
|
|
|
|
|
|
|
$ssh->disablePTY();
|
|
|
|
$this->assertFalse($ssh->isPTYEnabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testQuietModeDefaultValue()
|
|
|
|
{
|
|
|
|
$ssh = $this->createSSHMock();
|
|
|
|
|
|
|
|
$this->assertFalse($ssh->isQuietModeEnabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEnableQuietMode()
|
|
|
|
{
|
|
|
|
$ssh = $this->createSSHMock();
|
|
|
|
|
|
|
|
$ssh->enableQuietMode();
|
|
|
|
$this->assertTrue($ssh->isQuietModeEnabled());
|
|
|
|
|
|
|
|
$ssh->disableQuietMode();
|
|
|
|
$this->assertFalse($ssh->isQuietModeEnabled());
|
|
|
|
}
|
2014-04-18 14:54:24 +00:00
|
|
|
|
2016-04-30 21:23:35 +00:00
|
|
|
public function testGetConnectionByResourceId()
|
|
|
|
{
|
|
|
|
$ssh = new \phpseclib\Net\SSH2('localhost');
|
|
|
|
$this->assertSame($ssh, \phpseclib\Net\SSH2::getConnectionByResourceId($ssh->getResourceId()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetResourceId()
|
|
|
|
{
|
|
|
|
$ssh = new \phpseclib\Net\SSH2('localhost');
|
|
|
|
$this->assertSame('{' . spl_object_hash($ssh) . '}', $ssh->getResourceId());
|
|
|
|
}
|
|
|
|
|
2014-02-15 18:57:49 +00:00
|
|
|
/**
|
2014-12-10 01:31:41 +00:00
|
|
|
* @return \phpseclib\Net\SSH2
|
2014-02-15 18:57:49 +00:00
|
|
|
*/
|
|
|
|
protected function createSSHMock()
|
|
|
|
{
|
2014-12-10 01:31:41 +00:00
|
|
|
return $this->getMockBuilder('phpseclib\Net\SSH2')
|
2014-02-15 18:57:49 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods(array('__destruct'))
|
|
|
|
->getMock();
|
|
|
|
}
|
2013-12-16 18:45:37 +00:00
|
|
|
}
|