2014-12-09 23:27:53 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
|
|
* @copyright 2014 Andreas Fischer
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
2014-12-12 18:20:33 +00:00
|
|
|
use phpseclib\Net\SSH2;
|
2014-12-15 22:33:25 +00:00
|
|
|
use phpseclib\System\SSH\Agent;
|
2014-12-15 17:25:46 +00:00
|
|
|
|
2014-12-09 23:27:53 +00:00
|
|
|
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()
|
|
|
|
{
|
2014-12-12 18:20:33 +00:00
|
|
|
$ssh = new SSH2($this->getEnv('SSH_HOSTNAME'));
|
2014-12-15 22:33:25 +00:00
|
|
|
$agent = new Agent;
|
2014-12-09 23:27:53 +00:00
|
|
|
|
|
|
|
$this->assertTrue(
|
|
|
|
$ssh->login($this->getEnv('SSH_USERNAME'), $agent),
|
|
|
|
'SSH2 login using Agent failed.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|