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>
|
|
|
|
* @copyright MMXIII Marc Scholten
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2013-12-16 18:45:37 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class Net_SSH2Test extends PhpseclibTestCase
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2013-12-26 20:03:00 +00:00
|
|
|
public function generateIdentifierProvider()
|
2013-12-16 19:17:10 +00:00
|
|
|
{
|
2013-12-17 17:43:37 +00:00
|
|
|
return array(
|
|
|
|
array('SSH-2.0-phpseclib_0.3', array()),
|
|
|
|
array('SSH-2.0-phpseclib_0.3 (gmp)', array('gmp')),
|
|
|
|
array('SSH-2.0-phpseclib_0.3 (bcmath)', array('bcmath')),
|
|
|
|
array('SSH-2.0-phpseclib_0.3 (mcrypt)', array('mcrypt')),
|
|
|
|
array('SSH-2.0-phpseclib_0.3 (mcrypt, gmp)', array('mcrypt', 'gmp')),
|
|
|
|
array('SSH-2.0-phpseclib_0.3 (mcrypt, bcmath)', array('mcrypt', 'bcmath')),
|
|
|
|
);
|
2013-12-16 19:17:10 +00:00
|
|
|
}
|
|
|
|
|
2013-12-17 17:43:37 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider generateIdentifierProvider
|
|
|
|
*/
|
|
|
|
public function testGenerateIdentifier($expected, array $requiredExtensions)
|
2013-12-16 19:17:10 +00:00
|
|
|
{
|
2013-12-17 17:43:37 +00:00
|
|
|
$notAllowed = array('gmp', 'bcmath', 'mcrypt', 'gmp');
|
2014-02-15 18:57:49 +00:00
|
|
|
foreach ($notAllowed as $notAllowedExtension) {
|
|
|
|
if (in_array($notAllowedExtension, $requiredExtensions)) {
|
2013-12-17 17:43:37 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-02-15 18:57:49 +00:00
|
|
|
if (extension_loaded($notAllowedExtension)) {
|
2013-12-28 17:16:09 +00:00
|
|
|
$this->markTestSkipped('Extension ' . $notAllowedExtension . ' is not allowed for this data-set');
|
2013-12-17 17:43:37 +00:00
|
|
|
}
|
2013-12-16 19:17:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$ssh = $this->createSSHMock();
|
|
|
|
$identifier = $ssh->_generate_identifier();
|
|
|
|
|
2013-12-17 17:43:37 +00:00
|
|
|
$this->assertEquals($expected, $identifier);
|
2013-12-16 19:17:10 +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
|
|
|
}
|