* @copyright 2013 Marc Scholten * @license http://www.opensource.org/licenses/mit-license.html MIT License */ class Unit_Net_SSH2Test extends PhpseclibTestCase { public function formatLogDataProvider() { return [ [ ['hello world'], ['<--'], "<--\r\n00000000 68:65:6c:6c:6f:20:77:6f:72:6c:64 hello world\r\n\r\n" ], [ ['hello', 'world'], ['<--', '<--'], "<--\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 = self::callFunc($ssh, 'format_log', [$message_log, $message_number_log]); $this->assertEquals($expected, $result); } public function testGenerateIdentifier() { $identifier = self::callFunc($this->createSSHMock(), 'generate_identifier'); $this->assertStringStartsWith('SSH-2.0-phpseclib_2.0', $identifier); if (function_exists('\\Sodium\\library_version_major')) { $this->assertContains('libsodium', $identifier); } if (extension_loaded('openssl')) { $this->assertContains('openssl', $identifier); $this->assertNotContains('mcrypt', $identifier); } elseif (extension_loaded('mcrypt')) { $this->assertNotContains('openssl', $identifier); $this->assertContains('mcrypt', $identifier); } else { $this->assertNotContains('openssl', $identifier); $this->assertNotContains('mcrypt', $identifier); } if (extension_loaded('gmp')) { $this->assertContains('gmp', $identifier); $this->assertNotContains('bcmath', $identifier); } elseif (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()); } public function testGetConnectionByResourceId() { $ssh = new \phpseclib3\Net\SSH2('localhost'); $this->assertSame($ssh, \phpseclib3\Net\SSH2::getConnectionByResourceId($ssh->getResourceId())); } public function testGetResourceId() { $ssh = new \phpseclib3\Net\SSH2('localhost'); $this->assertSame('{' . spl_object_hash($ssh) . '}', $ssh->getResourceId()); } /** * @return \phpseclib3\Net\SSH2 */ protected function createSSHMock() { return $this->getMockBuilder('phpseclib3\Net\SSH2') ->disableOriginalConstructor() ->setMethods(['__destruct']) ->getMock(); } }