mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-17 18:55:13 +00:00
32 lines
833 B
PHP
32 lines
833 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @author Andreas Fischer <bantu@phpbb.com>
|
||
|
* @copyright 2014 Andreas Fischer
|
||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||
|
*/
|
||
|
|
||
|
class Functional_Net_SSH2AgentTest extends PhpseclibFunctionalTestCase
|
||
|
{
|
||
|
public static function setUpBeforeClass()
|
||
|
{
|
||
|
if (!isset($_SERVER['SSH_AUTH_SOCK'])) {
|
||
|
self::markTestSkipped(
|
||
|
'This test requires an SSH Agent (SSH_AUTH_SOCK env variable).'
|
||
|
);
|
||
|
}
|
||
|
parent::setUpBeforeClass();
|
||
|
}
|
||
|
|
||
|
public function testAgentLogin()
|
||
|
{
|
||
|
$ssh = new Net_SSH2($this->getEnv('SSH_HOSTNAME'));
|
||
|
$agent = new System_SSH_Agent;
|
||
|
|
||
|
$this->assertTrue(
|
||
|
$ssh->login($this->getEnv('SSH_USERNAME'), $agent),
|
||
|
'SSH2 login using Agent failed.'
|
||
|
);
|
||
|
}
|
||
|
}
|