mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-19 03:35:12 +00:00
Added Net_SSH1::_format_log test
Conflicts: tests/Net/SSH1Test.php
This commit is contained in:
parent
df8c3723aa
commit
c5f8bab065
41
tests/Net/SSH1Test.php
Normal file
41
tests/Net/SSH1Test.php
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @author Marc Scholten <marc@pedigital.de>
|
||||||
|
* @copyright MMXIII Marc Scholten
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||||
|
*/
|
||||||
|
|
||||||
|
class SSH1Test 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)
|
||||||
|
{
|
||||||
|
$ssh = $this->getMockBuilder('Net_SSH1')
|
||||||
|
->disableOriginalConstructor()
|
||||||
|
->setMethods(null)
|
||||||
|
->getMock();
|
||||||
|
|
||||||
|
$result = $ssh->_format_log($message_log, $message_number_log);
|
||||||
|
|
||||||
|
$this->assertEquals($expected, $result);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user