mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-11 16:15:52 +00:00
Tests: add test for connecting to non-existant host
This commit is contained in:
parent
b3a606b90c
commit
9b587a87c0
@ -23,6 +23,14 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
||||
self::$exampleDataLength = 10000;
|
||||
}
|
||||
|
||||
public function testBadHostname()
|
||||
{
|
||||
$this->setExpectedException('PHPUnit_Framework_Error_Notice');
|
||||
|
||||
$sftp = new Net_SFTP('bad host name');
|
||||
$sftp->login('username', 'password');
|
||||
}
|
||||
|
||||
public function testConstructor()
|
||||
{
|
||||
$sftp = new Net_SFTP($this->getEnv('SSH_HOSTNAME'));
|
||||
|
@ -145,4 +145,24 @@ abstract class PhpseclibTestCase extends PHPUnit\Framework\TestCase
|
||||
|
||||
parent::assertNotContains($needle, $haystack, $message);
|
||||
}
|
||||
|
||||
public function setExpectedException($name, $message = null, $code = null)
|
||||
{
|
||||
if (version_compare(PHP_VERSION, '7.0.0') < 0) {
|
||||
parent::setExpectedException($name, $message, $code);
|
||||
return;
|
||||
}
|
||||
switch ($name) {
|
||||
case 'PHPUnit_Framework_Error_Notice':
|
||||
case 'PHPUnit_Framework_Error_Warning':
|
||||
$name = str_replace('_', '\\', $name);
|
||||
}
|
||||
$this->expectException($name);
|
||||
if (!empty($message)) {
|
||||
$this->expectExceptionMessage($message);
|
||||
}
|
||||
if (!empty($code)) {
|
||||
$this->expectExceptionCode($code);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user