2012-04-18 01:10:14 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Test_CryptStream extends UnitTestCase {
|
|
|
|
private $tmpFiles=array();
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
function testStream() {
|
2012-11-04 14:10:46 +04:00
|
|
|
$stream=$this->getStream('test1', 'w', strlen('foobar'));
|
|
|
|
fwrite($stream, 'foobar');
|
2012-04-18 01:10:14 +04:00
|
|
|
fclose($stream);
|
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
$stream=$this->getStream('test1', 'r', strlen('foobar'));
|
2012-11-02 22:53:02 +04:00
|
|
|
$data=fread($stream, 6);
|
2012-04-18 01:10:14 +04:00
|
|
|
fclose($stream);
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual('foobar', $data);
|
2012-04-18 01:10:14 +04:00
|
|
|
|
|
|
|
$file=OC::$SERVERROOT.'/3rdparty/MDB2.php';
|
2012-11-04 14:10:46 +04:00
|
|
|
$source=fopen($file, 'r');
|
2012-11-02 22:53:02 +04:00
|
|
|
$target=$this->getStream('test2', 'w', 0);
|
|
|
|
OCP\Files::streamCopy($source, $target);
|
2012-04-18 01:10:14 +04:00
|
|
|
fclose($target);
|
|
|
|
fclose($source);
|
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
$stream=$this->getStream('test2', 'r', filesize($file));
|
2012-04-18 01:10:14 +04:00
|
|
|
$data=stream_get_contents($stream);
|
|
|
|
$original=file_get_contents($file);
|
2012-10-24 00:53:54 +04:00
|
|
|
$this->assertEqual(strlen($original), strlen($data));
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual($original, $data);
|
2012-04-18 01:10:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get a cryptstream to a temporary file
|
|
|
|
* @param string $id
|
|
|
|
* @param string $mode
|
2012-06-21 19:37:53 +04:00
|
|
|
* @param int size
|
2012-04-18 01:10:14 +04:00
|
|
|
* @return resource
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
function getStream($id, $mode, $size) {
|
2012-11-29 21:41:32 +04:00
|
|
|
if ($id==='') {
|
2012-04-18 01:10:14 +04:00
|
|
|
$id=uniqid();
|
|
|
|
}
|
2012-11-29 21:41:32 +04:00
|
|
|
if ( ! isset($this->tmpFiles[$id])) {
|
2012-05-02 14:54:31 +04:00
|
|
|
$file=OCP\Files::tmpFile();
|
2012-04-18 01:10:14 +04:00
|
|
|
$this->tmpFiles[$id]=$file;
|
2012-11-29 21:41:32 +04:00
|
|
|
} else {
|
2012-04-18 01:10:14 +04:00
|
|
|
$file=$this->tmpFiles[$id];
|
|
|
|
}
|
2012-11-02 22:53:02 +04:00
|
|
|
$stream=fopen($file, $mode);
|
2012-11-04 14:10:46 +04:00
|
|
|
OC_CryptStream::$sourceStreams[$id]=array('path'=>'dummy'.$id, 'stream'=>$stream, 'size'=>$size);
|
2012-11-02 22:53:02 +04:00
|
|
|
return fopen('crypt://streams/'.$id, $mode);
|
2012-04-18 01:10:14 +04:00
|
|
|
}
|
2012-06-16 01:48:39 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
function testBinary() {
|
2012-06-16 01:48:39 +04:00
|
|
|
$file=__DIR__.'/binary';
|
|
|
|
$source=file_get_contents($file);
|
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
$stream=$this->getStream('test', 'w', strlen($source));
|
2012-11-02 22:53:02 +04:00
|
|
|
fwrite($stream, $source);
|
2012-06-16 01:48:39 +04:00
|
|
|
fclose($stream);
|
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
$stream=$this->getStream('test', 'r', strlen($source));
|
2012-06-21 19:37:53 +04:00
|
|
|
$data=stream_get_contents($stream);
|
|
|
|
fclose($stream);
|
2012-10-24 00:53:54 +04:00
|
|
|
$this->assertEqual(strlen($data), strlen($source));
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual($source, $data);
|
2012-06-21 19:37:53 +04:00
|
|
|
|
|
|
|
$file=__DIR__.'/zeros';
|
|
|
|
$source=file_get_contents($file);
|
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
$stream=$this->getStream('test2', 'w', strlen($source));
|
2012-11-02 22:53:02 +04:00
|
|
|
fwrite($stream, $source);
|
2012-06-21 19:37:53 +04:00
|
|
|
fclose($stream);
|
|
|
|
|
2012-11-04 14:10:46 +04:00
|
|
|
$stream=$this->getStream('test2', 'r', strlen($source));
|
2012-06-16 01:48:39 +04:00
|
|
|
$data=stream_get_contents($stream);
|
|
|
|
fclose($stream);
|
2012-10-24 00:53:54 +04:00
|
|
|
$this->assertEqual(strlen($data), strlen($source));
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->assertEqual($source, $data);
|
2012-06-16 01:48:39 +04:00
|
|
|
}
|
2012-04-18 01:10:14 +04:00
|
|
|
}
|