82 lines
2.8 KiB
PHP
82 lines
2.8 KiB
PHP
|
<?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-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
* @version $Id: SegmentMergerTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Zend_Search_Lucene_Storage_Directory_Filesystem
|
||
|
*/
|
||
|
require_once 'Zend/Search/Lucene/Storage/Directory/Filesystem.php';
|
||
|
|
||
|
/**
|
||
|
* Zend_Search_Lucene_Index_SegmentInfo
|
||
|
*/
|
||
|
require_once 'Zend/Search/Lucene/Index/SegmentInfo.php';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Zend_Search_Lucene_Index_SegmentMerger
|
||
|
*/
|
||
|
require_once 'Zend/Search/Lucene/Index/SegmentMerger.php';
|
||
|
|
||
|
/**
|
||
|
* PHPUnit test case
|
||
|
*/
|
||
|
require_once 'PHPUnit/Framework/TestCase.php';
|
||
|
|
||
|
/**
|
||
|
* @category Zend
|
||
|
* @package Zend_Search_Lucene
|
||
|
* @subpackage UnitTests
|
||
|
* @copyright Copyright (c) 2005-2009 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_Index_SegmentMergerTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testMerge()
|
||
|
{
|
||
|
$segmentsDirectory = new Zend_Search_Lucene_Storage_Directory_Filesystem(dirname(__FILE__) . '/_source/_files');
|
||
|
$outputDirectory = new Zend_Search_Lucene_Storage_Directory_Filesystem(dirname(__FILE__) . '/_files');
|
||
|
$segmentsList = array('_0', '_1', '_2', '_3', '_4');
|
||
|
|
||
|
$segmentMerger = new Zend_Search_Lucene_Index_SegmentMerger($outputDirectory, 'mergedSegment');
|
||
|
|
||
|
foreach ($segmentsList as $segmentName) {
|
||
|
$segmentMerger->addSource(new Zend_Search_Lucene_Index_SegmentInfo($segmentsDirectory, $segmentName, 2));
|
||
|
}
|
||
|
|
||
|
$mergedSegment = $segmentMerger->merge();
|
||
|
$this->assertTrue($mergedSegment instanceof Zend_Search_Lucene_Index_SegmentInfo);
|
||
|
unset($mergedSegment);
|
||
|
|
||
|
$mergedFile = $outputDirectory->getFileObject('mergedSegment.cfs');
|
||
|
$mergedFileData = $mergedFile->readBytes($outputDirectory->fileLength('mergedSegment.cfs'));
|
||
|
|
||
|
$sampleFile = $outputDirectory->getFileObject('mergedSegment.cfs.sample');
|
||
|
$sampleFileData = $sampleFile->readBytes($outputDirectory->fileLength('mergedSegment.cfs.sample'));
|
||
|
|
||
|
$this->assertEquals($mergedFileData, $sampleFileData);
|
||
|
|
||
|
$outputDirectory->deleteFile('mergedSegment.cfs');
|
||
|
}
|
||
|
}
|
||
|
|