SearchTestCase.php 5.75 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php
/*
 *  $Id$
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
19
 * <http://www.phpdoctrine.org>.
20 21 22 23 24 25 26 27 28
 */

/**
 * Doctrine_Search_TestCase
 *
 * @package     Doctrine
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @category    Object Relational Mapping
29
 * @link        www.phpdoctrine.org
30 31 32 33 34 35 36
 * @since       1.0
 * @version     $Revision$
 */
class Doctrine_Search_TestCase extends Doctrine_UnitTestCase 
{
    public function prepareTables()
    {
37
        $this->tables = array('SearchTest');
38 39 40 41 42
        
        parent::prepareTables();
    }
    public function prepareData()
    { }
43

44 45 46 47 48 49 50 51 52
    public function testBuildingOfSearchRecordDefinition()
    {
        $e = new SearchTest();
        
        $this->assertTrue($e->SearchTestIndex instanceof Doctrine_Collection);
        
        $rel = $e->getTable()->getRelation('SearchTestIndex');

        $this->assertIdentical($rel->getLocal(), 'id');
53
        $this->assertIdentical($rel->getForeign(), 'id');
54 55 56
    }
    public function testSavingEntriesUpdatesIndex()
    {
57
        $e = new SearchTest();
58 59 60 61 62 63

        $e->title = 'Once there was an ORM framework';
        $e->content = 'There are many ORM frameworks, but nevertheless we decided to create one.';

        $e->save();
    }
zYne's avatar
zYne committed
64

65 66 67
    public function testQuerying()
    {
        $q = new Doctrine_Query();
zYne's avatar
zYne committed
68

69 70 71 72 73
        $q->select('t.title')
          ->from('SearchTest t')
          ->innerJoin('t.SearchTestIndex i')
          ->where('i.keyword = ?');

74
        $array = $q->execute(array('orm'), Doctrine::HYDRATE_ARRAY);
zYne's avatar
zYne committed
75 76 77 78 79 80 81 82 83 84 85 86 87

        $this->assertEqual($array[0]['title'], 'Once there was an ORM framework');
    }
    
    public function testUsingWordRange()
    {
        $q = new Doctrine_Query();

        $q->select('t.title, i.*')
          ->from('SearchTest t')
          ->innerJoin('t.SearchTestIndex i')
          ->where('i.keyword = ? OR i.keyword = ?');

88
        $array = $q->execute(array('orm', 'framework'), Doctrine::HYDRATE_ARRAY);
zYne's avatar
zYne committed
89

90 91
        $this->assertEqual($array[0]['title'], 'Once there was an ORM framework');
    }
zYne's avatar
zYne committed
92

93 94 95
    public function testQueryingReturnsEmptyArrayForStopKeyword()
    {
        $q = new Doctrine_Query();
zYne's avatar
zYne committed
96

97 98 99 100 101
        $q->select('t.title')
          ->from('SearchTest t')
          ->innerJoin('t.SearchTestIndex i')
          ->where('i.keyword = ?');

102
        $array = $q->execute(array('was'), Doctrine::HYDRATE_ARRAY);
103 104 105

        $this->assertEqual(count($array), 0);
    }
zYne's avatar
zYne committed
106

107 108 109
    public function testQueryingReturnsEmptyArrayForUnknownKeyword()
    {
        $q = new Doctrine_Query();
zYne's avatar
zYne committed
110

111 112 113 114 115
        $q->select('t.title')
          ->from('SearchTest t')
          ->innerJoin('t.SearchTestIndex i')
          ->where('i.keyword = ?');

116
        $array = $q->execute(array('someunknownword'), Doctrine::HYDRATE_ARRAY);
117 118 119

        $this->assertEqual(count($array), 0);
    }
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147

    public function testUpdateIndexInsertsNullValuesForBatchUpdatedEntries()
    {
        $e = new SearchTest();
        $tpl = $e->getTable()->getTemplate('Doctrine_Template_Searchable');
        $tpl->getPlugin()->setOption('batchUpdates', true);

        $e->title = 'Some searchable title';
        $e->content = 'Some searchable content';

        $e->save();
        
        $coll = Doctrine_Query::create()
                ->from('SearchTestIndex s')
                ->orderby('s.id DESC')
                ->limit(1)
                ->setHydrationMode(Doctrine::HYDRATE_ARRAY)
                ->fetchOne();

        $this->assertEqual($coll['id'], 2);
        $this->assertEqual($coll['keyword'], null);
        $this->assertEqual($coll['field'], null);
        $this->assertEqual($coll['position'], null);
    }

    public function testBatchUpdatesUpdateAllPendingEntries()
    {
        $e = new SearchTest();
148
        $e->batchUpdateIndex();
149 150 151 152 153 154 155 156 157 158
        
        $coll = Doctrine_Query::create()
                ->from('SearchTestIndex s')
                ->setHydrationMode(Doctrine::HYDRATE_ARRAY)
                ->execute();

        $coll = $this->conn->fetchAll('SELECT * FROM search_test_index');
        

    }
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174

    public function testThrowExceptionIfInvalidTable()
    {
       try{
           $oQuery = new Doctrine_Search_Query(new Doctrine_Query());
           $this->fail("Should throw exception");
       }catch(Doctrine_Search_Exception $exception){
           $this->assertEqual($exception->getMessage(), "Invalid argument type. Expected instance of Doctrine_Table.");
       }
    }


    public function testGenerateSearchQueryForWeightedSearch()
    {
        $oQuery = new Doctrine_Search_Query("SearchTest");
        $oQuery->query("^test");
175
        $this->assertEqual($oQuery->getSql(), "SELECT SUM(sub_relevance) AS relevance, id FROM  WHERE keyword = ? GROUP BY id ORDER BY relevance DESC");
176
    }
177
}