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
4d1feeb9
Commit
4d1feeb9
authored
9 years ago
by
Aivaras Gotovskis
Browse files
Options
Downloads
Patches
Plain Diff
Test usage of empty stdClass.
In method FunctionScoreQueryTest::addRandomFunction.
parent
6ad26ba6
No related branches found
Branches containing commit
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
+55
-0
55 additions, 0 deletions
tests/Query/FunctionScoreQueryTest.php
with
55 additions
and
0 deletions
tests/Query/FunctionScoreQueryTest.php
+
55
−
0
View file @
4d1feeb9
...
...
@@ -13,6 +13,7 @@ namespace ONGR\ElasticsearchDSL\Tests\Unit\DSL\Query;
use
ONGR\ElasticsearchDSL\BuilderInterface
;
use
ONGR\ElasticsearchDSL\Query\FunctionScoreQuery
;
use
ONGR\ElasticsearchDSL\Query\MatchAllQuery
;
use
PHPUnit_Framework_MockObject_MockObject
as
MockObject
;
/**
...
...
@@ -20,6 +21,60 @@ use PHPUnit_Framework_MockObject_MockObject as MockObject;
*/
class
FunctionScoreQueryTest
extends
\PHPUnit_Framework_TestCase
{
/**
* Data provider for testAddRandomFunction.
*
* @return array
*/
public
function
addRandomFunctionProvider
()
{
return
[
// Case #0. No seed.
[
'seed'
=>
null
,
'expectedArray'
=>
[
'query'
=>
[
null
=>
null
],
'functions'
=>
[
[
'random_score'
=>
new
\stdClass
(),
],
],
],
],
// Case #1. With seed.
[
'seed'
=>
'someSeed'
,
'expectedArray'
=>
[
'query'
=>
[
null
=>
null
],
'functions'
=>
[
[
'random_score'
=>
[
'seed'
=>
'someSeed'
],
],
],
],
],
];
}
/**
* Tests addRandomFunction method.
*
* @param mixed $seed
* @param array $expectedArray
*
* @dataProvider addRandomFunctionProvider
*/
public
function
testAddRandomFunction
(
$seed
,
$expectedArray
)
{
/** @var MatchAllQuery|MockObject $matchAllQuery */
$matchAllQuery
=
$this
->
getMock
(
'ONGR\ElasticsearchDSL\Query\MatchAllQuery'
);
$functionScoreQuery
=
new
FunctionScoreQuery
(
$matchAllQuery
);
$functionScoreQuery
->
addRandomFunction
(
$seed
);
$this
->
assertEquals
(
$expectedArray
,
$functionScoreQuery
->
toArray
());
}
/**
* Tests default argument values.
*/
...
...
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