Commit f8899d2b authored by Bas de Nooijer's avatar Bas de Nooijer

Added unittests for analysis response parsers

parent 762fd57c
...@@ -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 {
......
<?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());
}
}
<?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
);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment