phpseclib/tests/Unit/Net/SSH2Test.php

136 lines
4.0 KiB
PHP
Raw Normal View History

2013-12-16 18:45:37 +00:00
<?php
2013-12-16 18:45:37 +00:00
/**
* @author Marc Scholten <marc@pedigital.de>
* @copyright 2013 Marc Scholten
* @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()
{
2017-11-27 08:30:14 +00:00
return [
[
['hello world'],
['<--'],
2013-12-16 18:45:37 +00:00
"<--\r\n00000000 68:65:6c:6c:6f:20:77:6f:72:6c:64 hello world\r\n\r\n"
2017-11-27 08:30:14 +00:00
],
[
['hello', 'world'],
['<--', '<--'],
2013-12-16 18:45:37 +00:00
"<--\r\n00000000 68:65:6c:6c:6f hello\r\n\r\n" .
"<--\r\n00000000 77:6f:72:6c:64 world\r\n\r\n"
2017-11-27 08:30:14 +00:00
],
];
2013-12-16 18:45:37 +00:00
}
/**
* @dataProvider formatLogDataProvider
*/
public function testFormatLog(array $message_log, array $message_number_log, $expected)
{
$ssh = $this->createSSHMock();
2013-12-16 18:45:37 +00:00
2017-11-27 08:30:14 +00:00
$result = self::callFunc($ssh, 'format_log', [$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
public function testGenerateIdentifier()
{
2017-01-08 01:51:56 +00:00
$identifier = self::callFunc($this->createSSHMock(), 'generate_identifier');
$this->assertStringStartsWith('SSH-2.0-phpseclib_2.0', $identifier);
if (function_exists('\\Sodium\\library_version_major')) {
$this->assertContains('libsodium', $identifier);
}
if (extension_loaded('openssl')) {
$this->assertContains('openssl', $identifier);
$this->assertNotContains('mcrypt', $identifier);
2015-07-15 01:52:31 +00:00
} elseif (extension_loaded('mcrypt')) {
$this->assertNotContains('openssl', $identifier);
$this->assertContains('mcrypt', $identifier);
} else {
$this->assertNotContains('openssl', $identifier);
$this->assertNotContains('mcrypt', $identifier);
}
if (extension_loaded('gmp')) {
$this->assertContains('gmp', $identifier);
$this->assertNotContains('bcmath', $identifier);
2015-07-15 01:52:31 +00:00
} elseif (extension_loaded('bcmath')) {
$this->assertNotContains('gmp', $identifier);
$this->assertContains('bcmath', $identifier);
} else {
$this->assertNotContains('gmp', $identifier);
$this->assertNotContains('bcmath', $identifier);
}
}
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());
}
public function testGetConnectionByResourceId()
{
$ssh = new \phpseclib3\Net\SSH2('localhost');
$this->assertSame($ssh, \phpseclib3\Net\SSH2::getConnectionByResourceId($ssh->getResourceId()));
}
public function testGetResourceId()
{
$ssh = new \phpseclib3\Net\SSH2('localhost');
$this->assertSame('{' . spl_object_hash($ssh) . '}', $ssh->getResourceId());
}
/**
* @return \phpseclib3\Net\SSH2
*/
protected function createSSHMock()
{
return $this->getMockBuilder('phpseclib3\Net\SSH2')
->disableOriginalConstructor()
2017-11-27 08:30:14 +00:00
->setMethods(['__destruct'])
->getMock();
}
2013-12-16 18:45:37 +00:00
}