Files
archived-pecl-search-engine…/tests/050.solrinputdocument_addchilddocument_02_error.phpt
2015-12-02 10:03:40 +01:00

32 lines
809 B
PHP

--TEST--
SolrInputDocument::addChildDocument()/SolrInputDocument::addChildDocuments() - Expected SolrIllegalArgumentException
--FILE--
<?php
require_once "bootstrap.inc";
$doc = new SolrInputDocument();
$child1 = new SolrInputDocument();
$child2 = new SolrInputDocument();
$doc->addField('id', 1123);
$doc->addField('features', "PHP Client Side");
$doc->addField('features', "Fast development cycles");
$doc->cat = 'Information Technology';
try {
$doc->addChildDocument($child1);
} catch (SolrIllegalArgumentException $e) {
echo $e->getMessage(). PHP_EOL;
}
$children = array($child1, $child2);
try {
$doc->addChildDocuments($children);
} catch (SolrIllegalArgumentException $e) {
echo $e->getMessage(). PHP_EOL;
}
?>
--EXPECT--
Child document has no fields
SolrInputDocument number 1 has no fields