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()
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
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();
|
|
|
|
|
|
|
|
$result = $ssh->_format_log($message_log, $message_number_log);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
}
|