| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?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_Index_Term
- */
- require_once 'Zend/Search/Lucene/Index/Term.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_Index_TermTest extends PHPUnit_Framework_TestCase
- {
- public function testCreate()
- {
- $term = new Zend_Search_Lucene_Index_Term('term_text');
- $this->assertTrue($term instanceof Zend_Search_Lucene_Index_Term);
- $this->assertEquals($term->text, 'term_text');
- $this->assertEquals($term->field, null);
- $term = new Zend_Search_Lucene_Index_Term('term_text', 'field_name');
- $this->assertEquals($term->text, 'term_text');
- $this->assertEquals($term->field, 'field_name');
- }
- public function testKey()
- {
- $term1_1 = new Zend_Search_Lucene_Index_Term('term_text1', 'field_name1');
- $term2_1 = new Zend_Search_Lucene_Index_Term('term_text2', 'field_name1');
- $term2_2 = new Zend_Search_Lucene_Index_Term('term_text2', 'field_name2');
- $term2_1Dup = new Zend_Search_Lucene_Index_Term('term_text2', 'field_name1');
- $this->assertEquals($term1_1->text > $term2_1->text, $term1_1->key() > $term2_1->key());
- $this->assertEquals($term1_1->text >= $term2_1->text, $term1_1->key() >= $term2_1->key());
- $this->assertEquals($term1_1->field > $term2_2->field, $term1_1->key() > $term2_2->key());
- $this->assertEquals($term1_1->field >= $term2_2->field, $term1_1->key() >= $term2_2->key());
- $this->assertEquals($term2_1->key(), $term2_1Dup->key());
- }
- public function testGetPrefix()
- {
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('term_text', 10), 'term_text');
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('term_text', 9), 'term_text');
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('term_text', 4), 'term');
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('term_text', 0), '');
- }
- public function testGetPrefixUtf8()
- {
- // UTF-8 string with non-ascii symbols (Russian alphabet)
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('абвгдеёжзийклмнопрстуфхцчшщьыъэюя', 64), 'абвгдеёжзийклмнопрстуфхцчшщьыъэюя');
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('абвгдеёжзийклмнопрстуфхцчшщьыъэюя', 33), 'абвгдеёжзийклмнопрстуфхцчшщьыъэюя');
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('абвгдеёжзийклмнопрстуфхцчшщьыъэюя', 4), 'абвг');
- $this->assertEquals(Zend_Search_Lucene_Index_Term::getPrefix('абвгдеёжзийклмнопрстуфхцчшщьыъэюя', 0), '');
- }
- }
|