1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
--TEST--
Response - Response with child documents
--FILE--
<?php
require_once "bootstrap.inc";
$fixtureXml = file_get_contents(EXAMPLE_RESPONSE_XML_2);
$response = SolrUtils::digestXmlResponse($fixtureXml);
print_r($response);
?>
--EXPECT--
SolrObject Object
(
[response] => SolrObject Object
(
[numFound] => 3
[start] => 0
[docs] => Array
(
[0] => SolrObject Object
(
[id] => parent_1
[_childDocuments_] => Array
(
[0] => SolrObject Object
(
[id] => CHILD_1_1
)
)
)
[1] => SolrObject Object
(
[id] => parent_2
[_childDocuments_] => Array
(
[0] => SolrObject Object
(
[id] => CHILD_2_1
)
[1] => SolrObject Object
(
[id] => CHILD_2_2
)
)
)
[2] => SolrObject Object
(
[id] => not_a_parent_1
)
)
)
)
|