phpseclib/tests/Unit/Net/SSH2UnitTest.php

236 lines
6.6 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
*/
namespace phpseclib3\Tests\Unit\Net;
use phpseclib3\Exception\InsufficientSetupException;
2023-03-05 02:47:49 +00:00
use phpseclib3\Net\SSH2;
use phpseclib3\Tests\PhpseclibTestCase;
class SSH2UnitTest 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
2023-02-05 23:33:16 +00:00
* @requires PHPUnit < 10
2013-12-16 18:45:37 +00:00
*/
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
2023-02-05 23:33:16 +00:00
/**
* @requires PHPUnit < 10
*/
public function testGenerateIdentifier()
{
2017-01-08 01:51:56 +00:00
$identifier = self::callFunc($this->createSSHMock(), 'generate_identifier');
2020-03-08 03:19:00 +00:00
$this->assertStringStartsWith('SSH-2.0-phpseclib_3.0', $identifier);
2020-12-13 01:22:36 +00:00
if (function_exists('sodium_crypto_sign_keypair')) {
2020-12-13 02:13:42 +00:00
$this->assertStringContainsString('libsodium', $identifier);
}
if (extension_loaded('openssl')) {
$this->assertStringContainsString('openssl', $identifier);
$this->assertStringNotContainsString('mcrypt', $identifier);
2015-07-15 01:52:31 +00:00
} elseif (extension_loaded('mcrypt')) {
$this->assertStringNotContainsString('openssl', $identifier);
$this->assertStringContainsString('mcrypt', $identifier);
} else {
$this->assertStringNotContainsString('openssl', $identifier);
$this->assertStringNotContainsString('mcrypt', $identifier);
}
if (extension_loaded('gmp')) {
$this->assertStringContainsString('gmp', $identifier);
$this->assertStringNotContainsString('bcmath', $identifier);
2015-07-15 01:52:31 +00:00
} elseif (extension_loaded('bcmath')) {
$this->assertStringNotContainsString('gmp', $identifier);
$this->assertStringContainsString('bcmath', $identifier);
} else {
$this->assertStringNotContainsString('gmp', $identifier);
$this->assertStringNotContainsString('bcmath', $identifier);
}
}
2023-02-05 23:33:16 +00:00
/**
* @requires PHPUnit < 10
*/
public function testGetExitStatusIfNotConnected()
{
$ssh = $this->createSSHMock();
$this->assertFalse($ssh->getExitStatus());
}
2023-02-05 23:33:16 +00:00
/**
* @requires PHPUnit < 10
*/
public function testPTYIDefaultValue()
{
$ssh = $this->createSSHMock();
$this->assertFalse($ssh->isPTYEnabled());
}
2023-02-05 23:33:16 +00:00
/**
* @requires PHPUnit < 10
*/
public function testEnablePTY()
{
$ssh = $this->createSSHMock();
$ssh->enablePTY();
$this->assertTrue($ssh->isPTYEnabled());
$ssh->disablePTY();
$this->assertFalse($ssh->isPTYEnabled());
}
2023-02-05 23:33:16 +00:00
/**
* @requires PHPUnit < 10
*/
public function testQuietModeDefaultValue()
{
$ssh = $this->createSSHMock();
$this->assertFalse($ssh->isQuietModeEnabled());
}
2023-02-05 23:33:16 +00:00
/**
* @requires PHPUnit < 10
*/
public function testEnableQuietMode()
{
$ssh = $this->createSSHMock();
$ssh->enableQuietMode();
$this->assertTrue($ssh->isQuietModeEnabled());
$ssh->disableQuietMode();
$this->assertFalse($ssh->isQuietModeEnabled());
}
public function testGetConnectionByResourceId()
{
2023-03-05 02:47:49 +00:00
$ssh = new SSH2('localhost');
$this->assertSame($ssh, \phpseclib3\Net\SSH2::getConnectionByResourceId($ssh->getResourceId()));
}
public function testGetResourceId()
{
2023-03-05 02:47:49 +00:00
$ssh = new SSH2('localhost');
$this->assertSame('{' . spl_object_hash($ssh) . '}', $ssh->getResourceId());
}
/**
* @requires PHPUnit < 10
*/
public function testReadUnauthenticated()
{
$this->expectException(InsufficientSetupException::class);
$this->expectExceptionMessage('Operation disallowed prior to login()');
$ssh = $this->createSSHMock();
$ssh->read();
}
/**
* @requires PHPUnit < 10
*/
public function testWriteUnauthenticated()
{
$this->expectException(InsufficientSetupException::class);
$this->expectExceptionMessage('Operation disallowed prior to login()');
$ssh = $this->createSSHMock();
$ssh->write('');
}
/**
* @requires PHPUnit < 10
*/
public function testWriteOpensShell()
{
$ssh = $this->getMockBuilder(SSH2::class)
->disableOriginalConstructor()
->setMethods(['__destruct', 'isAuthenticated', 'openShell', 'send_channel_packet'])
->getMock();
$ssh->expects($this->once())
->method('isAuthenticated')
->willReturn(true);
$ssh->expects($this->once())
->method('openShell')
->willReturn(true);
$ssh->expects($this->once())
->method('send_channel_packet')
->with(SSH2::CHANNEL_SHELL, 'hello');
$ssh->write('hello');
}
/**
* @requires PHPUnit < 10
*/
public function testOpenShellWhenOpen()
{
$ssh = $this->getMockBuilder(SSH2::class)
->disableOriginalConstructor()
->setMethods(['__destruct', 'isShellOpen'])
->getMock();
$ssh->expects($this->once())
->method('isShellOpen')
->willReturn(true);
$this->assertFalse($ssh->openShell());
}
2023-03-05 02:47:49 +00:00
public function testGetTimeout()
{
$ssh = new SSH2('localhost');
$this->assertEquals(10, $ssh->getTimeout());
$ssh->setTimeout(0);
$this->assertEquals(0, $ssh->getTimeout());
$ssh->setTimeout(20);
$this->assertEquals(20, $ssh->getTimeout());
}
/**
* @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
}