| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Search_Lucene
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * Zend_Search_Lucene_Storage_File_Filesystem
- */
- require_once 'Zend/Search/Lucene/Storage/File/Filesystem.php';
- /**
- * Zend_Search_Lucene_Storage_File_Memory
- */
- require_once 'Zend/Search/Lucene/Storage/File/Memory.php';
- /**
- * @category Zend
- * @package Zend_Search_Lucene
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Search_Lucene
- */
- class Zend_Search_Lucene_Storage_FileTest extends PHPUnit_Framework_TestCase
- {
- public function testFilesystem()
- {
- $file = new Zend_Search_Lucene_Storage_File_Filesystem(dirname(__FILE__) . '/_files/sample_data'); // open file object for reading
- $this->assertTrue($file instanceof Zend_Search_Lucene_Storage_File);
- $fileSize = filesize(dirname(__FILE__) . '/_files/sample_data');
- $this->assertEquals($file->size(), $fileSize);
- $file->seek(0, SEEK_END);
- $this->assertEquals($file->tell(), $fileSize);
- $file->seek(2, SEEK_SET);
- $this->assertEquals($file->tell(), 2);
- $file->seek(3, SEEK_CUR);
- $this->assertEquals($file->tell(), 5);
- $file->seek(0, SEEK_SET);
- $this->assertEquals($file->tell(), 0);
- $this->assertEquals($file->readByte(), 10);
- $this->assertEquals($file->readBytes(8), "\xFF\x00\xAA\x11\xBB\x44\x66\x99");
- $this->assertEquals($file->readInt(), 49057123);
- $this->assertEquals($file->readLong(), 753823522);
- $this->assertEquals($file->readVInt(), 234586758);
- $this->assertEquals($file->readString(), "UTF-8 string with non-ascii (Cyrillic) symbols\nUTF-8 строка с не-ASCII (кириллическими) символами");
- $this->assertEquals($file->readBinary(), "\xFF\x00\xAA\x11\xBB\x44\x66\x99");
- $file->seek(0);
- $fileData = $file->readBytes($file->size());
- $file->close();
- unset($file);
- $testFName = dirname(__FILE__) . '/_files/sample_data_1';
- $file = new Zend_Search_Lucene_Storage_File_Filesystem($testFName, 'wb');
- $file->lock(LOCK_EX);
- $file->writeByte(10);
- $file->writeBytes("\xFF\x00\xAA\x11\xBB\x44\x66\x99");
- $file->writeInt(49057123);
- $file->writeLong(753823522);
- $file->writeVInt(234586758);
- $file->writeString("UTF-8 string with non-ascii (Cyrillic) symbols\nUTF-8 строка с не-ASCII (кириллическими) символами");
- $file->writeVInt(8); $file->writeBytes("\xFF\x00\xAA\x11\xBB\x44\x66\x99");
- $file->flush();
- $file->unlock();
- $file->close();
- $fh = fopen($testFName, 'rb');
- $this->assertEquals($fileData, fread($fh, filesize($testFName)));
- fclose($fh);
- unlink($testFName);
- }
- public function testMemory()
- {
- $file = new Zend_Search_Lucene_Storage_File_Filesystem(dirname(__FILE__) . '/_files/sample_data');
- $fileData = $file->readBytes($file->size());
- $file->close();
- unset($file);
- $file = new Zend_Search_Lucene_Storage_File_Memory($fileData);
- $this->assertTrue($file instanceof Zend_Search_Lucene_Storage_File);
- $fileSize = strlen($fileData);
- $file->seek(0, SEEK_END);
- $this->assertEquals($file->tell(), $fileSize);
- $file->seek(2, SEEK_SET);
- $this->assertEquals($file->tell(), 2);
- $file->seek(3, SEEK_CUR);
- $this->assertEquals($file->tell(), 5);
- $file->seek(0, SEEK_SET);
- $this->assertEquals($file->tell(), 0);
- $this->assertEquals($file->readByte(), 10);
- $this->assertEquals($file->readBytes(8), "\xFF\x00\xAA\x11\xBB\x44\x66\x99");
- $this->assertEquals($file->readInt(), 49057123);
- $this->assertEquals($file->readLong(), 753823522);
- $this->assertEquals($file->readVInt(), 234586758);
- $this->assertEquals($file->readString(), "UTF-8 string with non-ascii (Cyrillic) symbols\nUTF-8 строка с не-ASCII (кириллическими) символами");
- $this->assertEquals($file->readBinary(), "\xFF\x00\xAA\x11\xBB\x44\x66\x99");
- // these methods do nothing, but should be provided by object
- $file->lock(LOCK_EX);
- $file->unlock();
- }
- }
|