2013-12-15 20:05:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
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-15 20:05:31 +00:00
|
|
|
*/
|
|
|
|
|
2014-06-01 19:13:20 +00:00
|
|
|
class Unit_Net_SSH1Test extends PhpseclibTestCase
|
2013-12-15 20:05:31 +00:00
|
|
|
{
|
|
|
|
public function formatLogDataProvider()
|
|
|
|
{
|
2017-11-27 08:30:14 +00:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
['hello world'],
|
|
|
|
['<--'],
|
2013-12-15 20:05:31 +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-15 20:05:31 +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-15 20:05:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider formatLogDataProvider
|
|
|
|
*/
|
|
|
|
public function testFormatLog(array $message_log, array $message_number_log, $expected)
|
|
|
|
{
|
2014-12-10 01:31:41 +00:00
|
|
|
$ssh = $this->getMockBuilder('phpseclib\Net\SSH1')
|
2013-12-15 20:05:31 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods(null)
|
|
|
|
->getMock();
|
|
|
|
|
2017-11-27 08:30:14 +00:00
|
|
|
$result = self::callFunc($ssh, 'format_log', [$message_log, $message_number_log]);
|
2013-12-15 20:05:31 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
}
|