mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-15 17:57:12 +00:00
Merge branch '1.0' into 2.0
This commit is contained in:
commit
d2994dafe1
@ -25,6 +25,14 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
|
|||||||
self::$exampleDataLength = 10000;
|
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()
|
public function testConstructor()
|
||||||
{
|
{
|
||||||
$sftp = new SFTP($this->getEnv('SSH_HOSTNAME'));
|
$sftp = new SFTP($this->getEnv('SSH_HOSTNAME'));
|
||||||
|
@ -145,4 +145,24 @@ abstract class PhpseclibTestCase extends PHPUnit\Framework\TestCase
|
|||||||
|
|
||||||
parent::assertNotContains($needle, $haystack, $message);
|
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