phpseclib/tests/Functional/Net/SCPSSH2UserStoryTest.php

101 lines
3.0 KiB
PHP
Raw Normal View History

2014-12-04 18:13:27 +00:00
<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2014 Andreas Fischer
2014-12-04 18:13:27 +00:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
2014-12-10 01:31:41 +00:00
use phpseclib\Net\SCP;
use phpseclib\Net\SSH2;
2014-12-04 18:13:27 +00:00
class Functional_Net_SCPSSH2UserStoryTest extends PhpseclibFunctionalTestCase
{
static protected $remoteFile;
static protected $exampleData;
static protected $exampleDataLength;
2015-07-15 01:52:31 +00:00
public static function setUpBeforeClass()
2014-12-04 18:13:27 +00:00
{
parent::setUpBeforeClass();
self::$remoteFile = uniqid('phpseclib-scp-ssh2-') . '.txt';
self::$exampleData = str_repeat('abscp12345', 1000);
self::$exampleDataLength = 10000;
}
public function testConstructSSH2()
{
2014-12-10 01:31:41 +00:00
$ssh = new SSH2($this->getEnv('SSH_HOSTNAME'));
2014-12-04 18:13:27 +00:00
$this->assertTrue(
$ssh->login(
$this->getEnv('SSH_USERNAME'),
$this->getEnv('SSH_PASSWORD')
)
);
return $ssh;
}
2014-12-10 01:31:41 +00:00
/**
* @depends testConstructSSH2
* @param \phpseclib\Net\SSH2 $ssh
*/
2014-12-04 18:13:27 +00:00
public function testConstructor($ssh)
{
2014-12-10 01:31:41 +00:00
$scp = new SCP($ssh);
2014-12-04 18:13:27 +00:00
$this->assertTrue(
is_object($scp),
2014-12-10 01:31:41 +00:00
'Could not construct \phpseclib\Net\SCP object.'
2014-12-04 18:13:27 +00:00
);
return $scp;
}
2014-12-10 01:31:41 +00:00
/**
* @depends testConstructor
* @param \phpseclib\Net\SCP $scp
*/
2014-12-04 18:13:27 +00:00
public function testPutGetString($scp)
{
$this->assertTrue(
$scp->put(self::$remoteFile, self::$exampleData),
'Failed asserting that data could successfully be put() into file.'
);
$content = $scp->get(self::$remoteFile);
// TODO: Address https://github.com/phpseclib/phpseclib/issues/146
$this->assertContains(
2014-12-04 18:13:27 +00:00
strlen($content),
array(self::$exampleDataLength, self::$exampleDataLength + 1),
2014-12-04 18:13:27 +00:00
'Failed asserting that string length matches expected length.'
);
$this->assertContains(
2014-12-04 18:13:27 +00:00
$content,
array(self::$exampleData, self::$exampleData . "\0"),
2014-12-04 18:13:27 +00:00
'Failed asserting that string content matches expected content.'
);
return $scp;
}
2014-12-10 01:31:41 +00:00
/**
* @depends testPutGetString
* @param \phpseclib\Net\SCP $scp
*/
2014-12-04 18:13:27 +00:00
public function testGetFile($scp)
{
$localFilename = $this->createTempFile();
$this->assertTrue(
$scp->get(self::$remoteFile, $localFilename),
'Failed asserting that get() into file was successful.'
);
// TODO: Address https://github.com/phpseclib/phpseclib/issues/146
$this->assertContains(
2014-12-04 18:13:27 +00:00
filesize($localFilename),
array(self::$exampleDataLength, self::$exampleDataLength + 1),
2014-12-04 18:13:27 +00:00
'Failed asserting that filesize matches expected data size.'
);
$this->assertContains(
2014-12-04 18:13:27 +00:00
file_get_contents($localFilename),
array(self::$exampleData, self::$exampleData . "\0"),
2014-12-04 18:13:27 +00:00
'Failed asserting that file content matches expected content.'
);
}
}