Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
f8899d2b
Commit
f8899d2b
authored
Sep 27, 2011
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added unittests for analysis response parsers
parent
762fd57c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
183 additions
and
2 deletions
+183
-2
library/Solarium/Client/ResponseParser/Analysis/Field.php
library/Solarium/Client/ResponseParser/Analysis/Field.php
+2
-2
tests/Solarium/Client/ResponseParser/Analysis/DocumentTest.php
.../Solarium/Client/ResponseParser/Analysis/DocumentTest.php
+65
-0
tests/Solarium/Client/ResponseParser/Analysis/FieldTest.php
tests/Solarium/Client/ResponseParser/Analysis/FieldTest.php
+116
-0
No files found.
library/Solarium/Client/ResponseParser/Analysis/Field.php
View file @
f8899d2b
...
@@ -48,13 +48,13 @@ class Solarium_Client_ResponseParser_Analysis_Field extends Solarium_Client_Resp
...
@@ -48,13 +48,13 @@ class Solarium_Client_ResponseParser_Analysis_Field extends Solarium_Client_Resp
/**
/**
* Parse response data
* Parse response data
*
*
* @param Solarium_Result
_Update
$result
* @param Solarium_Result $result
* @return array
* @return array
*/
*/
public
function
parse
(
$result
)
public
function
parse
(
$result
)
{
{
$data
=
$result
->
getData
();
$data
=
$result
->
getData
();
if
(
isset
(
$data
[
'analysis'
]))
{
if
(
isset
(
$data
[
'analysis'
]))
{
$items
=
$this
->
_parseAnalysis
(
$data
[
'analysis'
]);
$items
=
$this
->
_parseAnalysis
(
$data
[
'analysis'
]);
}
else
{
}
else
{
...
...
tests/Solarium/Client/ResponseParser/Analysis/DocumentTest.php
0 → 100644
View file @
f8899d2b
<?php
/**
* Copyright 2011 Bas de Nooijer. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this listof conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER 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 HOLDER 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.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*/
class
Solarium_Client_ResponseParser_Analysis_DocumentTest
extends
PHPUnit_Framework_TestCase
{
public
function
testParse
()
{
$data
=
array
(
'analysis'
=>
array
(
'key1'
=>
'data1'
,
'key2'
=>
'data2'
,
),
'responseHeader'
=>
array
(
'status'
=>
1
,
'QTime'
=>
5
)
);
$resultStub
=
$this
->
getMock
(
'Solarium_Result'
,
array
(),
array
(),
''
,
false
);
$resultStub
->
expects
(
$this
->
once
())
->
method
(
'getData'
)
->
will
(
$this
->
returnValue
(
$data
));
$parserStub
=
$this
->
getMock
(
'Solarium_Client_ResponseParser_Analysis_Document'
,
array
(
'_parseTypes'
));
$parserStub
->
expects
(
$this
->
exactly
(
2
))
->
method
(
'_parseTypes'
)
->
will
(
$this
->
returnValue
(
'dummy'
));
$result
=
$parserStub
->
parse
(
$resultStub
);
$this
->
assertEquals
(
count
(
$data
[
'analysis'
]),
count
(
$result
[
'items'
]));
$this
->
assertEquals
(
'key2'
,
$result
[
'items'
][
1
]
->
getName
());
}
}
tests/Solarium/Client/ResponseParser/Analysis/FieldTest.php
0 → 100644
View file @
f8899d2b
<?php
/**
* Copyright 2011 Bas de Nooijer. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this listof conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER 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 HOLDER 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.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*/
class
Solarium_Client_ResponseParser_Analysis_FieldTest
extends
PHPUnit_Framework_TestCase
{
public
function
testParse
()
{
$data
=
array
(
'analysis'
=>
array
(
'doc1'
=>
array
(
'field1'
=>
array
(
'type1'
=>
array
(
array
(
'analysisClass'
,
array
(
array
(
'text'
=>
'test'
,
'start'
=>
1
,
'end'
=>
23
,
'position'
=>
4
,
'positionHistory'
=>
'test'
,
'type'
=>
'test'
,
),
array
(
'text'
=>
'test2'
,
'start'
=>
1
,
'end'
=>
23
,
'position'
=>
4
,
'positionHistory'
=>
'test'
,
'type'
=>
'test'
,
)
)
)
)
)
)
),
'responseHeader'
=>
array
(
'status'
=>
1
,
'QTime'
=>
5
)
);
$resultStub
=
$this
->
getMock
(
'Solarium_Result'
,
array
(),
array
(),
''
,
false
);
$resultStub
->
expects
(
$this
->
once
())
->
method
(
'getData'
)
->
will
(
$this
->
returnValue
(
$data
));
$parser
=
new
Solarium_Client_ResponseParser_Analysis_Field
();
$result
=
$parser
->
parse
(
$resultStub
);
$docs
=
$result
[
'items'
][
0
]
->
getItems
();
$fields
=
$docs
[
0
]
->
getItems
();
$types
=
$fields
[
0
]
->
getItems
();
$classes
=
$types
[
0
]
->
getItems
();
$this
->
assertEquals
(
'test2'
,
$classes
[
1
]
->
getText
());
}
public
function
testParseNoData
()
{
$data
=
array
(
'responseHeader'
=>
array
(
'status'
=>
1
,
'QTime'
=>
5
)
);
$resultStub
=
$this
->
getMock
(
'Solarium_Result'
,
array
(),
array
(),
''
,
false
);
$resultStub
->
expects
(
$this
->
once
())
->
method
(
'getData'
)
->
will
(
$this
->
returnValue
(
$data
));
$parser
=
new
Solarium_Client_ResponseParser_Analysis_Field
();
$result
=
$parser
->
parse
(
$resultStub
);
$this
->
assertEquals
(
array
(
'status'
=>
1
,
'queryTime'
=>
5
,
'items'
=>
array
()
),
$result
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment