mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-02 17:48:00 +01:00
4817d28a54
Added return tag
75 lines
2.2 KiB
PHP
75 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* @author Marc Scholten <marc@pedigital.de>
|
|
* @copyright MMXIII Marc Scholten
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
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(
|
|
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)
|
|
{
|
|
$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);
|
|
}
|
|
|
|
|
|
}
|