mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-05 13:07:53 +00:00
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2014 Andreas Fischer
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
use phpseclib\Net\SSH2;
|
|
use phpseclib\System\SSH\Agent;
|
|
|
|
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 SSH2($this->getEnv('SSH_HOSTNAME'));
|
|
$agent = new Agent;
|
|
|
|
$this->assertTrue(
|
|
$ssh->login($this->getEnv('SSH_USERNAME'), $agent),
|
|
'SSH2 login using Agent failed.'
|
|
);
|
|
|
|
return ['ssh' => $ssh, 'ssh-agent' => $agent];
|
|
}
|
|
|
|
/**
|
|
* @depends testAgentLogin
|
|
*/
|
|
public function testAgentForward($args)
|
|
{
|
|
$ssh = $args['ssh'];
|
|
$agent = $args['ssh-agent'];
|
|
|
|
$hostname = $this->getEnv('SSH_HOSTNAME');
|
|
$username = $this->getEnv('SSH_USERNAME');
|
|
|
|
$this->assertEquals($username, trim($ssh->exec('whoami')));
|
|
|
|
$agent->startSSHForwarding($ssh);
|
|
$this->assertEquals($username, trim($ssh->exec("ssh " . $username . "@" . $hostname . ' \'whoami\'')));
|
|
|
|
return $args;
|
|
}
|
|
}
|