Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Elasticsearch DSL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Public
Elasticsearch DSL
Commits
6751ce84
Commit
6751ce84
authored
9 years ago
by
Aivaras Gotovskis
Browse files
Options
Downloads
Patches
Plain Diff
Add FunctionScoreQuery::addFieldValueFactorFunction test.
parent
2b93ee9b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/Query/FunctionScoreQueryTest.php
+57
-0
57 additions, 0 deletions
tests/Query/FunctionScoreQueryTest.php
with
57 additions
and
0 deletions
tests/Query/FunctionScoreQueryTest.php
0 → 100644
+
57
−
0
View file @
6751ce84
<?php
/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <info@nfq.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace
ONGR\ElasticsearchDSL\Tests\Unit\DSL\Query
;
use
ONGR\ElasticsearchDSL\BuilderInterface
;
use
ONGR\ElasticsearchDSL\Query\FunctionScoreQuery
;
use
PHPUnit_Framework_MockObject_MockObject
as
MockObject
;
/**
* Tests for FunctionScoreQuery.
*/
class
FunctionScoreQueryTest
extends
\PHPUnit_Framework_TestCase
{
/**
* Tests default argument values.
*/
public
function
testAddFieldValueFactorFunction
()
{
/** @var BuilderInterface|MockObject $builderInterface */
$builderInterface
=
$this
->
getMockForAbstractClass
(
'ONGR\ElasticsearchDSL\BuilderInterface'
);
$functionScoreQuery
=
new
FunctionScoreQuery
(
$builderInterface
);
$functionScoreQuery
->
addFieldValueFactorFunction
(
'field1'
,
2
);
$functionScoreQuery
->
addFieldValueFactorFunction
(
'field2'
,
1.5
,
'ln'
);
$this
->
assertSame
(
[
'query'
=>
[
null
=>
null
],
'functions'
=>
[
[
'field_value_factor'
=>
[
'field'
=>
'field1'
,
'factor'
=>
2
,
'modifier'
=>
'none'
,
],
],
[
'field_value_factor'
=>
[
'field'
=>
'field2'
,
'factor'
=>
1.5
,
'modifier'
=>
'ln'
,
],
],
],
],
$functionScoreQuery
->
toArray
()
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment