From 80f7dc77d430774192b929d780f96260066df2ee Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sun, 18 Oct 2015 09:31:31 +0200 Subject: Update to MediaWiki 1.25.3 --- .../test/lib/Elastica/Test/Query/CommonTest.php | 59 ---------------------- 1 file changed, 59 deletions(-) delete mode 100644 vendor/ruflin/elastica/test/lib/Elastica/Test/Query/CommonTest.php (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/Query/CommonTest.php') diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/CommonTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/CommonTest.php deleted file mode 100644 index a84d6397..00000000 --- a/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/CommonTest.php +++ /dev/null @@ -1,59 +0,0 @@ -setLowFrequencyOperator(Common::OPERATOR_AND); - - $expected = array( - 'common' => array( - 'body' => array( - 'query' => 'test query', - 'cutoff_frequency' => .001, - 'low_freq_operator' => 'and' - ) - ) - ); - - $this->assertEquals($expected, $query->toArray()); - } - - public function testQuery() - { - $index = $this->_createIndex('common_test'); - $type = $index->getType('test'); - - //add documents to create common terms - $docs = array(); - for ($i = 0; $i < 20; $i++) { - $docs[] = new \Elastica\Document($i, array('body' => 'foo bar')); - } - $type->addDocuments($docs); - - $type->addDocument(new \Elastica\Document(20, array('body' => 'foo baz'))); - $type->addDocument(new \Elastica\Document(21, array('body' => 'foo bar baz'))); - $type->addDocument(new \Elastica\Document(22, array('body' => 'foo bar baz bat'))); - $index->refresh(); - - $query = new Common('body', 'foo bar baz bat', .5); - $results = $type->search($query)->getResults(); - - //documents containing only common words should not be returned - $this->assertEquals(3, sizeof($results)); - - $query->setMinimumShouldMatch(2); - $results = $type->search($query); - - //only the document containing both low frequency terms should match - $this->assertEquals(1, $results->count()); - - $index->delete(); - } -} -- cgit v1.2.2