* @copyright MMXIII Marc Scholten * @license http://www.opensource.org/licenses/mit-license.html MIT License */ class Unit_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) { $ssh = $this->createSSHMock(); $result = $ssh->_format_log($message_log, $message_number_log); $this->assertEquals($expected, $result); } public function testGenerateIdentifier() { $identifier = $this->createSSHMock()->_generate_identifier(); $this->assertStringStartsWith('SSH-2.0-phpseclib_0.3', $identifier); if (extension_loaded('mcrypt')) { $this->assertContains('mcrypt', $identifier); } else { $this->assertNotContains('mcrypt', $identifier); } if (extension_loaded('gmp')) { $this->assertContains('gmp', $identifier); $this->assertNotContains('bcmath', $identifier); } else if (extension_loaded('bcmath')) { $this->assertNotContains('gmp', $identifier); $this->assertContains('bcmath', $identifier); } else { $this->assertNotContains('gmp', $identifier); $this->assertNotContains('bcmath', $identifier); } } public function testGetExitStatusIfNotConnected() { $ssh = $this->createSSHMock(); $this->assertFalse($ssh->getExitStatus()); } public function testPTYIDefaultValue() { $ssh = $this->createSSHMock(); $this->assertFalse($ssh->isPTYEnabled()); } public function testEnablePTY() { $ssh = $this->createSSHMock(); $ssh->enablePTY(); $this->assertTrue($ssh->isPTYEnabled()); $ssh->disablePTY(); $this->assertFalse($ssh->isPTYEnabled()); } public function testQuietModeDefaultValue() { $ssh = $this->createSSHMock(); $this->assertFalse($ssh->isQuietModeEnabled()); } public function testEnableQuietMode() { $ssh = $this->createSSHMock(); $ssh->enableQuietMode(); $this->assertTrue($ssh->isQuietModeEnabled()); $ssh->disableQuietMode(); $this->assertFalse($ssh->isQuietModeEnabled()); } /** * @return Net_SSH2 */ protected function createSSHMock() { return $this->getMockBuilder('Net_SSH2') ->disableOriginalConstructor() ->setMethods(array('__destruct')) ->getMock(); } }