SFTP: don't start in local file middle when uploading to middle of

the remote file
This commit is contained in:
terrafrost 2015-09-29 21:39:35 -05:00
parent 759e04f08e
commit 6688f650f1
2 changed files with 10 additions and 9 deletions

View File

@ -1918,11 +1918,6 @@ class Net_SFTP extends Net_SSH2
if ($local_start >= 0) {
fseek($fp, $local_start);
$size-= $local_start;
} elseif ($mode & NET_SFTP_RESUME_START) {
// do nothing
} else {
fseek($fp, $offset);
$size-= $offset;
}
} elseif ($dataCallback) {
$size = 0;

View File

@ -657,14 +657,20 @@ class Functional_Net_SFTPUserStoryTest extends PhpseclibFunctionalTestCase
* @depends testStatVsLstat
* @group github830
*/
public function testEndlessLoopOnUpload($sftp)
public function testUploadOffsets($sftp)
{
$sftp->put('endless.txt', 'res.txt', NET_SFTP_LOCAL_FILE, 0, 10);
$sftp->put('offset.txt', 'res.txt', NET_SFTP_LOCAL_FILE, 0, 10);
$this->assertSame(
substr(self::$exampleData, 10),
$sftp->get('endless.txt'),
$sftp->get('offset.txt'),
'Failed asserting that portions of a file could be uploaded.'
);
$sftp->put('offset.txt', 'res.txt', NET_SFTP_LOCAL_FILE, self::$exampleDataLength - 100);
$this->assertSame(
substr(self::$exampleData, 10, -90) . self::$exampleData,
$sftp->get('offset.txt'),
'Failed asserting that you could upload into the middle of a file.'
);
}
}