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
|
|
|
|
|
|
|
$result = $ssh->_format_log($message_log, $message_number_log);
|
|
|
|
$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
|
|
|
{
|
2014-06-01 19:49:40 +00:00
|
|
|
$identifier = $this->createSSHMock()->_generate_identifier();
|
2015-12-08 04:02:02 +00:00
|
|
|
$this->assertStringStartsWith('SSH-2.0-phpseclib_1.0', $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
|
|
|
|
2014-02-15 18:57:49 +00:00
|
|
|
/**
|
|
|
|
* @return Net_SSH2
|
|
|
|
*/
|
|
|
|
protected function createSSHMock()
|
|
|
|
{
|
|
|
|
return $this->getMockBuilder('Net_SSH2')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods(array('__destruct'))
|
|
|
|
->getMock();
|
|
|
|
}
|
2013-12-16 18:45:37 +00:00
|
|
|
}
|