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 --- .../lib/Elastica/Test/Query/FunctionScoreTest.php | 210 --------------------- 1 file changed, 210 deletions(-) delete mode 100644 vendor/ruflin/elastica/test/lib/Elastica/Test/Query/FunctionScoreTest.php (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/Query/FunctionScoreTest.php') diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/FunctionScoreTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/FunctionScoreTest.php deleted file mode 100644 index 47d9dd2c..00000000 --- a/vendor/ruflin/elastica/test/lib/Elastica/Test/Query/FunctionScoreTest.php +++ /dev/null @@ -1,210 +0,0 @@ -index = $this->_createIndex('test_functionscore'); - $this->type = $this->index->getType('test'); - $this->type->setMapping(array( - 'name' => array('type' => 'string', 'index' => 'not_analyzed'), - 'location' => array('type' => 'geo_point'), - 'price' => array('type' => 'float') - )); - - $this->type->addDocument(new Document(1, array( - 'name' => "Mr. Frostie's", - 'location' => array('lat' => 32.799605, 'lon' => -117.243027), - 'price' => 4.5 - ))); - $this->type->addDocument(new Document(2, array( - 'name' => "Miller's Field", - 'location' => array('lat' => 32.795964, 'lon' => -117.255028), - 'price' => 9.5 - ))); - - $this->index->refresh(); - } - - protected function tearDown() - { - $this->index->delete(); - parent::tearDown(); - } - - public function testToArray() - { - $priceOrigin = 0; - $locationScale = '2mi'; - $priceScale = 9.25; - $query = new FunctionScore(); - $childQuery = new \Elastica\Query\MatchAll(); - $query->setQuery($childQuery); - $query->addDecayFunction(FunctionScore::DECAY_GAUSS, 'location', $this->locationOrigin, $locationScale); - $query->addDecayFunction(FunctionScore::DECAY_GAUSS, 'price', $priceOrigin, $priceScale); - $expected = array( - 'function_score' => array( - 'query' => $childQuery->toArray(), - 'functions' => array( - array( - 'gauss' => array( - 'location' => array( - 'origin' => $this->locationOrigin, - 'scale' => $locationScale - ) - ) - ), - array( - 'gauss' => array( - 'price' => array( - 'origin' => $priceOrigin, - 'scale' => $priceScale - ) - ) - ) - ) - ) - ); - $this->assertEquals($expected, $query->toArray()); - } - - public function testGauss() - { - $query = new FunctionScore(); - $query->addDecayFunction(FunctionScore::DECAY_GAUSS, 'location', $this->locationOrigin, "4mi"); - $query->addDecayFunction(FunctionScore::DECAY_GAUSS, 'price', 0, 10); - $response = $this->type->search($query); - $results = $response->getResults(); - - // the document with the closest location and lowest price should be scored highest - $result0 = $results[0]->getData(); - $this->assertEquals("Mr. Frostie's", $result0['name']); - } - - public function testBoostFactor() - { - $filter = new Term(array('price' => 4.5)); - $query = new FunctionScore(); - $query->addBoostFactorFunction(5.0, $filter); - $expected = array( - 'function_score' => array( - 'functions' => array( - array( - 'boost_factor' => 5.0, - 'filter' => array( - 'term' => array( - 'price' => 4.5 - ) - ) - ) - ) - ) - ); - - $this->assertEquals($expected, $query->toArray()); - - $response = $this->type->search($query); - $results = $response->getResults(); - - // the document with price = 4.5 should be scored highest - $result0 = $results[0]->getData(); - $this->assertEquals("Mr. Frostie's", $result0['name']); - } - - public function testRandomScore() - { - $filter = new Term(array('price' => 4.5)); - $query = new FunctionScore(); - $query->addRandomScoreFunction(2, $filter); - $expected = array( - 'function_score' => array( - 'functions' => array( - array( - 'random_score' => array( - 'seed' => 2 - ), - 'filter' => array( - 'term' => array( - 'price' => 4.5 - ) - ) - ) - ) - ) - ); - - $this->assertEquals($expected, $query->toArray()); - - $response = $this->type->search($query); - $results = $response->getResults(); - - // the document with the random score should have a score > 1, means it is the first result - $result0 = $results[1]->getData(); - - $this->assertEquals("Miller's Field", $result0['name']); - } - - public function testRandomScoreWithoutSeed() - { - $query = new FunctionScore(); - $query->setRandomScore(); - - $response = $this->type->search($query); - - $this->assertEquals(2, $response->count()); - } - - public function testScriptScore() - { - $scriptString = "_score * doc['price'].value"; - $script = new Script($scriptString); - $query = new FunctionScore(); - $query->addScriptScoreFunction($script); - $expected = array( - 'function_score' => array( - 'functions' => array( - array( - 'script_score' => array( - 'script' => $scriptString - ) - ) - ) - ) - ); - - $this->assertEquals($expected, $query->toArray()); - - $response = $this->type->search($query); - $results = $response->getResults(); - - // the document the highest price should be scored highest - $result0 = $results[0]->getData(); - $this->assertEquals("Miller's Field", $result0['name']); - } -} -- cgit v1.2.3-54-g00ecf