2019-09-17 13:09:51 +03:00
|
|
|
<?php
|
|
|
|
|
2022-02-22 20:48:51 -06:00
|
|
|
namespace phpseclib3\Tests\Functional\Net;
|
|
|
|
|
2019-11-06 23:41:40 -06:00
|
|
|
use phpseclib3\Exception\UnableToConnectException;
|
2022-01-30 09:34:42 -06:00
|
|
|
use phpseclib3\Net\SFTP;
|
2019-09-17 13:09:51 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class SFTPWrongServerTest extends TestCase
|
|
|
|
{
|
|
|
|
public function testLoginToInvalidServer()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
(new SFTP('dummy-server'))->login('username', 'password');
|
|
|
|
static::fail('The connection to the non-existent server must not succeed.');
|
|
|
|
} catch (UnableToConnectException $e) {
|
2020-07-28 09:49:37 +02:00
|
|
|
// getaddrinfo message seems not to return stable text
|
|
|
|
static::assertSame(
|
2022-02-16 20:25:59 -06:00
|
|
|
'Cannot connect to dummy-server:22. Error 0. php_network_getaddresses: getaddrinfo',
|
|
|
|
substr($e->getMessage(), 0, 81)
|
2020-07-28 09:49:37 +02:00
|
|
|
);
|
2019-09-17 13:09:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|